]> git.proxmox.com Git - mirror_spl.git/blame - autoconf/spl-build.m4
Minor tweak to handle systems with restrictive udev rules
[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
86de8532 292dnl #
293dnl # SPL_CHECK_HEADER
294dnl # check whether header exists and define HAVE_$2_HEADER
295dnl #
296AC_DEFUN([SPL_CHECK_HEADER],
297 [AC_MSG_CHECKING([whether header $1 exists])
298 SPL_LINUX_TRY_COMPILE([
299 #include <$1>
300 ],[
301 return 0;
302 ],[
303 AC_DEFINE(HAVE_$2_HEADER, 1, [$1 exists])
304 AC_MSG_RESULT(yes)
305 $3
306 ],[
307 AC_MSG_RESULT(no)
308 $4
309 ])
310])
6a6cafbe 311
57d86234 312dnl #
3d061e9d 313dnl # 2.6.24 API change,
57d86234 314dnl # check if uintptr_t typedef is defined
315dnl #
316AC_DEFUN([SPL_AC_TYPE_UINTPTR_T],
317 [AC_MSG_CHECKING([whether kernel defines uintptr_t])
318 SPL_LINUX_TRY_COMPILE([
319 #include <linux/types.h>
320 ],[
321 uintptr_t *ptr;
322 ],[
323 AC_MSG_RESULT([yes])
324 AC_DEFINE(HAVE_UINTPTR_T, 1,
325 [kernel defines uintptr_t])
326 ],[
327 AC_MSG_RESULT([no])
328 ])
329])
330
57d86234 331dnl #
3d061e9d 332dnl # 2.6.19 API change,
57d86234 333dnl # panic_notifier_list use atomic_notifier operations
334dnl #
335
336AC_DEFUN([SPL_AC_ATOMIC_PANIC_NOTIFIER],
337 [AC_MSG_CHECKING([whether panic_notifier_list is atomic])
338 SPL_LINUX_TRY_COMPILE([
339 #include <linux/notifier.h>
340 #include <linux/kernel.h>
341 ],[
342 struct atomic_notifier_head panic_notifier_list;
343 ],[
344 AC_MSG_RESULT(yes)
345 AC_DEFINE(HAVE_ATOMIC_PANIC_NOTIFIER, 1,
346 [panic_notifier_list is atomic])
347 ],[
348 AC_MSG_RESULT(no)
349 ])
350])
351
352dnl #
3d061e9d 353dnl # 2.6.20 API change,
57d86234 354dnl # INIT_WORK use 2 args and not store data inside
355dnl #
356AC_DEFUN([SPL_AC_3ARGS_INIT_WORK],
357 [AC_MSG_CHECKING([whether INIT_WORK wants 3 args])
358 SPL_LINUX_TRY_COMPILE([
359 #include <linux/workqueue.h>
360 ],[
361 struct work_struct work;
362
363 INIT_WORK(&work, NULL, NULL);
364 ],[
365 AC_MSG_RESULT(yes)
366 AC_DEFINE(HAVE_3ARGS_INIT_WORK, 1,
367 [INIT_WORK wants 3 args])
368 ],[
369 AC_MSG_RESULT(no)
370 ])
371])
372
373dnl #
3d061e9d 374dnl # 2.6.21 API change,
57d86234 375dnl # 'register_sysctl_table' use only one argument instead of two
376dnl #
377AC_DEFUN([SPL_AC_2ARGS_REGISTER_SYSCTL],
378 [AC_MSG_CHECKING([whether register_sysctl_table() wants 2 args])
379 SPL_LINUX_TRY_COMPILE([
380 #include <linux/sysctl.h>
381 ],[
382 return register_sysctl_table(NULL,0);
383 ],[
384 AC_MSG_RESULT(yes)
385 AC_DEFINE(HAVE_2ARGS_REGISTER_SYSCTL, 1,
386 [register_sysctl_table() wants 2 args])
387 ],[
388 AC_MSG_RESULT(no)
389 ])
390])
391
57d86234 392dnl #
3d061e9d 393dnl # 2.6.23 API change
57d86234 394dnl # Old set_shrinker API replaced with register_shrinker
395dnl #
396AC_DEFUN([SPL_AC_SET_SHRINKER], [
397 AC_MSG_CHECKING([whether set_shrinker() available])
398 SPL_LINUX_TRY_COMPILE([
399 #include <linux/mm.h>
400 ],[
401 return set_shrinker(DEFAULT_SEEKS, NULL);
402 ],[
403 AC_MSG_RESULT([yes])
404 AC_DEFINE(HAVE_SET_SHRINKER, 1,
405 [set_shrinker() available])
406 ],[
407 AC_MSG_RESULT([no])
408 ])
409])
410
411dnl #
3d061e9d 412dnl # 2.6.25 API change,
57d86234 413dnl # struct path entry added to struct nameidata
414dnl #
415AC_DEFUN([SPL_AC_PATH_IN_NAMEIDATA],
416 [AC_MSG_CHECKING([whether struct path used in struct nameidata])
417 SPL_LINUX_TRY_COMPILE([
418 #include <linux/namei.h>
419 ],[
420 struct nameidata nd;
421
422 nd.path.mnt = NULL;
423 nd.path.dentry = NULL;
424 ],[
425 AC_MSG_RESULT(yes)
426 AC_DEFINE(HAVE_PATH_IN_NAMEIDATA, 1,
427 [struct path used in struct nameidata])
428 ],[
429 AC_MSG_RESULT(no)
430 ])
431])
432
433dnl #
434dnl # Custom SPL patch may export this system it is not required
435dnl #
436AC_DEFUN([SPL_AC_TASK_CURR], [
437 SPL_CHECK_SYMBOL_EXPORT([task_curr], [kernel/sched.c],
438 [AC_DEFINE(HAVE_TASK_CURR, 1, [task_curr() exported])],
439 [])
440])
441
442dnl #
3d061e9d 443dnl # 2.6.19 API change,
57d86234 444dnl # Use CTL_UNNUMBERED when binary sysctl is not required
445dnl #
446AC_DEFUN([SPL_AC_CTL_UNNUMBERED],
447 [AC_MSG_CHECKING([whether unnumbered sysctl support exists])
448 SPL_LINUX_TRY_COMPILE([
449 #include <linux/sysctl.h>
450 ],[
451 #ifndef CTL_UNNUMBERED
452 #error CTL_UNNUMBERED undefined
453 #endif
454 ],[
455 AC_MSG_RESULT(yes)
456 AC_DEFINE(HAVE_CTL_UNNUMBERED, 1,
457 [unnumbered sysctl support exists])
458 ],[
459 AC_MSG_RESULT(no)
460 ])
461])
877a32e9 462
463dnl #
464dnl # 2.6.16 API change.
465dnl # Check if 'fls64()' is available
466dnl #
467AC_DEFUN([SPL_AC_FLS64],
6a6cafbe 468 [AC_MSG_CHECKING([whether fls64() is available])
469 SPL_LINUX_TRY_COMPILE([
470 #include <linux/bitops.h>
471 ],[
472 return fls64(0);
473 ],[
474 AC_MSG_RESULT(yes)
475 AC_DEFINE(HAVE_FLS64, 1, [fls64() is available])
476 ],[
477 AC_MSG_RESULT(no)
478 ])
877a32e9 479])
46c685d0 480
481dnl #
482dnl # 2.6.18 API change, check whether device_create() is available.
483dnl # Device_create() was introduced in 2.6.18 and depricated
484dnl # class_device_create() which was fully removed in 2.6.26.
485dnl #
486AC_DEFUN([SPL_AC_DEVICE_CREATE], [
487 SPL_CHECK_SYMBOL_EXPORT(
488 [device_create],
489 [drivers/base/core.c],
490 [AC_DEFINE(HAVE_DEVICE_CREATE, 1,
491 [device_create() is available])],
6a6cafbe 492 [])
46c685d0 493])
494
495dnl #
496dnl # 2.6.13 API change, check whether class_device_create() is available.
497dnl # Class_device_create() was introduced in 2.6.13 and depricated
498dnl # class_simple_device_add() which was fully removed in 2.6.13.
499dnl #
500AC_DEFUN([SPL_AC_CLASS_DEVICE_CREATE], [
501 SPL_CHECK_SYMBOL_EXPORT(
502 [class_device_create],
503 [drivers/base/class.c],
504 [AC_DEFINE(HAVE_CLASS_DEVICE_CREATE, 1,
505 [class_device_create() is available])],
6a6cafbe 506 [])
46c685d0 507])
6a6cafbe 508
6a6cafbe 509dnl #
510dnl # 2.6.26 API change, set_normalized_timespec() is exported.
511dnl #
512AC_DEFUN([SPL_AC_SET_NORMALIZED_TIMESPEC_EXPORT], [
513 SPL_CHECK_SYMBOL_EXPORT(
514 [set_normalized_timespec],
515 [kernel/time.c],
516 [AC_DEFINE(HAVE_SET_NORMALIZED_TIMESPEC_EXPORT, 1,
517 [set_normalized_timespec() is available as export])],
518 [])
519])
520
521dnl #
522dnl # 2.6.16 API change, set_normalize_timespec() moved to time.c
523dnl # previously it was available in time.h as an inline.
524dnl #
86de8532 525AC_DEFUN([SPL_AC_SET_NORMALIZED_TIMESPEC_INLINE], [
526 AC_MSG_CHECKING([whether set_normalized_timespec() is an inline])
6a6cafbe 527 SPL_LINUX_TRY_COMPILE([
528 #include <linux/time.h>
6a6cafbe 529 void set_normalized_timespec(struct timespec *ts,
25557fd8 530 time_t sec, long nsec) { }
531 ],
532 [],
533 [
6a6cafbe 534 AC_MSG_RESULT(no)
535 ],[
536 AC_MSG_RESULT(yes)
537 AC_DEFINE(HAVE_SET_NORMALIZED_TIMESPEC_INLINE, 1,
538 [set_normalized_timespec() is available as inline])
539 ])
540])
541
542dnl #
543dnl # 2.6.18 API change,
544dnl # timespec_sub() inline function available in linux/time.h
545dnl #
86de8532 546AC_DEFUN([SPL_AC_TIMESPEC_SUB], [
547 AC_MSG_CHECKING([whether timespec_sub() is available])
6a6cafbe 548 SPL_LINUX_TRY_COMPILE([
549 #include <linux/time.h>
550 ],[
551 struct timespec a, b, c = { 0 };
552 c = timespec_sub(a, b);
553 ],[
554 AC_MSG_RESULT(yes)
555 AC_DEFINE(HAVE_TIMESPEC_SUB, 1, [timespec_sub() is available])
556 ],[
557 AC_MSG_RESULT(no)
558 ])
559])
560
86de8532 561dnl #
3d061e9d 562dnl # 2.6.19 API change,
563dnl # check if init_utsname() is available in linux/utsname.h
564dnl #
565AC_DEFUN([SPL_AC_INIT_UTSNAME], [
566 AC_MSG_CHECKING([whether init_utsname() is available])
567 SPL_LINUX_TRY_COMPILE([
568 #include <linux/utsname.h>
569 ],[
570 struct new_utsname *a = init_utsname();
571 ],[
572 AC_MSG_RESULT(yes)
573 AC_DEFINE(HAVE_INIT_UTSNAME, 1, [init_utsname() is available])
574 ],[
575 AC_MSG_RESULT(no)
576 ])
577])
578
579dnl #
580dnl # 2.6.26 API change,
581dnl # definition of struct fdtable relocated to linux/fdtable.h
86de8532 582dnl #
583AC_DEFUN([SPL_AC_FDTABLE_HEADER], [
584 SPL_CHECK_HEADER([linux/fdtable.h], [FDTABLE], [], [])
585])
322640b7 586
587dnl #
3d061e9d 588dnl # 2.6.14 API change,
589dnl # check whether 'files_fdtable()' exists
590dnl #
591AC_DEFUN([SPL_AC_FILES_FDTABLE], [
592 AC_MSG_CHECKING([whether files_fdtable() is available])
593 SPL_LINUX_TRY_COMPILE([
594 #include <linux/sched.h>
595 #include <linux/file.h>
596 #ifdef HAVE_FDTABLE_HEADER
597 #include <linux/fdtable.h>
598 #endif
599 ],[
600 struct files_struct *files = current->files;
601 struct fdtable *fdt = files_fdtable(files);
602 ],[
603 AC_MSG_RESULT(yes)
604 AC_DEFINE(HAVE_FILES_FDTABLE, 1, [files_fdtable() is available])
605 ],[
606 AC_MSG_RESULT(no)
607 ])
608])
609
610dnl #
611dnl # 2.6.18 API change,
612dnl # added linux/uaccess.h
322640b7 613dnl #
614AC_DEFUN([SPL_AC_UACCESS_HEADER], [
615 SPL_CHECK_HEADER([linux/uaccess.h], [UACCESS], [], [])
616])
3d061e9d 617
618dnl #
619dnl # 2.6.12 API change,
620dnl # check whether 'kmalloc_node()' is available.
621dnl #
622AC_DEFUN([SPL_AC_KMALLOC_NODE], [
623 AC_MSG_CHECKING([whether kmalloc_node() is available])
624 SPL_LINUX_TRY_COMPILE([
625 #include <linux/slab.h>
626 ],[
627 void *a = kmalloc_node(1, GFP_KERNEL, 0);
628 ],[
629 AC_MSG_RESULT(yes)
630 AC_DEFINE(HAVE_KMALLOC_NODE, 1, [kmalloc_node() is available])
631 ],[
632 AC_MSG_RESULT(no)
633 ])
634])
635
636dnl #
637dnl # 2.6.9 API change,
638dnl # check whether 'monotonic_clock()' is available it may
639dnl # be available for some archs but not others.
640dnl #
641AC_DEFUN([SPL_AC_MONOTONIC_CLOCK], [
642 SPL_CHECK_SYMBOL_EXPORT(
643 [monotonic_clock],
644 [],
645 [AC_DEFINE(HAVE_MONOTONIC_CLOCK, 1,
646 [monotonic_clock() is available])],
647 [])
648])
649
650dnl #
651dnl # 2.6.16 API change,
652dnl # check whether 'struct inode' has i_mutex
653dnl #
654AC_DEFUN([SPL_AC_INODE_I_MUTEX], [
655 AC_MSG_CHECKING([whether struct inode has i_mutex])
656 SPL_LINUX_TRY_COMPILE([
657 #include <linux/fs.h>
658 #include <linux/mutex.h>
659 ],[
660 struct inode i;
661 mutex_init(&i.i_mutex);
662 ],[
663 AC_MSG_RESULT(yes)
664 AC_DEFINE(HAVE_INODE_I_MUTEX, 1, [struct inode has i_mutex])
665 ],[
666 AC_MSG_RESULT(no)
667 ])
668])
b61a6e8b 669
670dnl #
671dnl # 2.6.14 API change,
672dnl # check whether 'div64_64()' is available
673dnl #
674AC_DEFUN([SPL_AC_DIV64_64], [
675 AC_MSG_CHECKING([whether div64_64() is available])
676 SPL_LINUX_TRY_COMPILE([
677 #include <asm/div64.h>
678 ],[
679 uint64_t i = div64_64(1ULL, 1ULL);
680 ],[
681 AC_MSG_RESULT(yes)
682 AC_DEFINE(HAVE_DIV64_64, 1, [div64_64() is available])
683 ],[
684 AC_MSG_RESULT(no)
685 ])
686])