]> git.proxmox.com Git - mirror_spl.git/blame - autoconf/spl-build.m4
Resolve incomplete type when building against 2.6.26
[mirror_spl.git] / autoconf / spl-build.m4
CommitLineData
57d86234 1AC_DEFUN([SPL_AC_KERNEL], [
2 ver=`uname -r`
3
4 AC_ARG_WITH([linux],
5 AS_HELP_STRING([--with-linux=PATH],
6 [Path to kernel source]),
7 [kernelsrc="$withval"; kernelbuild="$withval"])
8
9 AC_ARG_WITH([linux-obj],
10 AS_HELP_STRING([--with-linux-obj=PATH],
11 [Path to kernel build objects]),
12 [kernelbuild="$withval"])
13
14 AC_MSG_CHECKING([kernel source directory])
15 if test -z "$kernelsrc"; then
16 kernelbuild=
17 sourcelink=/lib/modules/${ver}/source
18 buildlink=/lib/modules/${ver}/build
19
20 if test -e $sourcelink; then
21 kernelsrc=`(cd $sourcelink; /bin/pwd)`
22 fi
23 if test -e $buildlink; then
24 kernelbuild=`(cd $buildlink; /bin/pwd)`
25 fi
26 if test -z "$kernelsrc"; then
27 kernelsrc=$kernelbuild
28 fi
29 if test -z "$kernelsrc" -o -z "$kernelbuild"; then
30 AC_MSG_RESULT([Not found])
31 AC_MSG_ERROR([
32 *** Please specify the location of the kernel source
33 *** with the '--with-kernel=PATH' option])
34 fi
35 fi
36
37 AC_MSG_RESULT([$kernelsrc])
38 AC_MSG_CHECKING([kernel build directory])
39 AC_MSG_RESULT([$kernelbuild])
40
41 AC_MSG_CHECKING([kernel source version])
42 if test -r $kernelbuild/include/linux/version.h &&
43 fgrep -q UTS_RELEASE $kernelbuild/include/linux/version.h; then
44
45 kernsrcver=`(echo "#include <linux/version.h>";
46 echo "kernsrcver=UTS_RELEASE") |
47 cpp -I $kernelbuild/include |
48 grep "^kernsrcver=" | cut -d \" -f 2`
49
50 elif test -r $kernelbuild/include/linux/utsrelease.h &&
51 fgrep -q UTS_RELEASE $kernelbuild/include/linux/utsrelease.h; then
52
53 kernsrcver=`(echo "#include <linux/utsrelease.h>";
54 echo "kernsrcver=UTS_RELEASE") |
55 cpp -I $kernelbuild/include |
56 grep "^kernsrcver=" | cut -d \" -f 2`
57 fi
58
59 if test -z "$kernsrcver"; then
60 AC_MSG_RESULT([Not found])
61 AC_MSG_ERROR([
62 *** Cannot determine the version of the linux kernel source.
63 *** Please prepare the kernel before running this script])
64 fi
65
66 AC_MSG_RESULT([$kernsrcver])
67
68 kmoduledir=${INSTALL_MOD_PATH}/lib/modules/$kernsrcver
69 LINUX=${kernelsrc}
70 LINUX_OBJ=${kernelbuild}
71
72 AC_SUBST(LINUX)
73 AC_SUBST(LINUX_OBJ)
74 AC_SUBST(kmoduledir)
75])
76
77AC_DEFUN([SPL_AC_DEBUG], [
78 AC_MSG_CHECKING([whether debugging is enabled])
79 AC_ARG_ENABLE( [debug],
80 AS_HELP_STRING([--enable-debug],
81 [Enable generic debug support (default off)]),
82 [ case "$enableval" in
83 yes) spl_ac_debug=yes ;;
475cdc78 84 no) spl_ac_debug=no ;;
57d86234 85 *) AC_MSG_RESULT([Error!])
86 AC_MSG_ERROR([Bad value "$enableval" for --enable-debug]) ;;
87 esac ]
88 )
89 if test "$spl_ac_debug" = yes; then
475cdc78 90 AC_MSG_RESULT([yes])
57d86234 91 KERNELCPPFLAGS="${KERNELCPPFLAGS} -DDEBUG"
92 else
475cdc78 93 AC_MSG_RESULT([no])
57d86234 94 AC_DEFINE([NDEBUG], [1],
95 [Define to 1 to disable debug tracing])
475cdc78 96 KERNELCPPFLAGS="${KERNELCPPFLAGS} -DNDEBUG"
57d86234 97 fi
57d86234 98])
99
100AC_DEFUN([SPL_AC_DEBUG_KMEM], [
101 AC_MSG_CHECKING([whether kmem debugging is enabled])
102 AC_ARG_ENABLE( [debug-kmem],
103 AS_HELP_STRING([--enable-debug-kmem],
104 [Enable kmem debug support (default off)]),
105 [ case "$enableval" in
475cdc78 106 yes) spl_ac_debug_kmem=yes ;;
107 no) spl_ac_debug_kmem=no ;;
57d86234 108 *) AC_MSG_RESULT([Error!])
109 AC_MSG_ERROR([Bad value "$enableval" for --enable-debug-kmem]) ;;
110 esac ]
111 )
475cdc78 112 if test "$spl_ac_debug_kmem" = yes; then
113 AC_MSG_RESULT([yes])
57d86234 114 AC_DEFINE([DEBUG_KMEM], [1],
115 [Define to 1 to enable kmem debugging])
475cdc78 116 KERNELCPPFLAGS="${KERNELCPPFLAGS} -DDEBUG_KMEM"
117 else
118 AC_MSG_RESULT([no])
57d86234 119 fi
57d86234 120])
121
122AC_DEFUN([SPL_AC_DEBUG_MUTEX], [
123 AC_MSG_CHECKING([whether mutex debugging is enabled])
124 AC_ARG_ENABLE( [debug-mutex],
125 AS_HELP_STRING([--enable-debug-mutex],
126 [Enable mutex debug support (default off)]),
127 [ case "$enableval" in
475cdc78 128 yes) spl_ac_debug_mutex=yes ;;
129 no) spl_ac_debug_mutex=no ;;
57d86234 130 *) AC_MSG_RESULT([Error!])
131 AC_MSG_ERROR([Bad value "$enableval" for --enable-debug-mutex]) ;;
132 esac ]
133 )
475cdc78 134 if test "$spl_ac_debug_mutex" = yes; then
135 AC_MSG_RESULT([yes])
57d86234 136 AC_DEFINE([DEBUG_MUTEX], [1],
137 [Define to 1 to enable mutex debugging])
475cdc78 138 KERNELCPPFLAGS="${KERNELCPPFLAGS} -DDEBUG_MUTEX"
139 else
140 AC_MSG_RESULT([no])
57d86234 141 fi
57d86234 142])
143
144AC_DEFUN([SPL_AC_DEBUG_KSTAT], [
145 AC_MSG_CHECKING([whether kstat debugging is enabled])
146 AC_ARG_ENABLE( [debug-kstat],
147 AS_HELP_STRING([--enable-debug-kstat],
148 [Enable kstat debug support (default off)]),
149 [ case "$enableval" in
475cdc78 150 yes) spl_ac_debug_kstat=yes ;;
151 no) spl_ac_debug_kstat=no ;;
57d86234 152 *) AC_MSG_RESULT([Error!])
153 AC_MSG_ERROR([Bad value "$enableval" for --enable-debug-kstat]) ;;
154 esac ]
155 )
475cdc78 156 if test "$spl_ac_debug_kstat" = yes; then
157 AC_MSG_RESULT([yes])
57d86234 158 AC_DEFINE([DEBUG_KSTAT], [1],
159 [Define to 1 to enable kstat debugging])
475cdc78 160 KERNELCPPFLAGS="${KERNELCPPFLAGS} -DDEBUG_KSTAT"
161 else
162 AC_MSG_RESULT([no])
57d86234 163 fi
57d86234 164])
165
166AC_DEFUN([SPL_AC_DEBUG_CALLB], [
167 AC_MSG_CHECKING([whether callb debugging is enabled])
168 AC_ARG_ENABLE( [debug-callb],
169 AS_HELP_STRING([--enable-debug-callb],
170 [Enable callb debug support (default off)]),
171 [ case "$enableval" in
475cdc78 172 yes) spl_ac_debug_callb=yes ;;
173 no) spl_ac_debug_callb=no ;;
57d86234 174 *) AC_MSG_RESULT([Error!])
175 AC_MSG_ERROR([Bad value "$enableval" for --enable-debug-callb]) ;;
176 esac ]
177 )
475cdc78 178 if test "$spl_ac_debug_callb" = yes; then
179 AC_MSG_RESULT([yes])
57d86234 180 AC_DEFINE([DEBUG_CALLB], [1],
181 [Define to 1 to enable callb debugging])
475cdc78 182 KERNELCPPFLAGS="${KERNELCPPFLAGS} -DDEBUG_CALLB"
183 else
184 AC_MSG_RESULT([no])
57d86234 185 fi
57d86234 186])
187
188dnl #
189dnl # SPL_LINUX_CONFTEST
190dnl #
191AC_DEFUN([SPL_LINUX_CONFTEST], [
192cat >conftest.c <<_ACEOF
193$1
194_ACEOF
195])
196
197dnl #
198dnl # SPL_LANG_PROGRAM(C)([PROLOGUE], [BODY])
199dnl #
200m4_define([SPL_LANG_PROGRAM], [
201$1
202int
203main (void)
204{
205dnl Do *not* indent the following line: there may be CPP directives.
206dnl Don't move the `;' right after for the same reason.
207$2
208 ;
209 return 0;
210}
211])
212
213dnl #
214dnl # SPL_LINUX_COMPILE_IFELSE / like AC_COMPILE_IFELSE
215dnl #
216AC_DEFUN([SPL_LINUX_COMPILE_IFELSE], [
217m4_ifvaln([$1], [SPL_LINUX_CONFTEST([$1])])dnl
218rm -f build/conftest.o build/conftest.mod.c build/conftest.ko build/Makefile
219echo "obj-m := conftest.o" >build/Makefile
220dnl AS_IF([AC_TRY_COMMAND(cp conftest.c build && make [$2] CC="$CC" -f $PWD/build/Makefile LINUXINCLUDE="-Iinclude -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM SUBDIRS=$PWD/build) >/dev/null && AC_TRY_COMMAND([$3])],
221AS_IF([AC_TRY_COMMAND(cp conftest.c build && make [$2] CC="$CC" LINUXINCLUDE="-Iinclude -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM M=$PWD/build) >/dev/null && AC_TRY_COMMAND([$3])],
222 [$4],
223 [_AC_MSG_LOG_CONFTEST
224m4_ifvaln([$5],[$5])dnl])dnl
225rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko m4_ifval([$1], [build/conftest.c conftest.c])[]dnl
226])
227
228dnl #
229dnl # SPL_LINUX_TRY_COMPILE like AC_TRY_COMPILE
230dnl #
231AC_DEFUN([SPL_LINUX_TRY_COMPILE],
232 [SPL_LINUX_COMPILE_IFELSE(
233 [AC_LANG_SOURCE([SPL_LANG_PROGRAM([[$1]], [[$2]])])],
234 [modules],
235 [test -s build/conftest.o],
236 [$3], [$4])
237])
238
239dnl #
240dnl # SPL_LINUX_CONFIG
241dnl #
242AC_DEFUN([SPL_LINUX_CONFIG],
243 [AC_MSG_CHECKING([whether Linux was built with CONFIG_$1])
244 SPL_LINUX_TRY_COMPILE([
245 #ifndef AUTOCONF_INCLUDED
246 #include <linux/config.h>
247 #endif
248 ],[
249 #ifndef CONFIG_$1
250 #error CONFIG_$1 not #defined
251 #endif
252 ],[
253 AC_MSG_RESULT([yes])
254 $2
255 ],[
256 AC_MSG_RESULT([no])
257 $3
258 ])
259])
260
261dnl #
262dnl # SPL_CHECK_SYMBOL_EXPORT
263dnl # check symbol exported or not
264dnl #
265AC_DEFUN([SPL_CHECK_SYMBOL_EXPORT],
266 [AC_MSG_CHECKING([whether symbol $1 is exported])
267 grep -q -E '[[[:space:]]]$1[[[:space:]]]' $LINUX/Module.symvers 2>/dev/null
268 rc=$?
269 if test $rc -ne 0; then
270 export=0
271 for file in $2; do
272 grep -q -E "EXPORT_SYMBOL.*($1)" "$LINUX/$file" 2>/dev/null
273 rc=$?
274 if test $rc -eq 0; then
275 export=1
276 break;
277 fi
278 done
279 if test $export -eq 0; then
280 AC_MSG_RESULT([no])
281 $4
282 else
283 AC_MSG_RESULT([yes])
284 $3
285 fi
286 else
287 AC_MSG_RESULT([yes])
288 $3
289 fi
290])
291
292dnl #
293dnl # 2.6.x API change
294dnl # check if uintptr_t typedef is defined
295dnl #
296AC_DEFUN([SPL_AC_TYPE_UINTPTR_T],
297 [AC_MSG_CHECKING([whether kernel defines uintptr_t])
298 SPL_LINUX_TRY_COMPILE([
299 #include <linux/types.h>
300 ],[
301 uintptr_t *ptr;
302 ],[
303 AC_MSG_RESULT([yes])
304 AC_DEFINE(HAVE_UINTPTR_T, 1,
305 [kernel defines uintptr_t])
306 ],[
307 AC_MSG_RESULT([no])
308 ])
309])
310
57d86234 311dnl #
312dnl # 2.6.19 API change
313dnl # panic_notifier_list use atomic_notifier operations
314dnl #
315
316AC_DEFUN([SPL_AC_ATOMIC_PANIC_NOTIFIER],
317 [AC_MSG_CHECKING([whether panic_notifier_list is atomic])
318 SPL_LINUX_TRY_COMPILE([
319 #include <linux/notifier.h>
320 #include <linux/kernel.h>
321 ],[
322 struct atomic_notifier_head panic_notifier_list;
323 ],[
324 AC_MSG_RESULT(yes)
325 AC_DEFINE(HAVE_ATOMIC_PANIC_NOTIFIER, 1,
326 [panic_notifier_list is atomic])
327 ],[
328 AC_MSG_RESULT(no)
329 ])
330])
331
332dnl #
333dnl # 2.6.20 API change
334dnl # INIT_WORK use 2 args and not store data inside
335dnl #
336AC_DEFUN([SPL_AC_3ARGS_INIT_WORK],
337 [AC_MSG_CHECKING([whether INIT_WORK wants 3 args])
338 SPL_LINUX_TRY_COMPILE([
339 #include <linux/workqueue.h>
340 ],[
341 struct work_struct work;
342
343 INIT_WORK(&work, NULL, NULL);
344 ],[
345 AC_MSG_RESULT(yes)
346 AC_DEFINE(HAVE_3ARGS_INIT_WORK, 1,
347 [INIT_WORK wants 3 args])
348 ],[
349 AC_MSG_RESULT(no)
350 ])
351])
352
353dnl #
354dnl # 2.6.21 api change.
355dnl # 'register_sysctl_table' use only one argument instead of two
356dnl #
357AC_DEFUN([SPL_AC_2ARGS_REGISTER_SYSCTL],
358 [AC_MSG_CHECKING([whether register_sysctl_table() wants 2 args])
359 SPL_LINUX_TRY_COMPILE([
360 #include <linux/sysctl.h>
361 ],[
362 return register_sysctl_table(NULL,0);
363 ],[
364 AC_MSG_RESULT(yes)
365 AC_DEFINE(HAVE_2ARGS_REGISTER_SYSCTL, 1,
366 [register_sysctl_table() wants 2 args])
367 ],[
368 AC_MSG_RESULT(no)
369 ])
370])
371
57d86234 372dnl #
373dnl # 2.6.x API change
374dnl # Old set_shrinker API replaced with register_shrinker
375dnl #
376AC_DEFUN([SPL_AC_SET_SHRINKER], [
377 AC_MSG_CHECKING([whether set_shrinker() available])
378 SPL_LINUX_TRY_COMPILE([
379 #include <linux/mm.h>
380 ],[
381 return set_shrinker(DEFAULT_SEEKS, NULL);
382 ],[
383 AC_MSG_RESULT([yes])
384 AC_DEFINE(HAVE_SET_SHRINKER, 1,
385 [set_shrinker() available])
386 ],[
387 AC_MSG_RESULT([no])
388 ])
389])
390
391dnl #
392dnl # 2.6.x API change
393dnl # struct path entry added to struct nameidata
394dnl #
395AC_DEFUN([SPL_AC_PATH_IN_NAMEIDATA],
396 [AC_MSG_CHECKING([whether struct path used in struct nameidata])
397 SPL_LINUX_TRY_COMPILE([
398 #include <linux/namei.h>
399 ],[
400 struct nameidata nd;
401
402 nd.path.mnt = NULL;
403 nd.path.dentry = NULL;
404 ],[
405 AC_MSG_RESULT(yes)
406 AC_DEFINE(HAVE_PATH_IN_NAMEIDATA, 1,
407 [struct path used in struct nameidata])
408 ],[
409 AC_MSG_RESULT(no)
410 ])
411])
412
413dnl #
414dnl # Custom SPL patch may export this system it is not required
415dnl #
416AC_DEFUN([SPL_AC_TASK_CURR], [
417 SPL_CHECK_SYMBOL_EXPORT([task_curr], [kernel/sched.c],
418 [AC_DEFINE(HAVE_TASK_CURR, 1, [task_curr() exported])],
419 [])
420])
421
422dnl #
423dnl # 2.6.x API change
424dnl # Use CTL_UNNUMBERED when binary sysctl is not required
425dnl #
426AC_DEFUN([SPL_AC_CTL_UNNUMBERED],
427 [AC_MSG_CHECKING([whether unnumbered sysctl support exists])
428 SPL_LINUX_TRY_COMPILE([
429 #include <linux/sysctl.h>
430 ],[
431 #ifndef CTL_UNNUMBERED
432 #error CTL_UNNUMBERED undefined
433 #endif
434 ],[
435 AC_MSG_RESULT(yes)
436 AC_DEFINE(HAVE_CTL_UNNUMBERED, 1,
437 [unnumbered sysctl support exists])
438 ],[
439 AC_MSG_RESULT(no)
440 ])
441])
877a32e9 442
443dnl #
444dnl # 2.6.16 API change.
445dnl # Check if 'fls64()' is available
446dnl #
447AC_DEFUN([SPL_AC_FLS64],
448 [AC_MSG_CHECKING([whether fls64() is available])
449 SPL_LINUX_TRY_COMPILE([
450 #include <linux/bitops.h>
451 ],[
452 return fls64(0);
453 ],[
454 AC_MSG_RESULT(yes)
455 AC_DEFINE(HAVE_FLS64, 1, [fls64() is available])
456 ],[
457 AC_MSG_RESULT(no)
458 ])
459])
46c685d0 460
461dnl #
462dnl # 2.6.18 API change, check whether device_create() is available.
463dnl # Device_create() was introduced in 2.6.18 and depricated
464dnl # class_device_create() which was fully removed in 2.6.26.
465dnl #
466AC_DEFUN([SPL_AC_DEVICE_CREATE], [
467 SPL_CHECK_SYMBOL_EXPORT(
468 [device_create],
469 [drivers/base/core.c],
470 [AC_DEFINE(HAVE_DEVICE_CREATE, 1,
471 [device_create() is available])],
472 [])
473])
474
475dnl #
476dnl # 2.6.13 API change, check whether class_device_create() is available.
477dnl # Class_device_create() was introduced in 2.6.13 and depricated
478dnl # class_simple_device_add() which was fully removed in 2.6.13.
479dnl #
480AC_DEFUN([SPL_AC_CLASS_DEVICE_CREATE], [
481 SPL_CHECK_SYMBOL_EXPORT(
482 [class_device_create],
483 [drivers/base/class.c],
484 [AC_DEFINE(HAVE_CLASS_DEVICE_CREATE, 1,
485 [class_device_create() is available])],
486 [])
487])