Whamcloud - gitweb
LU-13117 libcfs: fix to match right key in cfs_get_environ()
[fs/lustre-release.git] / libcfs / autoconf / lustre-libcfs.m4
1 #
2 # LIBCFS_CONFIG_CDEBUG
3 #
4 # whether to enable various libcfs debugs (CDEBUG, ENTRY/EXIT, LASSERT, etc.)
5 #
6 AC_DEFUN([LIBCFS_CONFIG_CDEBUG], [
7 AC_MSG_CHECKING([whether to enable CDEBUG, CWARN])
8 AC_ARG_ENABLE([libcfs_cdebug],
9         AC_HELP_STRING([--disable-libcfs-cdebug],
10                 [disable libcfs CDEBUG, CWARN]),
11         [], [enable_libcfs_cdebug="yes"])
12 AC_MSG_RESULT([$enable_libcfs_cdebug])
13 AS_IF([test "x$enable_libcfs_cdebug" = xyes],
14         [AC_DEFINE(CDEBUG_ENABLED, 1, [enable libcfs CDEBUG, CWARN])])
15
16 AC_MSG_CHECKING([whether to enable ENTRY/EXIT])
17 AC_ARG_ENABLE([libcfs_trace],
18         AC_HELP_STRING([--disable-libcfs-trace],
19                 [disable libcfs ENTRY/EXIT]),
20         [], [enable_libcfs_trace="yes"])
21 AC_MSG_RESULT([$enable_libcfs_trace])
22 AS_IF([test "x$enable_libcfs_trace" = xyes],
23         [AC_DEFINE(CDEBUG_ENTRY_EXIT, 1, [enable libcfs ENTRY/EXIT])])
24
25 AC_MSG_CHECKING([whether to enable LASSERT, LASSERTF])
26 AC_ARG_ENABLE([libcfs_assert],
27         AC_HELP_STRING([--disable-libcfs-assert],
28                 [disable libcfs LASSERT, LASSERTF]),
29         [], [enable_libcfs_assert="yes"])
30 AC_MSG_RESULT([$enable_libcfs_assert])
31 AS_IF([test x$enable_libcfs_assert = xyes],
32         [AC_DEFINE(LIBCFS_DEBUG, 1, [enable libcfs LASSERT, LASSERTF])])
33 ]) # LIBCFS_CONFIG_CDEBUG
34
35 #
36 # LIBCFS_CONFIG_PANIC_DUMPLOG
37 #
38 # check if tunable panic_dumplog is wanted
39 #
40 AC_DEFUN([LIBCFS_CONFIG_PANIC_DUMPLOG], [
41 AC_MSG_CHECKING([whether to use tunable 'panic_dumplog' support])
42 AC_ARG_ENABLE([panic_dumplog],
43         AC_HELP_STRING([--enable-panic_dumplog],
44                 [enable panic_dumplog]),
45         [], [enable_panic_dumplog="no"])
46 AC_MSG_RESULT([$enable_panic_dumplog])
47 AS_IF([test "x$enable_panic_dumplog" = xyes],
48         [AC_DEFINE(LNET_DUMP_ON_PANIC, 1, [use dumplog on panic])])
49 ]) # LIBCFS_CONFIG_PANIC_DUMPLOG
50
51 #
52 # Kernel version 3.11 introduced ktime_get_ts64
53 #
54 AC_DEFUN([LIBCFS_KTIME_GET_TS64],[
55 LB_CHECK_COMPILE([does function 'ktime_get_ts64' exist],
56 ktime_get_ts64, [
57         #include <linux/hrtimer.h>
58         #include <linux/ktime.h>
59 ],[
60         struct timespec64 *ts = NULL;
61
62         ktime_get_ts64(ts);
63 ],[
64         AC_DEFINE(HAVE_KTIME_GET_TS64, 1,
65                 ['ktime_get_ts64' is available])
66 ])
67 ]) # LIBCFS_KTIME_GET_TS64
68
69 #
70 # Kernel version 3.12-rc4 commit c2d816443ef30 added prepare_to_wait_event()
71 #
72 AC_DEFUN([LIBCFS_PREPARE_TO_WAIT_EVENT],[
73 LB_CHECK_COMPILE([does function 'prepare_to_wait_event' exist],
74 prepare_to_wait_event, [
75         #include <linux/wait.h>
76 ],[
77         prepare_to_wait_event(NULL, NULL, 0);
78 ],[
79         AC_DEFINE(HAVE_PREPARE_TO_WAIT_EVENT, 1,
80                 ['prepare_to_wait_event' is available])
81 ])
82 ]) # LIBCFS_PREPARE_TO_WAIT_EVENT
83
84 #
85 # Linux kernel 3.12 introduced struct kernel_param_ops
86 # This has been backported to all lustre supported
87 # clients except RHEL6. We have to handle the differences.
88 #
89 AC_DEFUN([LIBCFS_KERNEL_PARAM_OPS],[
90 LB_CHECK_COMPILE([does 'struct kernel_param_ops' exist],
91 kernel_param_ops, [
92         #include <linux/module.h>
93 ],[
94         struct kernel_param_ops ops;
95
96         ops.set = NULL;
97 ],[
98         AC_DEFINE(HAVE_KERNEL_PARAM_OPS, 1,
99                 ['struct kernel_param_ops' is available])
100 ])
101 ]) # LIBCFS_KERNEL_PARAM_OPS
102
103 #
104 # Kernel version 3.12 introduced ktime_add
105 #
106 AC_DEFUN([LIBCFS_KTIME_ADD],[
107 LB_CHECK_COMPILE([does function 'ktime_add' exist],
108 ktime_add, [
109         #include <linux/hrtimer.h>
110         #include <linux/ktime.h>
111 ],[
112         ktime_t start = ktime_set(0, 0);
113         ktime_t end = start;
114         ktime_t total;
115
116         total = ktime_add(start, end);
117 ],[
118         AC_DEFINE(HAVE_KTIME_ADD, 1,
119                 [ktime_add is available])
120 ])
121 ]) # LIBCFS_KTIME_ADD
122
123 #
124 # Kernel version 3.12 introduced ktime_after
125 #
126 AC_DEFUN([LIBCFS_KTIME_AFTER],[
127 LB_CHECK_COMPILE([does function 'ktime_after' exist],
128 ktime_after, [
129         #include <linux/hrtimer.h>
130         #include <linux/ktime.h>
131 ],[
132         ktime_t start = ktime_set(0, 0);
133         ktime_t end = start;
134
135         ktime_after(start, end);
136 ],[
137         AC_DEFINE(HAVE_KTIME_AFTER, 1,
138                 [ktime_after is available])
139 ])
140 ]) # LIBCFS_KTIME_AFTER
141
142 #
143 # Kernel version 3.12 introduced ktime_before
144 # See linux commit 67cb9366ff5f99868100198efba5ca88aaa6ad25
145 #
146 AC_DEFUN([LIBCFS_KTIME_BEFORE],[
147 LB_CHECK_COMPILE([does function 'ktime_before' exist],
148 ktime_before, [
149         #include <linux/hrtimer.h>
150         #include <linux/ktime.h>
151 ],[
152         ktime_t start = ktime_set(0, 0);
153         ktime_t end = start;
154
155         ktime_before(start, end);
156 ],[
157         AC_DEFINE(HAVE_KTIME_BEFORE, 1,
158                 [ktime_before is available])
159 ])
160 ]) # LIBCFS_KTIME_BEFORE
161
162 #
163 # Kernel version 3.12 introduced ktime_compare
164 #
165 AC_DEFUN([LIBCFS_KTIME_COMPARE],[
166 LB_CHECK_COMPILE([does function 'ktime_compare' exist],
167 ktime_compare, [
168         #include <linux/hrtimer.h>
169         #include <linux/ktime.h>
170 ],[
171         ktime_t start = ktime_set(0, 0);
172         ktime_t end = start;
173
174         ktime_compare(start, end);
175 ],[
176         AC_DEFINE(HAVE_KTIME_COMPARE, 1,
177                 [ktime_compare is available])
178 ])
179 ]) # LIBCFS_KTIME_COMPARE
180
181 #
182 # FC19 3.12 kernel struct shrinker change
183 #
184 AC_DEFUN([LIBCFS_SHRINKER_COUNT],[
185 LB_CHECK_COMPILE([shrinker has 'count_objects'],
186 shrinker_count_objects, [
187         #include <linux/mmzone.h>
188         #include <linux/shrinker.h>
189 ],[
190         struct shrinker shrinker;
191
192         shrinker.count_objects = NULL;
193 ],[
194         AC_DEFINE(HAVE_SHRINKER_COUNT, 1,
195                 [shrinker has count_objects member])
196 ])
197 ]) # LIBCFS_SHRINKER_COUNT
198
199 #
200 # LIBCFS_IOV_ITER_HAS_TYPE
201 #
202 # kernel 3.15-rc4 commit 71d8e532b1549a478e6a6a8a44f309d050294d00
203 # start adding the tag to iov_iter
204 #
205 AC_DEFUN([LIBCFS_IOV_ITER_HAS_TYPE], [
206 tmp_flags="$EXTRA_KCFLAGS"
207 EXTRA_KCFLAGS="-Werror"
208 LB_CHECK_COMPILE([if iov_iter has member type],
209 iov_iter_has_type_member, [
210         #include <linux/uio.h>
211 ],[
212         struct iov_iter iter = { .type = ITER_KVEC };
213         (void)iter;
214 ],[
215         AC_DEFINE(HAVE_IOV_ITER_HAS_TYPE_MEMBER, 1,
216                 [if iov_iter has member type])
217 ])
218 EXTRA_KCFLAGS="$tmp_flags"
219 ]) # LIBCFS_IOV_ITER_HAS_TYPE
220
221 #
222 # Kernel version 3.17 changed hlist_add_after to
223 # hlist_add_behind
224 #
225 AC_DEFUN([LIBCFS_HLIST_ADD_AFTER],[
226 LB_CHECK_COMPILE([does function 'hlist_add_after' exist],
227 hlist_add_after, [
228         #include <linux/list.h>
229 ],[
230         hlist_add_after(NULL, NULL);
231 ],[
232         AC_DEFINE(HAVE_HLIST_ADD_AFTER, 1,
233                 [hlist_add_after is available])
234 ])
235 ]) # LIBCFS_HLIST_ADD_AFTER
236
237 #
238 # Kernel version 3.17 introduced struct timespec64
239 #
240 AC_DEFUN([LIBCFS_TIMESPEC64],[
241 LB_CHECK_COMPILE([does 'struct timespec64' exist],
242 timespec64, [
243         #include <linux/time.h>
244 ],[
245         struct timespec64 ts;
246
247         ts.tv_sec = 0;
248         ts.tv_nsec = 0;
249 ],[
250         AC_DEFINE(HAVE_TIMESPEC64, 1,
251                 ['struct timespec64' is available])
252 ])
253 ]) # LIBCFS_TIMESPEC64
254
255 #
256 # Kernel version 3.17 introduced ktime_get_real_ts64
257 #
258 AC_DEFUN([LIBCFS_KTIME_GET_REAL_TS64],[
259 LB_CHECK_COMPILE([does function 'ktime_get_real_ts64' exist],
260 ktime_get_real_ts64, [
261         #include <linux/ktime.h>
262 ],[
263         struct timespec64 *ts = NULL;
264
265         ktime_get_real_ts64(ts);
266 ],[
267         AC_DEFINE(HAVE_KTIME_GET_REAL_TS64, 1,
268                 ['ktime_get_real_ts64' is available])
269 ])
270 ]) # LIBCFS_KTIME_GET_REAL_TS64
271
272 #
273 # Kernel version 3.17 introduced ktime_get_real_seconds
274 #
275 AC_DEFUN([LIBCFS_KTIME_GET_REAL_SECONDS],[
276 LB_CHECK_COMPILE([does function 'ktime_get_real_seconds' exist],
277 ktime_get_real_seconds, [
278         #include <linux/hrtimer.h>
279         #include <linux/ktime.h>
280 ],[
281         time64_t now;
282
283         now = ktime_get_real_seconds();
284 ],[
285         AC_DEFINE(HAVE_KTIME_GET_REAL_SECONDS, 1,
286                 ['ktime_get_real_seconds' is available])
287 ])
288 ]) # LIBCFS_KTIME_GET_REAL_SECONDS
289
290 #
291 # Kernel version 3.17 created ktime_get_ns wrapper
292 #
293 AC_DEFUN([LIBCFS_KTIME_GET_NS],[
294 LB_CHECK_COMPILE([does function 'ktime_get_ns' exist],
295 ktime_get_ns, [
296         #include <linux/hrtimer.h>
297         #include <linux/ktime.h>
298 ],[
299         u64 nanoseconds;
300
301         nanoseconds = ktime_get_ns();
302 ],[],[
303         AC_DEFINE(NEED_KTIME_GET_NS, 1,
304                 ['ktime_get_ns' is not available])
305 ])
306 ]) # LIBCFS_KTIME_GET_NS
307
308 #
309 # Kernel version 3.17 created ktime_get_real_ns wrapper
310 #
311 AC_DEFUN([LIBCFS_KTIME_GET_REAL_NS],[
312 LB_CHECK_COMPILE([does function 'ktime_get_real_ns' exist],
313 ktime_get_real_ns, [
314         #include <linux/hrtimer.h>
315         #include <linux/ktime.h>
316 ],[
317         u64 nanoseconds;
318
319         nanoseconds = ktime_get_real_ns();
320 ],[],[
321         AC_DEFINE(NEED_KTIME_GET_REAL_NS, 1,
322                 ['ktime_get_real_ns' is not available])
323 ])
324 ]) # LIBCFS_KTIME_GET_REAL_NS
325
326 #
327 # Kernel version 3.17 introduced ktime_to_timespec64
328 #
329 AC_DEFUN([LIBCFS_KTIME_TO_TIMESPEC64],[
330 LB_CHECK_COMPILE([does function 'ktime_to_timespec64' exist],
331 ktime_to_timespec64, [
332         #include <linux/hrtimer.h>
333         #include <linux/ktime.h>
334 ],[
335         ktime_t now = ktime_set(0, 0);
336         struct timespec64 ts;
337
338         ts = ktime_to_timespec64(now);
339 ],[
340         AC_DEFINE(HAVE_KTIME_TO_TIMESPEC64, 1,
341                 ['ktime_to_timespec64' is available])
342 ])
343 ]) # LIBCFS_KTIME_TO_TIMESPEC64
344
345 #
346 # Kernel version 3.17 introduced timespec64_sub
347 #
348 AC_DEFUN([LIBCFS_TIMESPEC64_SUB],[
349 LB_CHECK_COMPILE([does function 'timespec64_sub' exist],
350 timespec64_sub, [
351         #include <linux/time.h>
352 ],[
353         struct timespec64 later = { }, earlier = { }, diff;
354
355         diff = timespec64_sub(later, earlier);
356 ],[
357         AC_DEFINE(HAVE_TIMESPEC64_SUB, 1,
358                 ['timespec64_sub' is available])
359 ])
360 ]) # LIBCFS_TIMESPEC64_SUB
361
362 #
363 # Kernel version 3.17 introduced timespec64_to_ktime
364 #
365 AC_DEFUN([LIBCFS_TIMESPEC64_TO_KTIME],[
366 LB_CHECK_COMPILE([does function 'timespec64_to_ktime' exist],
367 timespec64_to_ktime, [
368         #include <linux/ktime.h>
369 ],[
370         struct timespec64 ts;
371         ktime_t now;
372
373         now = timespec64_to_ktime(ts);
374 ],[
375         AC_DEFINE(HAVE_TIMESPEC64_TO_KTIME, 1,
376                 ['timespec64_to_ktime' is available])
377 ])
378 ]) # LIBCFS_TIMESPEC64_TO_KTIME
379
380 #
381 # Kernel version 3.19 introduced ktime_get_seconds
382 #
383 AC_DEFUN([LIBCFS_KTIME_GET_SECONDS],[
384 LB_CHECK_COMPILE([does function 'ktime_get_seconds' exist],
385 ktime_get_seconds, [
386         #include <linux/ktime.h>
387 ],[
388         time64_t now;
389
390         now = ktime_get_seconds();
391 ],[
392         AC_DEFINE(HAVE_KTIME_GET_SECONDS, 1,
393                 ['ktime_get_seconds' is available])
394 ])
395 ]) # LIBCFS_KTIME_GET_SECONDS
396
397 #
398 # Kernel version 4.0 commit 41fbf3b39d5eca01527338b4d0ee15ee1ae1023c
399 # introduced the helper function ktime_ms_delta.
400 #
401 AC_DEFUN([LIBCFS_KTIME_MS_DELTA],[
402 LB_CHECK_COMPILE([does function 'ktime_ms_delta' exist],
403 ktime_ms_delta, [
404         #include <linux/ktime.h>
405 ],[
406         ktime_t start = ktime_set(0, 0);
407         ktime_t end = start;
408
409         ktime_ms_delta(start, end);
410 ],[
411         AC_DEFINE(HAVE_KTIME_MS_DELTA, 1,
412                 ['ktime_ms_delta' is available])
413 ])
414 ]) # LIBCFS_KTIME_MS_DELTA
415
416 #
417 # Kernel version 4.1 commit b51d23e4e9fea6f264d39535c2a62d1f51e7ccc3
418 # create per module locks which added kernel_param_[un]lock(). Older
419 # kernels you have to use __kernel_param_[un]lock(). In that case its
420 # a global lock for all modules but that is okay since its a rare event.
421 #
422 AC_DEFUN([LIBCFS_KERNEL_PARAM_LOCK],[
423 LB_CHECK_COMPILE([does function 'kernel_param_[un]lock' exist],
424 kernel_param_lock, [
425         #include <linux/moduleparam.h>
426 ],[
427         kernel_param_lock(NULL);
428         kernel_param_unlock(NULL);
429 ],[
430         AC_DEFINE(HAVE_KERNEL_PARAM_LOCK, 1,
431                 ['kernel_param_[un]lock' is available])
432 ])
433 ]) # LIBCFS_KERNEL_PARAM_LOCK
434
435 #
436 # Kernel version 4.2 changed topology_thread_cpumask
437 # to topology_sibling_cpumask
438 #
439 AC_DEFUN([LIBCFS_HAVE_TOPOLOGY_SIBLING_CPUMASK],[
440 LB_CHECK_COMPILE([does function 'topology_sibling_cpumask' exist],
441 topology_sibling_cpumask, [
442         #include <linux/topology.h>
443 ],[
444         const struct cpumask *mask;
445
446         mask = topology_sibling_cpumask(0);
447 ],[
448         AC_DEFINE(HAVE_TOPOLOGY_SIBLING_CPUMASK, 1,
449                 [topology_sibling_cpumask is available])
450 ])
451 ]) # LIBCFS_HAVE_TOPOLOGY_SIBLING_CPUMASK
452
453 #
454 # Kernel version 4.4 commit ef951599074ba4fad2d0efa0a977129b41e6d203
455 # introduced kstrtobool and kstrtobool_from_user.
456 #
457 AC_DEFUN([LIBCFS_KSTRTOBOOL_FROM_USER], [
458 LB_CHECK_COMPILE([if Linux kernel has 'kstrtobool_from_user'],
459 kstrtobool_from_user, [
460         #include <linux/kernel.h>
461 ],[
462         bool result;
463         return kstrtobool_from_user(NULL, 0, &result);
464 ],[
465         AC_DEFINE(HAVE_KSTRTOBOOL_FROM_USER, 1,
466                 [kernel has kstrtobool_from_user])
467 ])
468 ]) # LIBCFS_KSTRTOBOOL_FROM_USER
469
470 #
471 # Kernel version 4.5-rc1 commit d12481bc58fba89427565f8592e88446ec084a24
472 # added crypto hash helpers
473 #
474 AC_DEFUN([LIBCFS_CRYPTO_HASH_HELPERS], [
475 LB_CHECK_COMPILE([does crypto hash helper functions exist],
476 crypto_hash_helpers, [
477         #include <crypto/hash.h>
478 ],[
479         crypto_ahash_alg_name(NULL);
480         crypto_ahash_driver_name(NULL);
481 ],[
482         AC_DEFINE(HAVE_CRYPTO_HASH_HELPERS, 1,
483                 [crypto hash helper functions are available])
484 ])
485 ]) # LIBCFS_CRYPTO_HASH_HELPERS
486
487 #
488 # Kernel version 4.5-rc1 commit 3502cad73c4bbf8f6365d539e814159275252c59
489 # introduced rhashtable_replace_fast
490 #
491 AC_DEFUN([LIBCFS_RHASHTABLE_REPLACE], [
492 LB_CHECK_COMPILE([if 'rhashtable_replace_fast' exists],
493 rhashtable_replace_fast, [
494         #include <linux/rhashtable.h>
495 ],[
496         const struct rhashtable_params params = { 0 };
497
498         rhashtable_replace_fast(NULL, NULL, NULL, params);
499 ],[
500         AC_DEFINE(HAVE_RHASHTABLE_REPLACE, 1,
501                 [rhashtable_replace_fast() is available])
502 ])
503 ]) # LIBCFS_RHASHTABLE_REPLACE
504
505 #
506 # Kernel version 4.5-rc3 commit 2fe829aca9d7bed5fd6b49c6a1452e5e486b6cc3dd
507 # made kset_find_obj() exportable to modules
508 #
509 AC_DEFUN([LIBCFS_EXPORT_KSET_FIND_OBJ], [
510 LB_CHECK_EXPORT([kset_find_obj], [lib/kobject.c],
511         [AC_DEFINE(HAVE_KSET_FIND_OBJ, 1,
512                 [kset_find_obj is exported by the kernel])])
513 ]) # LIBCFS_EXPORT_KSET_FIND_OBJ
514
515 #
516 # Kernel version 4.6+ commit ef703f49a6c5b909a85149bb6625c4ed0d697186
517 # fixed the brokenness of hash_64(). The fix removed GOLDEN_RATIO_PRIME_64
518 # since it was a poor prime value.
519 #
520 AC_DEFUN([LIBCFS_BROKEN_HASH_64], [
521 LB_CHECK_COMPILE([kernel has fixed hash_64()],
522 broken_hash_64, [
523         #include <linux/hash.h>
524 ],[
525         int tmp = GOLDEN_RATIO_PRIME_64;
526 ],[
527         AC_DEFINE(HAVE_BROKEN_HASH_64, 1, [kernel hash_64() is broken])
528 ])
529 ]) # LIBCFS_BROKEN_HASH_64
530
531 #
532 # LIBCFS_STACKTRACE_OPS_ADDRESS_RETURN_INT
533 #
534 # linux 4.6 kernel changed stacktrace_ops address to return an int
535 #
536 AC_DEFUN([LIBCFS_STACKTRACE_OPS_ADDRESS_RETURN_INT], [
537 LB_CHECK_COMPILE([if 'struct stacktrace_ops' address function returns an int],
538 stacktrace_ops_address_return_int, [
539         #include <asm/stacktrace.h>
540 ],[
541         int rc;
542
543         rc = ((struct stacktrace_ops *)0)->address(NULL, 0, 0);
544 ],[
545         AC_DEFINE(STACKTRACE_OPS_ADDRESS_RETURN_INT, 1,
546                 ['struct stacktrace_ops' address function returns an int])
547 ])
548 ]) # LIBCFS_STACKTRACE_OPS_ADDRESS_RETURN_INT
549
550 #
551 # Kernel version 4.6 removed both struct task_struct and struct mm_struct
552 # arguments to get_user_pages
553 #
554 AC_DEFUN([LIBCFS_GET_USER_PAGES_6ARG], [
555 LB_CHECK_COMPILE([if 'get_user_pages()' takes 6 arguments],
556 get_user_pages_6arg, [
557         #include <linux/mm.h>
558 ],[
559         int rc;
560
561         rc = get_user_pages(0, 0, 0, 0, NULL, NULL);
562 ],[
563         AC_DEFINE(HAVE_GET_USER_PAGES_6ARG, 1,
564                 [get_user_pages takes 6 arguments])
565 ])
566 ]) # LIBCFS_GET_USER_PAGES_6ARG
567
568 #
569 # LIBCFS_STRINGHASH
570 #
571 # 4.6 kernel created stringhash.h which moved stuff out of dcache.h
572 # commit f4bcbe792b8f434e32487cff9d9e30ab45a3ce02
573 #
574 AC_DEFUN([LIBCFS_STRINGHASH], [
575 LB_CHECK_LINUX_HEADER([linux/stringhash.h], [
576         AC_DEFINE(HAVE_STRINGHASH, 1,
577                 [stringhash.h is present])])
578 ]) # LIBCFS_STRINGHASH
579
580 #
581 # LIBCFS_RHASHTABLE_INSERT_FAST
582 #
583 # 4.7+ kernel commit 5ca8cc5bf11faed257c762018aea9106d529232f
584 # changed __rhashtable_insert_fast to support the new function
585 # rhashtable_lookup_get_insert_key().
586 #
587 AC_DEFUN([LIBCFS_RHASHTABLE_INSERT_FAST], [
588 tmp_flags="$EXTRA_KCFLAGS"
589 EXTRA_KCFLAGS="-Werror"
590 LB_CHECK_COMPILE([if internal '__rhashtable_insert_fast()' returns int],
591 rhashtable_insert_fast, [
592         #include <linux/rhashtable.h>
593 ],[
594         const struct rhashtable_params params = { 0 };
595         int rc;
596
597         rc = __rhashtable_insert_fast(NULL, NULL, NULL, params);
598 ],[
599         AC_DEFINE(HAVE_HASHTABLE_INSERT_FAST_RETURN_INT, 1,
600                   ['__rhashtable_insert_fast()' returns int])
601 ])
602 EXTRA_KCFLAGS="$tmp_flags"
603 ]) # LIBCFS_RHASHTABLE_INSERT_FAST
604
605 #
606 # Kernel version 4.7-rc1 commit 8f6fd83c6c5ec66a4a70c728535ddcdfef4f3697
607 # added 3rd arg to rhashtable_walk_init
608 #
609 AC_DEFUN([LIBCFS_RHASHTABLE_WALK_INIT_3ARG], [
610 LB_CHECK_COMPILE([if 'rhashtable_walk_init' has 3 args],
611 rhashtable_walk_init, [
612         #include <linux/gfp.h>
613         #include <linux/rhashtable.h>
614 ],[
615         rhashtable_walk_init(NULL, NULL, GFP_KERNEL);
616 ],[
617         AC_DEFINE(HAVE_3ARG_RHASHTABLE_WALK_INIT, 1,
618                 [rhashtable_walk_init() has 3 args])
619 ])
620 ]) # LIBCFS_RHASHTABLE_REPLACE
621
622 #
623 # Kernel version 4.8-rc6 commit ca26893f05e86497a86732768ec53cd38c0819ca
624 # introduced rhashtable_lookup
625 #
626 AC_DEFUN([LIBCFS_RHASHTABLE_LOOKUP], [
627 LB_CHECK_COMPILE([if 'rhashtable_lookup' exist],
628 rhashtable_lookup, [
629         #include <linux/rhashtable.h>
630 ],[
631         const struct rhashtable_params params = { 0 };
632         void *ret;
633
634         ret = rhashtable_lookup(NULL, NULL, params);
635 ],[
636         AC_DEFINE(HAVE_RHASHTABLE_LOOKUP, 1,
637                 [rhashtable_lookup() is available])
638 ])
639 ]) # LIBCFS_RHASHTABLE_LOOKUP
640
641 #
642 # LIBCFS_RHLTABLE
643 # Kernel version 4.8-rc6 commit ca26893f05e86497a86732768ec53cd38c0819ca
644 # created the rhlist interface to allow inserting duplicate objects
645 # into the same table.
646 #
647 AC_DEFUN([LIBCFS_RHLTABLE], [
648 LB_CHECK_COMPILE([does 'struct rhltable' exist],
649 rhtable, [
650         #include <linux/rhashtable.h>
651 ],[
652         struct rhltable *hlt;
653
654         rhltable_destroy(hlt);
655 ],[
656         AC_DEFINE(HAVE_RHLTABLE, 1,
657                   [struct rhltable exist])
658 ])
659 ]) # LIBCFS_RHLTABLE
660
661 #
662 # LIBCFS_STACKTRACE_OPS
663 #
664 # Kernel version 4.8 commit c8fe4609827aedc9c4b45de80e7cdc8ccfa8541b
665 # removed both struct stacktrace_ops and dump_trace() function
666 #
667 AC_DEFUN([LIBCFS_STACKTRACE_OPS], [
668 LB_CHECK_COMPILE([if 'struct stacktrace_ops' exists],
669 stacktrace_ops, [
670         struct task_struct;
671         struct pt_regs;
672         #include <asm/stacktrace.h>
673 ],[
674         struct stacktrace_ops ops;
675         ops.stack = NULL;
676 ],[
677         AC_DEFINE(HAVE_STACKTRACE_OPS, 1,
678                 [struct stacktrace_ops exists])
679 ])
680 ]) # LIBCFS_STACKTRACE_OPS
681
682 #
683 # Kernel version 4.9-rc1 commit 246779dd090bd1b74d2652b3a6ca7759f593b27a
684 # introduced rhashtable_walk_enter
685 #
686 AC_DEFUN([LIBCFS_RHASHTABLE_WALK_ENTER], [
687 LB_CHECK_COMPILE([if 'rhashtable_walk_enter' exists],
688 rhashtable_walk_enter, [
689         #include <linux/rhashtable.h>
690 ],[
691         rhashtable_walk_enter(NULL, NULL);
692 ],[
693         AC_DEFINE(HAVE_RHASHTABLE_WALK_ENTER, 1,
694                 [rhashtable_walk_enter() is available])
695 ])
696 ]) # LIBCFS_RHASHTABLE_REPLACE
697
698 #
699 # Kernel version 4.9 commit 768ae309a96103ed02eb1e111e838c87854d8b51
700 # mm: replace get_user_pages() write/force parameters with gup_flags
701 #
702 AC_DEFUN([LIBCFS_GET_USER_PAGES_GUP_FLAGS], [
703 LB_CHECK_COMPILE([if 'get_user_pages()' takes gup_flags in arguments],
704 get_user_pages_gup_flags, [
705         #include <linux/mm.h>
706 ],[
707         int rc;
708         rc = get_user_pages(0, 0, FOLL_WRITE, NULL, NULL);
709 ],[
710         AC_DEFINE(HAVE_GET_USER_PAGES_GUP_FLAGS, 1,
711                 [get_user_pages takes gup_flags in arguments])
712 ])
713 ]) # LIBCFS_GET_USER_PAGES_GUP_FLAGS
714
715 #
716 # Kernel version 4.10 commit 7b737965b33188bd3dbb44e938535c4006d97fbb
717 # libcfs: Convert to hotplug state machine
718 #
719 AC_DEFUN([LIBCFS_HOTPLUG_STATE_MACHINE], [
720 LB_CHECK_COMPILE([if libcfs supports CPU hotplug state machine],
721 cpu_hotplug_state_machine, [
722         #include <linux/cpuhotplug.h>
723 ],[
724         cpuhp_remove_state(CPUHP_LUSTRE_CFS_DEAD);
725 ],[
726         AC_DEFINE(HAVE_HOTPLUG_STATE_MACHINE, 1,
727                 [hotplug state machine is supported])
728 ])
729 ]) # LIBCFS_HOTPLUG_STATE_MACHINE
730
731 #
732 # Kernel version 4.10-rc3 commit f405df5de3170c00e5c54f8b7cf4766044a032ba
733 # introduced refcount_t which is atomic_t plus over flow guards.
734 #
735 AC_DEFUN([LIBCFS_REFCOUNT_T], [
736 LB_CHECK_LINUX_HEADER([linux/refcount.h], [
737         AC_DEFINE(HAVE_REFCOUNT_T, 1,
738                 [refcount_t is supported])])
739 ]) # LIBCFS_REFCOUNT_T
740
741 #
742 # LIBCFS_SCHED_HEADERS
743 #
744 # 4.11 has broken up sched.h into more headers.
745 #
746 AC_DEFUN([LIBCFS_SCHED_HEADERS], [
747 LB_CHECK_LINUX_HEADER([linux/sched/signal.h], [
748         AC_DEFINE(HAVE_SCHED_HEADERS, 1,
749                 [linux/sched header directory exist])])
750 ]) # LIBCFS_SCHED_HEADERS
751
752 #
753 # Kernel version 4.11-rc1 commit da20420f83ea0fbcf3d03afda08d971ea1d8a356
754 # introduced rht_bucket_var
755 #
756 AC_DEFUN([LIBCFS_RHT_BUCKET_VAR], [
757 LB_CHECK_COMPILE([if 'rht_bucket_var' exists],
758 rht_bucket_var, [
759         #include <linux/rhashtable.h>
760 ],[
761
762         rht_bucket_var(NULL, 0);
763 ],[
764         AC_DEFINE(HAVE_RHT_BUCKET_VAR, 1,
765                 [rht_bucket_var() is available])
766 ])
767 ]) # LIBCFS_RHT_BUCKET_VAR
768
769 #
770 # Kernel version 4.11 commit f9fe1c12d126f9887441fa5bb165046f30ddd4b5
771 # introduced rhashtable_lookup_get_insert_fast
772 #
773 AC_DEFUN([LIBCFS_RHASHTABLE_LOOKUP_GET_INSERT_FAST], [
774 LB_CHECK_COMPILE([if 'rhashtable_lookup_get_insert_fast' exist],
775 rhashtable_lookup_get_insert_fast, [
776         #include <linux/rhashtable.h>
777 ],[
778         const struct rhashtable_params params = { 0 };
779         void *ret;
780
781         ret = rhashtable_lookup_get_insert_fast(NULL, NULL, params);
782 ],[
783         AC_DEFINE(HAVE_RHASHTABLE_LOOKUP_GET_INSERT_FAST, 1,
784                 [rhashtable_lookup_get_insert_fast() is available])
785 ])
786 ]) # LIBCFS_RHASHTABLE_LOOKUP_GET_INSERT_FAST
787
788 #
789 # Kernel version 4.12-rc3 f9727a17db9bab71ddae91f74f11a8a2f9a0ece6
790 # renamed uuid_be to uuid_t
791 #
792 AC_DEFUN([LIBCFS_UUID_T], [
793 LB_CHECK_COMPILE([if 'uuid_t' exist],
794 uuid_t, [
795         #include <linux/uuid.h>
796 ],[
797         uuid_t uuid;
798
799         memset(uuid.b, 0, 16);
800 ],[
801         AC_DEFINE(HAVE_UUID_T, 1, ['uuid_t' exist])
802 ])
803 ]) # LIBCFS_UUID_T
804
805 #
806 # Kernel version 4.12-rc3 commit fd851a3cdc196bfc1d229b5f22369069af532bf8
807 # introduce processor.h
808 #
809 AC_DEFUN([LIBCFS_HAVE_PROCESSOR_HEADER], [
810 LB_CHECK_LINUX_HEADER([linux/processor.h], [
811         AC_DEFINE(HAVE_PROCESSOR_H, 1,
812                 [processor.h is present])])
813 ]) # LIBCFS_HAVE_PROCESSOR_HEADER
814
815 #
816 # Kernel verison 4.12-rc6 commit 5dd43ce2f69d42a71dcacdb13d17d8c0ac1fe8f7
817 # created wait_bit.h
818 #
819 AC_DEFUN([LIBCFS_HAVE_WAIT_BIT_HEADER], [
820 LB_CHECK_LINUX_HEADER([linux/wait_bit.h], [
821         AC_DEFINE(HAVE_WAIT_BIT_HEADER_H, 1,
822                 [wait_bit.h is present])])
823 ]) # LIBCFS_HAVE_WAIT_BIT_HEADER
824
825 #
826 # Kernel version 4.12-rc6 commmit 2055da97389a605c8a00d163d40903afbe413921
827 # changed:
828 #       struct wait_queue_head::task_list       => ::head
829 #       struct wait_queue_entry::task_list      => ::entry
830 #
831 AC_DEFUN([LIBCFS_WAIT_QUEUE_TASK_LIST_RENAME], [
832 LB_CHECK_COMPILE([if linux wait_queue_head list_head is named head],
833 wait_queue_task_list, [
834         #include <linux/wait.h>
835 ],[
836         wait_queue_head_t e;
837
838         INIT_LIST_HEAD(&e.head);
839 ],[
840         AC_DEFINE(HAVE_WAIT_QUEUE_ENTRY_LIST, 1,
841                 [linux wait_queue_head_t list_head is name head])
842 ])
843 ]) # LIBCFS_WAIT_QUEUE_TASK_LIST_RENAME
844
845 #
846 # LIBCFS_WAIT_QUEUE_ENTRY
847 #
848 # Kernel version 4.13 ac6424b981bce1c4bc55675c6ce11bfe1bbfa64f
849 # Rename wait_queue_t => wait_queue_entry_t
850 #
851 AC_DEFUN([LIBCFS_WAIT_QUEUE_ENTRY], [
852 LB_CHECK_COMPILE([if 'wait_queue_entry_t' exists],
853 wait_queue_entry, [
854         #include <linux/wait.h>
855 ],[
856         wait_queue_entry_t e;
857
858         e.flags = 0;
859 ],[
860         AC_DEFINE(HAVE_WAIT_QUEUE_ENTRY, 1,
861                 ['wait_queue_entry_t' is available])
862 ])
863 ]) # LIBCFS_WAIT_QUEUE_ENTRY
864
865 #
866 # LIBCFS_NEW_KERNEL_WRITE
867 #
868 # Kernel version 4.14 e13ec939e96b13e664bb6cee361cc976a0ee621a
869 # changed kernel_write prototype to make is plug compatible
870 # with the unexported vfs_write()
871 #
872 AC_DEFUN([LIBCFS_NEW_KERNEL_WRITE], [
873 tmp_flags="$EXTRA_KCFLAGS"
874 EXTRA_KCFLAGS="-Werror"
875 LB_CHECK_COMPILE([if 'kernel_write' matches other read/write helpers],
876 kernel_write_match, [
877         #include <linux/fs.h>
878 ],[
879         const void *buf = NULL;
880         loff_t pos = 0;
881         return kernel_write(NULL, buf, 0, &pos);
882 ],[
883         AC_DEFINE(HAVE_NEW_KERNEL_WRITE, 1,
884                 ['kernel_write' aligns with read/write helpers])
885 ])
886 EXTRA_KCFLAGS="$tmp_flags"
887 ]) # LIBCFS_NEW_KERNEL_WRITE
888
889 #
890 # LIBCFS_MM_TOTALRAM_PAGES_FUNC
891 #
892 # kernel 5.0 commit ca79b0c211af63fa3276f0e3fd7dd9ada2439839
893 # mm: convert totalram_pages and totalhigh_pages variables to atomic
894 #
895 AC_DEFUN([LIBCFS_MM_TOTALRAM_PAGES_FUNC], [
896 tmp_flags="$EXTRA_KCFLAGS"
897 EXTRA_KCFLAGS="-Werror"
898 LB_CHECK_COMPILE([if totalram_pages is a function],
899 totalram_pages, [
900         #include <linux/mm.h>
901 ],[
902         totalram_pages_inc();
903 ],[
904         AC_DEFINE(HAVE_TOTALRAM_PAGES_AS_FUNC, 1,
905                 [if totalram_pages is a function])
906 ])
907 EXTRA_KCFLAGS="$tmp_flags"
908 ]) # LIBCFS_MM_TOTALRAM_PAGES_FUNC
909
910 #
911 # LIBCFS_NEW_KERNEL_WRITE
912 #
913 # 4.14 commit bdd1d2d3d251c65b74ac4493e08db18971c09240 changed
914 # the signature of kernel_read to match other read/write helpers
915 # and place offset last.
916 #
917 AC_DEFUN([LIBCFS_NEW_KERNEL_READ], [
918 tmp_flags="$EXTRA_KCFLAGS"
919 EXTRA_KCFLAGS="-Werror"
920 LB_CHECK_COMPILE([if 'kernel_read()' has loff_t *pos as last parameter],
921 kernel_read, [
922         #include <linux/fs.h>
923         ],[
924         loff_t pos = 0;
925         kernel_read(NULL, NULL, 0, &pos);
926 ],[
927         AC_DEFINE(HAVE_KERNEL_READ_LAST_POSP, 1,
928                 [kernel_read() signature ends with loff_t *pos])
929 ])
930 EXTRA_KCFLAGS="$tmp_flags"
931 ]) # LIBCFS_NEW_KERNEL_READ
932
933 #
934 # LIBCFS_DEFINE_TIMER
935 #
936 # Kernel version 4.14 commit 1d27e3e2252ba9d949ca82fbdb73cde102cb2067
937 # remove expires and data arguments from DEFINE_TIMER. Also the callback
938 # when from using unsigned long argument to using struct timer_list pointer.
939 #
940 AC_DEFUN([LIBCFS_DEFINE_TIMER], [
941 LB_CHECK_COMPILE([if DEFINE_TIMER takes only 2 arguments],
942 define_timer, [
943         #include <linux/timer.h>
944 ],[
945         static DEFINE_TIMER(my_timer, NULL);
946 ],[
947         AC_DEFINE(HAVE_NEW_DEFINE_TIMER, 1,
948                 [DEFINE_TIMER uses only 2 arguements])
949 ])
950 ]) # LIBCFS_DEFINE_TIMER
951
952 #
953 # LIBCFS_EXPORT_SAVE_STACK_TRACE_TSK
954 #
955 # Kernel 2.6.27 commit 8594698ebddeef5443b7da8258ae33b3eaca61d5
956 # exported save_stack_trace_tsk for x86.
957 # Kernel 2.6.27 commit 01f4b8b8b8db09b88be7df7e51192e4e678b69d3
958 # exported save_stack_trace_tsk for powerpc
959 # Kernel 4.13 commit e27c7fa015d61c8be6a2c32b2144aad2ae6ec975
960 # exported save_stack_trace_tsk for arm64
961 # Kernel 4.14 commit 9a3dc3186fc3795e076a4122da9e0258651a9631
962 # exported save_stack_trace_tsk for arm
963 #
964 AC_DEFUN([LIBCFS_EXPORT_SAVE_STACK_TRACE_TSK], [
965 LB_CHECK_EXPORT([save_stack_trace_tsk], [arch/$SUBARCH/kernel/stacktrace.c],
966         [AC_DEFINE(HAVE_SAVE_STACK_TRACE_TSK, 1,
967                 [save_stack_trace_tsk is exported])])
968 ]) # LIBCFS_EXPORT_SAVE_STACK_TRACE_TSK
969
970 #
971 # LIBCFS_TIMER_SETUP
972 #
973 # Kernel version 4.15 commit e99e88a9d2b067465adaa9c111ada99a041bef9a
974 # setup_timer() was replaced by timer_setup(), where the callback
975 # argument is the structure already holding the struct timer_list.
976 #
977 AC_DEFUN([LIBCFS_TIMER_SETUP], [
978 LB_CHECK_COMPILE([if setup_timer has been replaced with timer_setup],
979 timer_setup, [
980         #include <linux/timer.h>
981 ],[
982         timer_setup(NULL, NULL, 0);
983 ],[
984         AC_DEFINE(HAVE_TIMER_SETUP, 1,
985                 [timer_setup has replaced setup_timer])
986 ])
987 ]) # LIBCFS_TIMER_SETUP
988
989 #
990 # LIBCFS_WAIT_VAR_EVENT
991 #
992 # Kernel version 4.16-rc4 commit 6b2bb7265f0b62605e8caee3613449ed0db270b9
993 # added wait_var_event()
994 #
995 AC_DEFUN([LIBCFS_WAIT_VAR_EVENT], [
996 LB_CHECK_COMPILE([if 'wait_var_event' exist],
997 wait_var_event, [
998         #ifdef HAVE_WAIT_BIT_HEADER_H
999         #include <linux/wait_bit.h>
1000         #endif
1001         #include <linux/wait.h>
1002 ],[
1003         wake_up_var(NULL);
1004 ],[
1005         AC_DEFINE(HAVE_WAIT_VAR_EVENT, 1,
1006                 ['wait_var_event' is available])
1007 ])
1008 ]) # LIBCFS_WAIT_VAR_EVENT
1009
1010 #
1011 # LIBCFS_CLEAR_AND_WAKE_UP_BIT
1012 #
1013 # Kernel version 4.17-rc2 commit 8236b0ae31c837d2b3a2565c5f8d77f637e824cc
1014 # added clear_and_wake_up_bit()
1015 #
1016 AC_DEFUN([LIBCFS_CLEAR_AND_WAKE_UP_BIT], [
1017 LB_CHECK_COMPILE([if 'clear_and_wake_up_bit' exist],
1018 clear_and_wake_up_bit, [
1019         #ifdef HAVE_WAIT_BIT_HEADER_H
1020         #include <linux/wait_bit.h>
1021         #endif
1022         #include <linux/wait.h>
1023 ],[
1024         clear_and_wake_up_bit(0, NULL);
1025 ],[
1026         AC_DEFINE(HAVE_CLEAR_AND_WAKE_UP_BIT, 1,
1027                 ['clear_and_wake_up_bit' is available])
1028 ])
1029 ]) # LIBCFS_CLEAR_AND_WAKE_UP_BIT
1030
1031 #
1032 # LIBCFS_HAVE_IOV_ITER_TYPE
1033 #
1034 # kernel 4.20 commit 00e23707442a75b404392cef1405ab4fd498de6b
1035 # iov_iter: Use accessor functions to access an iterator's type and direction.
1036 #
1037 AC_DEFUN([LIBCFS_HAVE_IOV_ITER_TYPE], [
1038 tmp_flags="$EXTRA_KCFLAGS"
1039 EXTRA_KCFLAGS="-Werror"
1040 LB_CHECK_COMPILE([if iov_iter_type exists],
1041 macro_iov_iter_type_exists, [
1042         #include <linux/uio.h>
1043 ],[
1044         struct iov_iter iter = { .type = ITER_KVEC };
1045         enum iter_type type = iov_iter_type(&iter);
1046         (void)type;
1047 ],[
1048         AC_DEFINE(HAVE_IOV_ITER_TYPE, 1,
1049                 [if iov_iter_type exists])
1050 ])
1051 EXTRA_KCFLAGS="$tmp_flags"
1052 ]) # LIBCFS_HAVE_IOV_ITER_TYPE
1053
1054 #
1055 # LIBCFS_FORCE_SIG_WITH_TASK
1056 #
1057 # kernel 5.3 commit 3cf5d076fb4d48979f382bc9452765bf8b79e740
1058 # signal: Remove task parameter from force_sig
1059 #
1060 AC_DEFUN([LIBCFS_FORCE_SIG_WITH_TASK], [
1061 tmp_flags="$EXTRA_KCFLAGS"
1062 EXTRA_KCFLAGS="-Werror"
1063 LB_CHECK_COMPILE([if force_sig has task parameter],
1064 force_sig_with_task, [
1065         #include <linux/sched/signal.h>
1066 ],[
1067         force_sig(SIGINT, NULL);
1068 ],[
1069         AC_DEFINE(HAVE_FORCE_SIG_WITH_TASK, 1,
1070                 [force_sig() has task parameter])
1071 ])
1072 EXTRA_KCFLAGS="$tmp_flags"
1073 ]) # LIBCFS_FORCE_SIG_WITH_TASK
1074
1075 #
1076 # LIBCFS_CACHE_DETAIL_WRITERS
1077 #
1078 # kernel v5.3-rc2-1-g64a38e840ce5
1079 # SUNRPC: Track writers of the 'channel' file to improve cache_listeners_exist
1080 #
1081 AC_DEFUN([LIBCFS_CACHE_DETAIL_WRITERS], [
1082 tmp_flags="$EXTRA_KCFLAGS"
1083 EXTRA_KCFLAGS="-Werror"
1084 LB_CHECK_COMPILE([if struct cache_detail has writers],
1085 cache_detail_writers_atomic, [
1086         #include <linux/sunrpc/cache.h>
1087
1088         static struct cache_detail rsi_cache;
1089 ],[
1090         atomic_set(&rsi_cache.writers, 0);
1091 ],[
1092         AC_DEFINE(HAVE_CACHE_DETAIL_WRITERS, 1,
1093                 [struct cache_detail has writers])
1094 ])
1095 EXTRA_KCFLAGS="$tmp_flags"
1096 ]) # LIBCFS_CACHE_DETAIL_WRITERS
1097
1098 #
1099 # LIBCFS_PROG_LINUX
1100 #
1101 # LibCFS linux kernel checks
1102 #
1103 AC_DEFUN([LIBCFS_PROG_LINUX], [
1104 AC_MSG_NOTICE([LibCFS kernel checks
1105 ==============================================================================])
1106 LIBCFS_CONFIG_PANIC_DUMPLOG
1107
1108 # 3.11
1109 LIBCFS_KTIME_GET_TS64
1110 # 3.12
1111 LIBCFS_PREPARE_TO_WAIT_EVENT
1112 LIBCFS_KERNEL_PARAM_OPS
1113 LIBCFS_KTIME_ADD
1114 LIBCFS_KTIME_AFTER
1115 LIBCFS_KTIME_BEFORE
1116 LIBCFS_KTIME_COMPARE
1117 LIBCFS_SHRINKER_COUNT
1118 # 3.15
1119 LIBCFS_IOV_ITER_HAS_TYPE
1120 # 3.17
1121 LIBCFS_HLIST_ADD_AFTER
1122 LIBCFS_TIMESPEC64
1123 LIBCFS_KTIME_GET_NS
1124 LIBCFS_KTIME_GET_REAL_TS64
1125 LIBCFS_KTIME_GET_REAL_SECONDS
1126 LIBCFS_KTIME_GET_REAL_NS
1127 LIBCFS_KTIME_TO_TIMESPEC64
1128 LIBCFS_TIMESPEC64_SUB
1129 LIBCFS_TIMESPEC64_TO_KTIME
1130 # 3.19
1131 LIBCFS_KTIME_GET_SECONDS
1132 # 4.0
1133 LIBCFS_KTIME_MS_DELTA
1134 # 4.1
1135 LIBCFS_KERNEL_PARAM_LOCK
1136 # 4.2
1137 LIBCFS_HAVE_TOPOLOGY_SIBLING_CPUMASK
1138 # 4.4
1139 LIBCFS_KSTRTOBOOL_FROM_USER
1140 # 4.5
1141 LIBCFS_CRYPTO_HASH_HELPERS
1142 LIBCFS_EXPORT_KSET_FIND_OBJ
1143 LIBCFS_RHASHTABLE_REPLACE
1144 # 4.6
1145 LIBCFS_BROKEN_HASH_64
1146 LIBCFS_STACKTRACE_OPS_ADDRESS_RETURN_INT
1147 LIBCFS_GET_USER_PAGES_6ARG
1148 LIBCFS_STRINGHASH
1149 # 4.7
1150 LIBCFS_RHASHTABLE_INSERT_FAST
1151 LIBCFS_RHASHTABLE_WALK_INIT_3ARG
1152 # 4.8
1153 LIBCFS_RHASHTABLE_LOOKUP
1154 LIBCFS_RHLTABLE
1155 LIBCFS_STACKTRACE_OPS
1156 # 4.9
1157 LIBCFS_GET_USER_PAGES_GUP_FLAGS
1158 LIBCFS_RHASHTABLE_WALK_ENTER
1159 # 4.10
1160 LIBCFS_HOTPLUG_STATE_MACHINE
1161 LIBCFS_REFCOUNT_T
1162 # 4.11
1163 LIBCFS_RHASHTABLE_LOOKUP_GET_INSERT_FAST
1164 LIBCFS_SCHED_HEADERS
1165 LIBCFS_RHT_BUCKET_VAR
1166 # 4.12
1167 LIBCFS_HAVE_PROCESSOR_HEADER
1168 LIBCFS_HAVE_WAIT_BIT_HEADER
1169 LIBCFS_WAIT_QUEUE_TASK_LIST_RENAME
1170 LIBCFS_UUID_T
1171 # 4.13
1172 LIBCFS_WAIT_QUEUE_ENTRY
1173 # 4.14
1174 LIBCFS_DEFINE_TIMER
1175 LIBCFS_NEW_KERNEL_WRITE
1176 LIBCFS_NEW_KERNEL_READ
1177 LIBCFS_EXPORT_SAVE_STACK_TRACE_TSK
1178 # 4.15
1179 LIBCFS_TIMER_SETUP
1180 # 4.16
1181 LIBCFS_WAIT_VAR_EVENT
1182 # 4.17
1183 LIBCFS_CLEAR_AND_WAKE_UP_BIT
1184 # 4.20
1185 LIBCFS_HAVE_IOV_ITER_TYPE
1186 # 5.0
1187 LIBCFS_MM_TOTALRAM_PAGES_FUNC
1188 # 5.3
1189 LIBCFS_FORCE_SIG_WITH_TASK
1190 LIBCFS_CACHE_DETAIL_WRITERS
1191 ]) # LIBCFS_PROG_LINUX
1192
1193 #
1194 # LIBCFS_PATH_DEFAULTS
1195 #
1196 # default paths for installed files
1197 #
1198 AC_DEFUN([LIBCFS_PATH_DEFAULTS], [
1199 ]) # LIBCFS_PATH_DEFAULTS
1200
1201 #
1202 # LIBCFS_CONFIGURE
1203 #
1204 # other configure checks
1205 #
1206 AC_DEFUN([LIBCFS_CONFIGURE], [
1207 AC_MSG_NOTICE([LibCFS core checks
1208 ==============================================================================])
1209
1210 # libcfs/libcfs/util/nidstrings.c
1211 AC_CHECK_HEADERS([netdb.h asm/types.h endian.h])
1212 AC_CHECK_FUNCS([gethostbyname])
1213
1214 # --------  Check for required packages  --------------
1215
1216 AC_MSG_NOTICE([LibCFS required packages checks
1217 ==============================================================================])
1218
1219 AC_MSG_CHECKING([whether to enable readline support])
1220 AC_ARG_ENABLE(readline,
1221         AC_HELP_STRING([--disable-readline],
1222                 [disable readline support]),
1223         [], [enable_readline="yes"])
1224 AC_MSG_RESULT([$enable_readline])
1225
1226 LIBREADLINE=""
1227 AS_IF([test "x$enable_readline" = xyes], [
1228         AC_CHECK_LIB([readline], [readline], [
1229                 LIBREADLINE="-lreadline"
1230                 AC_DEFINE(HAVE_LIBREADLINE, 1,
1231                         [readline library is available])
1232         ])
1233 ])
1234 AC_SUBST(LIBREADLINE)
1235
1236 AC_MSG_CHECKING([whether to use libpthread for libcfs library])
1237 AC_ARG_ENABLE([libpthread],
1238         AC_HELP_STRING([--disable-libpthread],
1239                 [disable libpthread]),
1240         [], [enable_libpthread="yes"])
1241 AC_MSG_RESULT([$enable_libpthread])
1242
1243 PTHREAD_LIBS=""
1244 AS_IF([test "x$enable_libpthread" = xyes], [
1245         AC_CHECK_LIB([pthread], [pthread_create], [
1246                 PTHREAD_LIBS="-lpthread"
1247                 AC_DEFINE([HAVE_LIBPTHREAD], 1,
1248                         [use libpthread for libcfs library])
1249         ])
1250 ], [
1251         AC_MSG_WARN([Using libpthread for libcfs library is disabled explicitly])
1252 ])
1253 AC_SUBST(PTHREAD_LIBS)
1254 ]) # LIBCFS_CONFIGURE
1255
1256 #
1257 # LIBCFS_CONFIG_FILES
1258 #
1259 # files that should be generated with AC_OUTPUT
1260 #
1261 AC_DEFUN([LIBCFS_CONFIG_FILES], [
1262 AC_CONFIG_FILES([
1263 libcfs/Makefile
1264 libcfs/autoMakefile
1265 libcfs/autoconf/Makefile
1266 libcfs/include/Makefile
1267 libcfs/include/libcfs/Makefile
1268 libcfs/include/libcfs/linux/Makefile
1269 libcfs/include/libcfs/util/Makefile
1270 libcfs/libcfs/Makefile
1271 libcfs/libcfs/autoMakefile
1272 libcfs/libcfs/linux/Makefile
1273 libcfs/libcfs/util/Makefile
1274 ])
1275 ]) # LIBCFS_CONFIG_FILES