Whamcloud - gitweb
10a85839502e413cc67c80c997e0c3924bdd2b2d
[fs/lustre-release.git] / libcfs / autoconf / lustre-libcfs.m4
1 #
2 # LN_CONFIG_CDEBUG
3 #
4 # whether to enable various libcfs debugs (CDEBUG, ENTRY/EXIT, LASSERT, etc.)
5 #
6 AC_DEFUN([LN_CONFIG_CDEBUG],
7 [
8 AC_MSG_CHECKING([whether to enable CDEBUG, CWARN])
9 AC_ARG_ENABLE([libcfs_cdebug],
10         AC_HELP_STRING([--disable-libcfs-cdebug],
11                         [disable libcfs CDEBUG, CWARN]),
12         [],[enable_libcfs_cdebug='yes'])
13 AC_MSG_RESULT([$enable_libcfs_cdebug])
14 if test x$enable_libcfs_cdebug = xyes; then
15    AC_DEFINE(CDEBUG_ENABLED, 1, [enable libcfs CDEBUG, CWARN])
16 else
17    AC_DEFINE(CDEBUG_ENABLED, 0, [disable libcfs CDEBUG, CWARN])
18 fi
19
20 AC_MSG_CHECKING([whether to enable ENTRY/EXIT])
21 AC_ARG_ENABLE([libcfs_trace],
22         AC_HELP_STRING([--disable-libcfs-trace],
23                         [disable libcfs ENTRY/EXIT]),
24         [],[enable_libcfs_trace='yes'])
25 AC_MSG_RESULT([$enable_libcfs_trace])
26 if test x$enable_libcfs_trace = xyes; then
27    AC_DEFINE(CDEBUG_ENTRY_EXIT, 1, [enable libcfs ENTRY/EXIT])
28 else
29    AC_DEFINE(CDEBUG_ENTRY_EXIT, 0, [disable libcfs ENTRY/EXIT])
30 fi
31
32 AC_MSG_CHECKING([whether to enable LASSERT, LASSERTF])
33 AC_ARG_ENABLE([libcfs_assert],
34         AC_HELP_STRING([--disable-libcfs-assert],
35                         [disable libcfs LASSERT, LASSERTF]),
36         [],[enable_libcfs_assert='yes'])
37 AC_MSG_RESULT([$enable_libcfs_assert])
38 if test x$enable_libcfs_assert = xyes; then
39    AC_DEFINE(LIBCFS_DEBUG, 1, [enable libcfs LASSERT, LASSERTF])
40 fi
41 ])
42
43 #
44 # LIBCFS_CONFIG_PANIC_DUMPLOG
45 #
46 # check if tunable panic_dumplog is wanted
47 #
48 AC_DEFUN([LIBCFS_CONFIG_PANIC_DUMPLOG],
49 [AC_MSG_CHECKING([for tunable panic_dumplog support])
50 AC_ARG_ENABLE([panic_dumplog],
51        AC_HELP_STRING([--enable-panic_dumplog],
52                       [enable panic_dumplog]),
53        [],[enable_panic_dumplog='no'])
54 if test x$enable_panic_dumplog = xyes ; then
55        AC_DEFINE(LNET_DUMP_ON_PANIC, 1, [use dumplog on panic])
56        AC_MSG_RESULT([yes (by request)])
57 else
58        AC_MSG_RESULT([no])
59 fi
60 ])
61
62 #
63 # LIBCFS_FUNC_CPU_ONLINE
64 #
65 # cpu_online is different in rh 2.4, vanilla 2.4, and 2.6
66 #
67 AC_DEFUN([LIBCFS_FUNC_CPU_ONLINE],
68 [AC_MSG_CHECKING([if kernel defines cpu_online()])
69 LB_LINUX_TRY_COMPILE([
70        #include <linux/sched.h>
71 ],[
72        cpu_online(0);
73 ],[
74        AC_MSG_RESULT([yes])
75        AC_DEFINE(HAVE_CPU_ONLINE, 1, [cpu_online found])
76 ],[
77        AC_MSG_RESULT([no])
78 ])
79 ])
80
81 #
82 # LIBCFS_TYPE_GFP_T
83 #
84 # check if gfp_t is typedef-ed
85 #
86 AC_DEFUN([LIBCFS_TYPE_GFP_T],
87 [AC_MSG_CHECKING([if kernel defines gfp_t])
88 LB_LINUX_TRY_COMPILE([
89         #include <linux/gfp.h>
90 ],[
91         return sizeof(gfp_t);
92 ],[
93         AC_MSG_RESULT([yes])
94         AC_DEFINE(HAVE_GFP_T, 1, [gfp_t found])
95 ],[
96         AC_MSG_RESULT([no])
97 ])
98 ])
99
100 #
101 # LIBCFS_FUNC_SHOW_TASK
102 #
103 # we export show_task(), but not all kernels have it (yet)
104 #
105 AC_DEFUN([LIBCFS_FUNC_SHOW_TASK],
106 [LB_CHECK_SYMBOL_EXPORT([show_task],
107 [kernel/ksyms.c kernel/sched.c],[
108 AC_DEFINE(HAVE_SHOW_TASK, 1, [show_task is exported])
109 ],[
110         LB_CHECK_SYMBOL_EXPORT([sched_show_task],
111         [kernel/ksyms.c kernel/sched.c],[
112         AC_DEFINE(HAVE_SCHED_SHOW_TASK, 1, [sched_show_task is exported])
113         ],[])
114 ])
115 ])
116
117 # check kernel __u64 type
118 AC_DEFUN([LIBCFS_U64_LONG_LONG_LINUX],
119 [
120 AC_MSG_CHECKING([kernel __u64 is long long type])
121 tmp_flags="$EXTRA_KCFLAGS"
122 EXTRA_KCFLAGS="$EXTRA_KCFLAGS -Werror"
123 LB_LINUX_TRY_COMPILE([
124         #include <linux/types.h>
125         #include <linux/stddef.h>
126 ],[
127         unsigned long long *data;
128
129         data = (__u64*)sizeof(data);
130 ],[
131         AC_MSG_RESULT([yes])
132         AC_DEFINE(HAVE_KERN__U64_LONG_LONG, 1,
133                   [kernel __u64 is long long type])
134 ],[
135         AC_MSG_RESULT([no])
136 ])
137 EXTRA_KCFLAGS="$tmp_flags"
138 ])
139
140 # check if task_struct with rcu memeber
141 AC_DEFUN([LIBCFS_TASK_RCU],
142 [AC_MSG_CHECKING([if task_struct has a rcu field])
143 LB_LINUX_TRY_COMPILE([
144         #include <linux/sched.h>
145 ],[
146         memset(((struct task_struct *)0)->rcu.next, 0, 0);
147 ],[
148         AC_MSG_RESULT([yes])
149         AC_DEFINE(HAVE_TASK_RCU, 1, [task_struct has rcu field])
150 ],[
151         AC_MSG_RESULT([no])
152 ])
153 ])
154
155 # LIBCFS_TASKLIST_LOCK
156 # 2.6.18 remove tasklist_lock export
157 AC_DEFUN([LIBCFS_TASKLIST_LOCK],
158 [LB_CHECK_SYMBOL_EXPORT([tasklist_lock],
159 [kernel/fork.c],[
160 AC_DEFINE(HAVE_TASKLIST_LOCK, 1,
161          [tasklist_lock exported])
162 ],[
163 ])
164 ])
165
166 # 2.6.19 API changes
167 # kmem_cache_destroy(cachep) return void instead of
168 # int
169 AC_DEFUN([LIBCFS_KMEM_CACHE_DESTROY_INT],
170 [AC_MSG_CHECKING([kmem_cache_destroy(cachep) return int])
171 LB_LINUX_TRY_COMPILE([
172         #include <linux/slab.h>
173 ],[
174         int i = kmem_cache_destroy(NULL);
175 ],[
176         AC_MSG_RESULT(yes)
177         AC_DEFINE(HAVE_KMEM_CACHE_DESTROY_INT, 1,
178                 [kmem_cache_destroy(cachep) return int])
179 ],[
180         AC_MSG_RESULT(NO)
181 ])
182 ])
183
184 # 2.6.19 API change
185 #panic_notifier_list use atomic_notifier operations
186 #
187 AC_DEFUN([LIBCFS_ATOMIC_PANIC_NOTIFIER],
188 [AC_MSG_CHECKING([panic_notifier_list is atomic])
189 LB_LINUX_TRY_COMPILE([
190         #include <linux/notifier.h>
191         #include <linux/kernel.h>
192 ],[
193         struct atomic_notifier_head panic_notifier_list;
194 ],[
195         AC_MSG_RESULT(yes)
196         AC_DEFINE(HAVE_ATOMIC_PANIC_NOTIFIER, 1,
197                 [panic_notifier_list is atomic_notifier_head])
198 ],[
199         AC_MSG_RESULT(NO)
200 ])
201 ])
202
203 # since 2.6.19 nlmsg_multicast() needs 5 argument.
204 AC_DEFUN([LIBCFS_NLMSG_MULTICAST],
205 [AC_MSG_CHECKING([nlmsg_multicast needs 5 argument])
206 LB_LINUX_TRY_COMPILE([
207         #include <net/netlink.h>
208 ],[
209         nlmsg_multicast(NULL, NULL, 0, 0, 0);
210 ],[
211         AC_MSG_RESULT(yes)
212         AC_DEFINE(HAVE_NLMSG_MULTICAST_5ARGS, 1,
213                   [nlmsg_multicast needs 5 argument])
214 ],[
215         AC_MSG_RESULT(NO)
216 ])
217 ])
218
219 #
220 # LIBCFS_NETLINK
221 #
222 # If we have netlink.h, and nlmsg_new takes 2 args (2.6.19)
223 #
224 AC_DEFUN([LIBCFS_NETLINK],
225 [AC_MSG_CHECKING([if netlink.h can be compiled])
226 LB_LINUX_TRY_COMPILE([
227         #include <net/netlink.h>
228 ],[],[
229         AC_MSG_RESULT([yes])
230         AC_DEFINE(HAVE_NETLINK, 1, [net/netlink.h found])
231
232         AC_MSG_CHECKING([if nlmsg_new takes a 2nd argument])
233         LB_LINUX_TRY_COMPILE([
234                 #include <net/netlink.h>
235         ],[
236                 nlmsg_new(100, GFP_KERNEL);
237         ],[
238                 AC_MSG_RESULT([yes])
239                 AC_DEFINE(HAVE_NETLINK_NL2, 1, [nlmsg_new takes 2 args])
240         ],[
241                 AC_MSG_RESULT([no])
242         ])
243 ],[
244         AC_MSG_RESULT([no])
245 ])
246 ])
247
248 # 2.6.20 API change INIT_WORK use 2 args and not
249 # store data inside
250 AC_DEFUN([LIBCFS_3ARGS_INIT_WORK],
251 [AC_MSG_CHECKING([check INIT_WORK want 3 args])
252 LB_LINUX_TRY_COMPILE([
253         #include <linux/workqueue.h>
254 ],[
255         struct work_struct work;
256
257         INIT_WORK(&work, NULL, NULL);
258 ],[
259         AC_MSG_RESULT(yes)
260         AC_DEFINE(HAVE_3ARGS_INIT_WORK, 1,
261                   [INIT_WORK use 3 args and store data inside])
262 ],[
263         AC_MSG_RESULT(NO)
264 ])
265 ])
266
267 # 2.6.21 api change. 'register_sysctl_table' use only one argument,
268 # instead of more old which need two.
269 AC_DEFUN([LIBCFS_2ARGS_REGISTER_SYSCTL],
270 [AC_MSG_CHECKING([check register_sysctl_table want 2 args])
271 LB_LINUX_TRY_COMPILE([
272         #include <linux/sysctl.h>
273 ],[
274         return register_sysctl_table(NULL,0);
275 ],[
276         AC_MSG_RESULT(yes)
277         AC_DEFINE(HAVE_2ARGS_REGISTER_SYSCTL, 1,
278                   [register_sysctl_table want 2 args])
279 ],[
280         AC_MSG_RESULT(NO)
281 ])
282 ])
283
284 # 2.6.21 marks kmem_cache_t deprecated and uses struct kmem_cache
285 # instead
286 AC_DEFUN([LIBCFS_KMEM_CACHE],
287 [AC_MSG_CHECKING([check kernel has struct kmem_cache])
288 tmp_flags="$EXTRA_KCFLAGS"
289 EXTRA_KCFLAGS="-Werror"
290 LB_LINUX_TRY_COMPILE([
291         #include <linux/slab.h>
292         typedef struct kmem_cache cache_t;
293 ],[
294         cache_t *cachep = NULL;
295
296         kmem_cache_alloc(cachep, 0);
297 ],[
298         AC_MSG_RESULT(yes)
299         AC_DEFINE(HAVE_KMEM_CACHE, 1,
300                   [kernel has struct kmem_cache])
301 ],[
302         AC_MSG_RESULT(NO)
303 ])
304 EXTRA_KCFLAGS="$tmp_flags"
305 ])
306
307 # 2.6.23 lost dtor argument
308 AC_DEFUN([LIBCFS_KMEM_CACHE_CREATE_DTOR],
309 [AC_MSG_CHECKING([check kmem_cache_create has dtor argument])
310 LB_LINUX_TRY_COMPILE([
311         #include <linux/slab.h>
312 ],[
313         kmem_cache_create(NULL, 0, 0, 0, NULL, NULL);
314 ],[
315         AC_MSG_RESULT(yes)
316         AC_DEFINE(HAVE_KMEM_CACHE_CREATE_DTOR, 1,
317                   [kmem_cache_create has dtor argument])
318 ],[
319         AC_MSG_RESULT(NO)
320 ])
321 ])
322
323 #2.6.23 has new shrinker API
324 AC_DEFUN([LC_REGISTER_SHRINKER],
325 [AC_MSG_CHECKING([if kernel has register_shrinker])
326 LB_LINUX_TRY_COMPILE([
327         #include <linux/mm.h>
328 ],[
329         register_shrinker(NULL);
330 ], [
331         AC_MSG_RESULT([yes])
332         AC_DEFINE(HAVE_REGISTER_SHRINKER, 1,
333                 [kernel has register_shrinker])
334 ],[
335         AC_MSG_RESULT([no])
336 ])
337 ])
338
339 # 2.6.24 
340 AC_DEFUN([LIBCFS_NETLINK_CBMUTEX],
341 [AC_MSG_CHECKING([for mutex in netlink_kernel_create])
342 LB_LINUX_TRY_COMPILE([
343         #include <linux/netlink.h>
344 ],[
345         struct mutex *lock = NULL;
346
347         netlink_kernel_create(0, 0, NULL, lock, NULL);
348 ],[
349         AC_MSG_RESULT(yes)
350         AC_DEFINE(HAVE_NETLINK_CBMUTEX, 1,
351                   [netlink_kernel_create want mutex for callback])
352 ],[
353         AC_MSG_RESULT(NO)
354 ])
355 ])
356
357 # 2.6.24 request not use real numbers for ctl_name
358 AC_DEFUN([LIBCFS_SYSCTL_UNNUMBERED],
359 [AC_MSG_CHECKING([for CTL_UNNUMBERED])
360 LB_LINUX_TRY_COMPILE([
361         #include <linux/sysctl.h>
362 ],[
363         #ifndef CTL_UNNUMBERED
364         #error CTL_UNNUMBERED not exist in kernel
365         #endif
366 ],[
367         AC_MSG_RESULT(yes)
368         AC_DEFINE(HAVE_SYSCTL_UNNUMBERED, 1,
369                   [sysctl has CTL_UNNUMBERED])
370 ],[
371         AC_MSG_RESULT(NO)
372 ])
373 ])
374
375 # 2.6.24 lost scatterlist->page
376 AC_DEFUN([LIBCFS_SCATTERLIST_SETPAGE],
377 [AC_MSG_CHECKING([for exist sg_set_page])
378 LB_LINUX_TRY_COMPILE([
379         #include <asm/types.h>
380         #include <linux/scatterlist.h>
381 ],[
382         sg_set_page(NULL,NULL,0,0);
383 ],[
384         AC_MSG_RESULT(yes)
385         AC_DEFINE(HAVE_SCATTERLIST_SETPAGE, 1,
386                   [struct scatterlist has page member])
387 ],[
388         AC_MSG_RESULT(NO)
389 ])
390 ])
391
392 # 2.6.24 
393 AC_DEFUN([LIBCFS_NETWORK_NAMESPACE],
394 [AC_MSG_CHECKING([for network stack has namespaces])
395 LB_LINUX_TRY_COMPILE([
396         #include <net/net_namespace.h>
397 ],[
398         struct net *net = &init_net;
399 ],[
400         AC_MSG_RESULT(yes)
401         AC_DEFINE(HAVE_INIT_NET, 1,
402                   [kernel is support network namespaces ])
403 ],[
404         AC_MSG_RESULT(NO)
405 ])
406 ])
407
408
409 # 2.6.24 
410 AC_DEFUN([LIBCFS_NETLINK_NETNS],
411 [AC_MSG_CHECKING([for netlink support net ns])
412 LB_LINUX_TRY_COMPILE([
413         #include <linux/netlink.h>
414 ],[
415         struct net *net = NULL;
416         struct mutex *lock = NULL;
417
418         netlink_kernel_create(net, 0, 0, NULL,
419                               lock,
420                               NULL);
421 ],[
422         AC_MSG_RESULT(yes)
423         AC_DEFINE(HAVE_NETLINK_NS, 1,
424                   [netlink is support network namespace])
425 # XXX
426 # for now - if kernel have netlink ns - he uses cbmutex
427         AC_DEFINE(HAVE_NETLINK_CBMUTEX, 1,
428                   [netlink_kernel_create want mutex for callback])
429
430 ],[
431         AC_MSG_RESULT(NO)
432 ])
433 ])
434
435 # ~2.6.24
436 AC_DEFUN([LIBCFS_NL_BROADCAST_GFP],
437 [AC_MSG_CHECKING([for netlink_broadcast is want to have gfp parameter])
438 LB_LINUX_TRY_COMPILE([
439         #include <linux/netlink.h>
440 ],[
441         gfp_t gfp = GFP_KERNEL;
442
443         netlink_broadcast(NULL, NULL, 0, 0, gfp);
444 ],[
445         AC_MSG_RESULT(yes)
446         AC_DEFINE(HAVE_NL_BROADCAST_GFP, 1,
447                   [netlink brouacast is want to have gfp paramter])
448 ],[
449         AC_MSG_RESULT(NO)
450 ])
451 ])
452
453 #
454 # LIBCFS_FUNC_DUMP_TRACE
455 #
456 # 2.6.23 exports dump_trace() so we can dump_stack() on any task
457 # 2.6.24 has stacktrace_ops.address with "reliable" parameter
458 #
459 AC_DEFUN([LIBCFS_FUNC_DUMP_TRACE],
460 [LB_CHECK_SYMBOL_EXPORT([dump_trace],
461 [kernel/ksyms.c arch/${LINUX_ARCH%_64}/kernel/traps_64.c arch/x86/kernel/dumpstack_32.c arch/x86/kernel/dumpstack_64.c],[
462         tmp_flags="$EXTRA_KCFLAGS"
463         EXTRA_KCFLAGS="-Werror"
464         AC_MSG_CHECKING([whether we can really use dump_trace])
465         LB_LINUX_TRY_COMPILE([
466                 struct task_struct;
467                 struct pt_regs;
468                 #include <asm/stacktrace.h>
469         ],[
470         ],[
471                 AC_MSG_RESULT(yes)
472                 AC_DEFINE(HAVE_DUMP_TRACE, 1, [dump_trace is exported])
473         ],[
474                 AC_MSG_RESULT(no)
475         ],[
476         ])
477         AC_MSG_CHECKING([whether print_trace_address has reliable argument])
478         LB_LINUX_TRY_COMPILE([
479                 struct task_struct;
480                 struct pt_regs;
481                 #include <asm/stacktrace.h>
482         ],[
483                 ((struct stacktrace_ops *)0)->address(NULL, 0, 0);
484         ],[
485                 AC_MSG_RESULT(yes)
486                 AC_DEFINE(HAVE_TRACE_ADDRESS_RELIABLE, 1,
487                           [print_trace_address has reliable argument])
488         ],[
489                 AC_MSG_RESULT(no)
490         ],[
491         ])
492         AC_MSG_CHECKING([dump_trace want address])
493         LB_LINUX_TRY_COMPILE([
494                 struct task_struct;
495                 struct pt_regs;
496                 #include <asm/stacktrace.h>
497         ],[
498                 dump_trace(NULL, NULL, NULL, 0, NULL, NULL);
499         ],[
500                 AC_MSG_RESULT(yes)
501                 AC_DEFINE(HAVE_DUMP_TRACE_ADDRESS, 1,
502                           [dump_trace want address argument])
503         ],[
504                 AC_MSG_RESULT(no)
505         ],[
506         ])
507
508 EXTRA_KCFLAGS="$tmp_flags"
509 ])
510 ])
511
512
513 # 2.6.26 use int instead of atomic for sem.count
514 AC_DEFUN([LIBCFS_SEM_COUNT],
515 [AC_MSG_CHECKING([atomic sem.count])
516 LB_LINUX_TRY_COMPILE([
517         #include <asm/semaphore.h>
518 ],[
519         struct semaphore s;
520         
521         atomic_read(&s.count);
522 ],[
523         AC_MSG_RESULT(yes)
524         AC_DEFINE(HAVE_SEM_COUNT_ATOMIC, 1,
525                   [semaphore counter is atomic])
526 ],[
527         AC_MSG_RESULT(NO)
528 ])
529 ])
530
531 # 2.6.27 have second argument to sock_map_fd
532 AC_DEFUN([LIBCFS_SOCK_MAP_FD_2ARG],
533 [AC_MSG_CHECKING([sock_map_fd have second argument])
534 LB_LINUX_TRY_COMPILE([
535         #include <linux/net.h>
536 ],[
537         sock_map_fd(NULL, 0);
538 ],[
539         AC_MSG_RESULT(yes)
540         AC_DEFINE(HAVE_SOCK_MAP_FD_2ARG, 1,
541                   [sock_map_fd have second argument])
542 ],[
543         AC_MSG_RESULT(NO)
544 ])
545 ])
546
547 # LIBCFS_CRED_WRAPPERS
548 #
549 # wrappers for task's credentials are in sles11
550 #
551 AC_DEFUN([LIBCFS_CRED_WRAPPERS],
552 [AC_MSG_CHECKING([if kernel has wrappers for task's credentials])
553 LB_LINUX_TRY_COMPILE([
554        #include <linux/sched.h>
555 ],[
556        uid_t uid;
557
558        uid = current_uid() + sizeof(uid);
559 ],[
560        AC_MSG_RESULT([yes])
561        AC_DEFINE(HAVE_CRED_WRAPPERS, 1, [task's cred wrappers found])
562 ],[
563        AC_MSG_RESULT([no])
564 ])
565 ])
566
567 #
568 # LN_STRUCT_CRED_IN_TASK
569 #
570 # struct cred was introduced in 2.6.29 to streamline credentials in task struct
571 #
572 AC_DEFUN([LIBCFS_STRUCT_CRED_IN_TASK],
573 [AC_MSG_CHECKING([if kernel has struct cred])
574 LB_LINUX_TRY_COMPILE([
575        #include <linux/sched.h>
576 ],[
577        struct task_struct *tsk = NULL;
578        tsk->real_cred = NULL;
579 ],[
580        AC_MSG_RESULT([yes])
581        AC_DEFINE(HAVE_STRUCT_CRED, 1, [struct cred found])
582 ],[
583        AC_MSG_RESULT([no])
584 ])
585 ])
586
587 #
588 # LIBCFS_FUNC_UNSHARE_FS_STRUCT
589 #
590 # unshare_fs_struct was introduced in 2.6.30 to prevent others to directly
591 # mess with copy_fs_struct
592 #
593 AC_DEFUN([LIBCFS_FUNC_UNSHARE_FS_STRUCT],
594 [AC_MSG_CHECKING([if kernel defines unshare_fs_struct()])
595 tmp_flags="$EXTRA_KCFLAGS"
596 EXTRA_KCFLAGS="-Werror"
597 LB_LINUX_TRY_COMPILE([
598        #include <linux/sched.h>
599        #include <linux/fs_struct.h>
600 ],[
601        unshare_fs_struct();
602 ],[
603        AC_MSG_RESULT([yes])
604        AC_DEFINE(HAVE_UNSHARE_FS_STRUCT, 1, [unshare_fs_struct found])
605 ],[
606        AC_MSG_RESULT([no])
607 ])
608 EXTRA_KCFLAGS="$tmp_flags"
609 ])
610
611 #
612 # LIBCFS_HAVE_IS_COMPAT_TASK
613 #
614 # Added in 2.6.17, it wasn't until 2.6.29 that all
615 # Linux architectures have is_compat_task()
616 #
617 AC_DEFUN([LIBCFS_HAVE_IS_COMPAT_TASK],
618 [AC_MSG_CHECKING([if is_compat_task() is declared])
619 LB_LINUX_TRY_COMPILE([
620         #include <linux/compat.h>
621 ],[
622         int i = is_compat_task();
623 ],[
624         AC_MSG_RESULT([yes])
625         AC_DEFINE(HAVE_IS_COMPAT_TASK, 1, [is_compat_task() is available])
626 ],[
627         AC_MSG_RESULT([no])
628 ])
629 ])
630
631 #
632 # LIBCFS_STACKTRACE_OPS_HAVE_WALK_STACK
633 #
634 # 2.6.32-30.el6 adds a new 'walk_stack' field in 'struct stacktrace_ops'
635 #
636 AC_DEFUN([LIBCFS_STACKTRACE_OPS_HAVE_WALK_STACK],
637 [AC_MSG_CHECKING([if 'struct stacktrace_ops' has 'walk_stack' field])
638 LB_LINUX_TRY_COMPILE([
639         #include <asm/stacktrace.h>
640 ],[
641         ((struct stacktrace_ops *)0)->walk_stack(NULL, NULL, 0, NULL, NULL, NULL, NULL);
642 ],[
643         AC_MSG_RESULT([yes])
644         AC_DEFINE(STACKTRACE_OPS_HAVE_WALK_STACK, 1, ['struct stacktrace_ops' has 'walk_stack' field])
645 ],[
646         AC_MSG_RESULT([no])
647 ])
648 ])
649
650 AC_DEFUN([LIBCFS_HAVE_OOM_H],
651 [LB_CHECK_FILE([$LINUX/include/linux/oom.h], [
652         AC_DEFINE(HAVE_LINUX_OOM_H, 1,
653                 [kernel has include/oom.h])
654 ],[
655         AC_MSG_RESULT([no])
656 ])
657 ])
658
659 #
660 # RHEL6/2.6.32 want to have pointer to shrinker self pointer in handler function
661 #
662 AC_DEFUN([LC_SHRINKER_WANT_SHRINK_PTR],
663 [AC_MSG_CHECKING([shrinker want self pointer in handler])
664 LB_LINUX_TRY_COMPILE([
665         #include <linux/mm.h>
666 ],[
667         struct shrinker *tmp = NULL;
668         tmp->shrink(tmp, 0, 0);
669 ],[
670         AC_MSG_RESULT(yes)
671         AC_DEFINE(HAVE_SHRINKER_WANT_SHRINK_PTR, 1,
672                   [shrinker want self pointer in handler])
673 ],[
674         AC_MSG_RESULT(no)
675 ])
676 ])
677
678 # 2.6.18 store oom parameters in task struct.
679 # 2.6.32 store oom parameters in signal struct
680 AC_DEFUN([LIBCFS_OOMADJ_IN_SIG],
681 [AC_MSG_CHECKING([kernel store oom parameters in task])
682 LB_LINUX_TRY_COMPILE([
683         #include <linux/sched.h>
684 ],[
685         ((struct signal_struct *)0)->oom_adj = 0;
686 ],[
687         AC_MSG_RESULT(yes)
688         AC_DEFINE(HAVE_OOMADJ_IN_SIG, 1,
689                   [kernel store a oom parameters in signal struct])
690 ],[
691         AC_MSG_RESULT(no)
692 ])
693 ])
694
695 #
696 # 2.6.33 no longer has ctl_name & strategy field in struct ctl_table.
697 #
698 AC_DEFUN([LIBCFS_SYSCTL_CTLNAME],
699 [AC_MSG_CHECKING([if ctl_table has a ctl_name field])
700 LB_LINUX_TRY_COMPILE([
701         #include <linux/sysctl.h>
702 ],[
703         struct ctl_table ct;
704         ct.ctl_name = sizeof(ct);
705 ],[
706         AC_MSG_RESULT(yes)
707         AC_DEFINE(HAVE_SYSCTL_CTLNAME, 1,
708                   [ctl_table has ctl_name field])
709 ],[
710         AC_MSG_RESULT(no)
711 ])
712 ])
713
714 #
715 # LIBCFS_ADD_WAIT_QUEUE_EXCLUSIVE
716 #
717 # 2.6.34 adds __add_wait_queue_exclusive
718 #
719 AC_DEFUN([LIBCFS_ADD_WAIT_QUEUE_EXCLUSIVE],
720 [AC_MSG_CHECKING([if __add_wait_queue_exclusive exists])
721 LB_LINUX_TRY_COMPILE([
722         #include <linux/wait.h>
723 ],[
724         wait_queue_head_t queue;
725         wait_queue_t      wait;
726
727         __add_wait_queue_exclusive(&queue, &wait);
728 ],[
729         AC_MSG_RESULT(yes)
730         AC_DEFINE(HAVE___ADD_WAIT_QUEUE_EXCLUSIVE, 1,
731                   [__add_wait_queue_exclusive exists])
732 ],[
733         AC_MSG_RESULT(no)
734 ])
735 ])
736
737
738 #
739 # FC15 2.6.40-5 backported the "shrink_control" parameter to the memory
740 # pressure shrinker from Linux 3.0
741 #
742 AC_DEFUN([LC_SHRINK_CONTROL],
743 [AC_MSG_CHECKING([shrink_control is present])
744 LB_LINUX_TRY_COMPILE([
745         #include <linux/mm.h>
746 ],[
747         struct shrink_control tmp = {0};
748         tmp.nr_to_scan = sizeof(tmp);
749 ],[
750         AC_MSG_RESULT(yes)
751         AC_DEFINE(HAVE_SHRINK_CONTROL, 1,
752                   [shrink_control is present])
753 ],[
754         AC_MSG_RESULT(no)
755 ])
756 ])
757
758 #
759 # LIBCFS_PROG_LINUX
760 #
761 # LNet linux kernel checks
762 #
763 AC_DEFUN([LIBCFS_PROG_LINUX],
764 [
765 LIBCFS_FUNC_CPU_ONLINE
766 LIBCFS_TYPE_GFP_T
767 LIBCFS_CONFIG_PANIC_DUMPLOG
768
769 LIBCFS_FUNC_SHOW_TASK
770 LIBCFS_U64_LONG_LONG_LINUX
771 LIBCFS_TASK_RCU
772 # 2.6.18
773 LIBCFS_TASKLIST_LOCK
774 LIBCFS_HAVE_IS_COMPAT_TASK
775 # 2.6.19
776 LIBCFS_NETLINK
777 LIBCFS_NLMSG_MULTICAST
778 LIBCFS_KMEM_CACHE_DESTROY_INT
779 LIBCFS_ATOMIC_PANIC_NOTIFIER
780 # 2.6.20
781 LIBCFS_3ARGS_INIT_WORK
782 # 2.6.21
783 LIBCFS_2ARGS_REGISTER_SYSCTL
784 LIBCFS_KMEM_CACHE
785 # 2.6.23
786 LIBCFS_KMEM_CACHE_CREATE_DTOR
787 LIBCFS_NETLINK_CBMUTEX
788 LC_REGISTER_SHRINKER
789 # 2.6.24
790 LIBCFS_SYSCTL_UNNUMBERED
791 LIBCFS_SCATTERLIST_SETPAGE
792 LIBCFS_NL_BROADCAST_GFP
793 LIBCFS_NETWORK_NAMESPACE
794 LIBCFS_NETLINK_NETNS
795 LIBCFS_FUNC_DUMP_TRACE
796 # 2.6.26
797 LIBCFS_SEM_COUNT
798 # 2.6.27
799 LIBCFS_CRED_WRAPPERS
800 # 2.6.29
801 LIBCFS_STRUCT_CRED_IN_TASK
802 # 2.6.30
803 LIBCFS_FUNC_UNSHARE_FS_STRUCT
804 LIBCFS_SOCK_MAP_FD_2ARG
805 # 2.6.32
806 LIBCFS_STACKTRACE_OPS_HAVE_WALK_STACK
807 LC_SHRINKER_WANT_SHRINK_PTR
808 LIBCFS_HAVE_OOM_H
809 LIBCFS_OOMADJ_IN_SIG
810 # 2.6.33
811 LIBCFS_SYSCTL_CTLNAME
812 # 2.6.34
813 LIBCFS_ADD_WAIT_QUEUE_EXCLUSIVE
814 # 2.6.40 fc15
815 LC_SHRINK_CONTROL
816 ])
817
818 #
819 # LIBCFS_PROG_DARWIN
820 #
821 # Darwin checks
822 #
823 AC_DEFUN([LIBCFS_PROG_DARWIN],
824 [LB_DARWIN_CHECK_FUNCS([get_preemption_level])
825 ])
826
827 #
828 # LIBCFS_PATH_DEFAULTS
829 #
830 # default paths for installed files
831 #
832 AC_DEFUN([LIBCFS_PATH_DEFAULTS],
833 [
834 ])
835
836 #
837 # LIBCFS_CONFIGURE
838 #
839 # other configure checks
840 #
841 AC_DEFUN([LIBCFS_CONFIGURE],
842 [# lnet/utils/portals.c
843 AC_CHECK_HEADERS([asm/types.h endian.h sys/ioctl.h])
844
845 # lnet/utils/debug.c
846 AC_CHECK_HEADERS([linux/version.h])
847
848 AC_CHECK_TYPE([spinlock_t],
849         [AC_DEFINE(HAVE_SPINLOCK_T, 1, [spinlock_t is defined])],
850         [],
851         [#include <linux/spinlock.h>])
852
853 # lnet/utils/wirecheck.c
854 AC_CHECK_FUNCS([strnlen])
855
856 AC_CHECK_TYPE([umode_t],
857         [AC_DEFINE(HAVE_UMODE_T, 1, [umode_t is defined])],
858         [],
859         [#include <asm/types.h>])
860
861 AC_CHECK_TYPE([__s8],
862         [AC_DEFINE(HAVE___S8, 1, [__s8 is defined])],
863         [],
864         [#include <asm/types.h>])
865
866 AC_CHECK_TYPE([__u8],
867         [AC_DEFINE(HAVE___U8, 1, [__u8 is defined])],
868         [],
869         [#include <asm/types.h>])
870
871 AC_CHECK_TYPE([__s16],
872         [AC_DEFINE(HAVE___S16, 1, [__s16 is defined])],
873         [],
874         [#include <asm/types.h>])
875
876 AC_CHECK_TYPE([__u16],
877         [AC_DEFINE(HAVE___U16, 1, [__u16 is defined])],
878         [],
879         [#include <asm/types.h>])
880
881 AC_CHECK_TYPE([__s32],
882         [AC_DEFINE(HAVE___S32, 1, [__s32 is defined])],
883         [],
884         [#include <asm/types.h>])
885
886 AC_CHECK_TYPE([__u32],
887         [AC_DEFINE(HAVE___U32, 1, [__u32 is defined])],
888         [],
889         [#include <asm/types.h>])
890
891 AC_CHECK_TYPE([__u64],
892         [AC_DEFINE(HAVE___U64, 1, [__u64 is defined])],
893         [],
894         [#include <asm/types.h>])
895
896 AC_CHECK_TYPE([__s64],
897         [AC_DEFINE(HAVE___S64, 1, [__s64 is defined])],
898         [],
899         [#include <asm/types.h>])
900
901 # check userland __u64 type
902 AC_MSG_CHECKING([userspace __u64 is long long type])
903 tmp_flags="$CFLAGS"
904 CFLAGS="$CFLAGS -Werror"
905 AC_COMPILE_IFELSE([
906         #include <stdio.h>
907         #include <linux/types.h>
908         #include <linux/stddef.h>
909         int main(void) {
910                 unsigned long long *data1;
911                 __u64 *data2 = NULL;
912
913                 data1 = data2;
914                 return 0;
915         }
916 ],[
917         AC_MSG_RESULT([yes])
918         AC_DEFINE(HAVE_USER__U64_LONG_LONG, 1,
919                   [__u64 is long long type])
920 ],[
921         AC_MSG_RESULT([no])
922 ])
923 CFLAGS="$tmp_flags"
924
925 # --------  Check for required packages  --------------
926
927
928 AC_MSG_CHECKING([if efence debugging support is requested])
929 AC_ARG_ENABLE(efence,
930         AC_HELP_STRING([--enable-efence],
931                         [use efence library]),
932         [],[enable_efence='no'])
933 AC_MSG_RESULT([$enable_efence])
934 if test "$enable_efence" = "yes" ; then
935         LIBEFENCE="-lefence"
936         AC_DEFINE(HAVE_LIBEFENCE, 1, [libefence support is requested])
937 else
938         LIBEFENCE=""
939 fi
940 AC_SUBST(LIBEFENCE)
941
942
943 # -------- check for -lpthread support ----
944 AC_MSG_CHECKING([whether to use libpthread for libcfs library])
945 AC_ARG_ENABLE([libpthread],
946         AC_HELP_STRING([--disable-libpthread],
947                 [disable libpthread]),
948         [],[enable_libpthread=yes])
949 if test "$enable_libpthread" = "yes" ; then
950         AC_CHECK_LIB([pthread], [pthread_create],
951                 [ENABLE_LIBPTHREAD="yes"],
952                 [ENABLE_LIBPTHREAD="no"])
953         if test "$ENABLE_LIBPTHREAD" = "yes" ; then
954                 AC_MSG_RESULT([$ENABLE_LIBPTHREAD])
955                 PTHREAD_LIBS="-lpthread"
956                 AC_DEFINE([HAVE_LIBPTHREAD], 1, [use libpthread])
957         else
958                 PTHREAD_LIBS=""
959                 AC_MSG_RESULT([no libpthread is found])
960         fi
961         AC_SUBST(PTHREAD_LIBS)
962 else
963         AC_MSG_RESULT([no (disabled explicitly)])
964         ENABLE_LIBPTHREAD="no"
965 fi
966 AC_SUBST(ENABLE_LIBPTHREAD)
967
968
969 ])
970
971 #
972 # LIBCFS_CONDITIONALS
973 #
974 # AM_CONDITOINAL defines for lnet
975 #
976 AC_DEFUN([LIBCFS_CONDITIONALS],
977 [
978 ])
979
980 #
981 # LIBCFS_CONFIG_FILES
982 #
983 # files that should be generated with AC_OUTPUT
984 #
985 AC_DEFUN([LIBCFS_CONFIG_FILES],
986 [AC_CONFIG_FILES([
987 libcfs/Kernelenv
988 libcfs/Makefile
989 libcfs/autoMakefile
990 libcfs/autoconf/Makefile
991 libcfs/include/Makefile
992 libcfs/include/libcfs/Makefile
993 libcfs/include/libcfs/linux/Makefile
994 libcfs/include/libcfs/posix/Makefile
995 libcfs/include/libcfs/util/Makefile
996 libcfs/libcfs/Makefile
997 libcfs/libcfs/autoMakefile
998 libcfs/libcfs/linux/Makefile
999 libcfs/libcfs/posix/Makefile
1000 libcfs/libcfs/util/Makefile
1001 libcfs/include/libcfs/darwin/Makefile
1002 libcfs/libcfs/darwin/Makefile
1003 ])
1004 ])