Whamcloud - gitweb
LU-2335 build: stop checking for XATTR_ACL_SIZE
[fs/lustre-release.git] / lustre / autoconf / lustre-core.m4
1 #
2 # LC_CONFIG_SRCDIR
3 #
4 # Wrapper for AC_CONFIG_SUBDIR
5 #
6 AC_DEFUN([LC_CONFIG_SRCDIR],
7 [AC_CONFIG_SRCDIR([lustre/obdclass/obdo.c])
8 libcfs_is_module=yes
9 ldiskfs_is_ext4=yes
10 ])
11
12 #
13 # LC_PATH_DEFAULTS
14 #
15 # lustre specific paths
16 #
17 AC_DEFUN([LC_PATH_DEFAULTS],
18 [# ptlrpc kernel build requires this
19 LUSTRE="$PWD/lustre"
20 AC_SUBST(LUSTRE)
21
22 # mount.lustre
23 rootsbindir='$(CROSS_PATH)/sbin'
24 AC_SUBST(rootsbindir)
25
26 demodir='$(docdir)/demo'
27 AC_SUBST(demodir)
28
29 pkgexampledir='${pkgdatadir}/examples'
30 AC_SUBST(pkgexampledir)
31 ])
32
33 #
34 # LC_TARGET_SUPPORTED
35 #
36 # is the target os supported?
37 #
38 AC_DEFUN([LC_TARGET_SUPPORTED],
39 [case $target_os in
40         linux* | darwin*)
41 $1
42                 ;;
43         *)
44 $2
45                 ;;
46 esac
47 ])
48
49 #
50 # LC_CONFIG_OBD_BUFFER_SIZE
51 #
52 # the maximum buffer size of lctl ioctls
53 #
54 AC_DEFUN([LC_CONFIG_OBD_BUFFER_SIZE],
55 [AC_MSG_CHECKING([maximum OBD ioctl size])
56 AC_ARG_WITH([obd-buffer-size],
57         AC_HELP_STRING([--with-obd-buffer-size=[size]],
58                         [set lctl ioctl maximum bytes (default=8192)]),
59         [
60                 OBD_BUFFER_SIZE=$with_obd_buffer_size
61         ],[
62                 OBD_BUFFER_SIZE=8192
63         ])
64 AC_MSG_RESULT([$OBD_BUFFER_SIZE bytes])
65 AC_DEFINE_UNQUOTED(CONFIG_LUSTRE_OBD_MAX_IOCTL_BUFFER, $OBD_BUFFER_SIZE, [IOCTL Buffer Size])
66 ])
67
68 #
69 # LC_READLINK_SSIZE_T
70 #
71 AC_DEFUN([LC_READLINK_SSIZE_T],
72 [AC_MSG_CHECKING([if readlink returns ssize_t])
73 AC_TRY_COMPILE([
74         #include <unistd.h>
75 ],[
76         ssize_t readlink(const char *, char *, size_t);
77 ],[
78         AC_MSG_RESULT([yes])
79         AC_DEFINE(HAVE_POSIX_1003_READLINK, 1, [readlink returns ssize_t])
80 ],[
81         AC_MSG_RESULT([no])
82 ])
83 ])
84
85 #
86 # LC_FUNC_DEV_SET_RDONLY
87 #
88 # check whether dev_set_rdonly is exported.  This is needed until we
89 # have another mechanism to fence IO from the underlying device.
90 #
91 AC_DEFUN([LC_FUNC_DEV_SET_RDONLY],
92 [LB_CHECK_SYMBOL_EXPORT([dev_set_rdonly],
93 [block/ll_rw_block.c,block/blk-core.c],[
94         AC_DEFINE(HAVE_DEV_SET_RDONLY, 1, [kernel exports dev_set_rdonly])
95 ],[
96         AC_MSG_WARN([kernel missing dev_set_rdonly patch for testing])
97 ])
98 ])
99
100 #
101 # Ensure stack size big than 8k in Lustre server (all kernels)
102 #
103 AC_DEFUN([LC_STACK_SIZE],
104 [AC_MSG_CHECKING([stack size big than 8k])
105 LB_LINUX_TRY_COMPILE([
106         #include <linux/thread_info.h>
107 ],[
108         #if THREAD_SIZE < 8192
109         #error "stack size < 8192"
110         #endif
111 ],[
112         AC_MSG_RESULT(yes)
113 ],[
114         AC_MSG_ERROR([Lustre requires that Linux is configured with at least a 8KB stack.])
115 ])
116 ])
117
118 #
119 # Allow the user to set the MDS thread upper limit
120 #
121 AC_DEFUN([LC_MDS_MAX_THREADS],
122 [
123         AC_ARG_WITH([mds_max_threads],
124         AC_HELP_STRING([--with-mds-max-threads=count],
125                        [maximum threads available on the MDS: (default=512)]),
126         [
127                 MDS_THREAD_COUNT=$with_mds_max_threads
128                 AC_DEFINE_UNQUOTED(MDS_MAX_THREADS, $MDS_THREAD_COUNT, [maximum number of MDS threads])
129         ])
130 ])
131
132 #
133 # LC_CONFIG_PINGER
134 #
135 # the pinger is temporary, until we have the recovery node in place
136 #
137 AC_DEFUN([LC_CONFIG_PINGER],
138 [AC_MSG_CHECKING([whether to enable pinger support])
139 AC_ARG_ENABLE([pinger],
140         AC_HELP_STRING([--disable-pinger],
141                         [disable recovery pinger support]),
142         [],[enable_pinger='yes'])
143 AC_MSG_RESULT([$enable_pinger])
144 if test x$enable_pinger != xno ; then
145   AC_DEFINE(ENABLE_PINGER, 1, Use the Pinger)
146 fi
147 ])
148
149 #
150 # LC_CONFIG_CHECKSUM
151 #
152 # do checksum of bulk data between client and OST
153 #
154 AC_DEFUN([LC_CONFIG_CHECKSUM],
155 [AC_MSG_CHECKING([whether to enable data checksum support])
156 AC_ARG_ENABLE([checksum],
157        AC_HELP_STRING([--disable-checksum],
158                        [disable data checksum support]),
159        [],[enable_checksum='yes'])
160 AC_MSG_RESULT([$enable_checksum])
161 if test x$enable_checksum != xno ; then
162   AC_DEFINE(ENABLE_CHECKSUM, 1, do data checksums)
163 fi
164 ])
165
166 #
167 # LC_CONFIG_LIBLUSTRE_RECOVERY
168 #
169 AC_DEFUN([LC_CONFIG_LIBLUSTRE_RECOVERY],
170 [AC_MSG_CHECKING([whether to enable liblustre recovery support])
171 AC_ARG_ENABLE([liblustre-recovery],
172         AC_HELP_STRING([--disable-liblustre-recovery],
173                         [disable liblustre recovery support]),
174         [],[enable_liblustre_recovery='yes'])
175 AC_MSG_RESULT([$enable_liblustre_recovery])
176 if test x$enable_liblustre_recovery != xno ; then
177   AC_DEFINE(ENABLE_LIBLUSTRE_RECOVERY, 1, Liblustre Can Recover)
178 fi
179 ])
180
181 #
182 # LC_CONFIG_HEALTH_CHECK_WRITE
183 #
184 # Turn off the actual write to the disk
185 #
186 AC_DEFUN([LC_CONFIG_HEALTH_CHECK_WRITE],
187 [AC_MSG_CHECKING([whether to enable a write with the health check])
188 AC_ARG_ENABLE([health_write],
189         AC_HELP_STRING([--enable-health_write],
190                         [enable disk writes when doing health check]),
191         [],[enable_health_write='no'])
192 AC_MSG_RESULT([$enable_health_write])
193 if test x$enable_health_write != xno ; then
194   AC_DEFINE(USE_HEALTH_CHECK_WRITE, 1, Write when Checking Health)
195 fi
196 ])
197
198 AC_DEFUN([LC_CONFIG_LRU_RESIZE],
199 [AC_MSG_CHECKING([whether to enable lru self-adjusting])
200 AC_ARG_ENABLE([lru_resize],
201         AC_HELP_STRING([--enable-lru-resize],
202                         [enable lru resize support]),
203         [],[enable_lru_resize='yes'])
204 AC_MSG_RESULT([$enable_lru_resize])
205 if test x$enable_lru_resize != xno; then
206    AC_DEFINE(HAVE_LRU_RESIZE_SUPPORT, 1, [Enable lru resize support])
207 fi
208 ])
209
210 #
211 # Quota support. The kernel must support CONFIG_QUOTA.
212 #
213 AC_DEFUN([LC_QUOTA_CONFIG],
214 [LB_LINUX_CONFIG_IM([QUOTA],[],[
215         AC_MSG_ERROR([Lustre quota requires that CONFIG_QUOTA is enabled in your kernel.])
216         ])
217 ])
218
219 # truncate_complete_page() was exported from RHEL5/SLES10, but not in SLES11 SP0 (2.6.27)
220 # remove_from_page_cache() was exported between 2.6.35 and 2.6.38
221 # delete_from_page_cache() is exported from 2.6.39
222 AC_DEFUN([LC_EXPORT_TRUNCATE_COMPLETE],
223          [LB_CHECK_SYMBOL_EXPORT([truncate_complete_page],
224                                  [mm/truncate.c],
225                                  [AC_DEFINE(HAVE_TRUNCATE_COMPLETE_PAGE, 1,
226                                             [kernel export truncate_complete_page])])
227           LB_CHECK_SYMBOL_EXPORT([remove_from_page_cache],
228                                  [mm/filemap.c],
229                                  [AC_DEFINE(HAVE_REMOVE_FROM_PAGE_CACHE, 1,
230                                             [kernel export remove_from_page_cache])])
231           LB_CHECK_SYMBOL_EXPORT([delete_from_page_cache],
232                                  [mm/filemap.c],
233                                  [AC_DEFINE(HAVE_DELETE_FROM_PAGE_CACHE, 1,
234                                             [kernel export delete_from_page_cache])])
235          ])
236
237 AC_DEFUN([LC_EXPORT_D_REHASH_COND],
238 [LB_CHECK_SYMBOL_EXPORT([d_rehash_cond],
239 [fs/dcache.c],[
240 AC_DEFINE(HAVE_D_REHASH_COND, 1,
241             [d_rehash_cond is exported by the kernel])
242 ],[
243 ])
244 ])
245
246 AC_DEFUN([LC_EXPORT___D_REHASH],
247 [LB_CHECK_SYMBOL_EXPORT([__d_rehash],
248 [fs/dcache.c],[
249 AC_DEFINE(HAVE___D_REHASH, 1,
250             [__d_rehash is exported by the kernel])
251 ],[
252 ])
253 ])
254
255 # The actual symbol exported varies among architectures, so we need
256 # to check many symbols (but only in the current architecture.)  No
257 # matter what symbol is exported, the kernel #defines node_to_cpumask
258 # to the appropriate function and that's what we use.
259 AC_DEFUN([LC_EXPORT_NODE_TO_CPUMASK],
260          [LB_CHECK_SYMBOL_EXPORT([node_to_cpumask],
261                                  [arch/$LINUX_ARCH/mm/numa.c],
262                                  [AC_DEFINE(HAVE_NODE_TO_CPUMASK, 1,
263                                             [node_to_cpumask is exported by
264                                              the kernel])]) # x86_64
265           LB_CHECK_SYMBOL_EXPORT([node_to_cpu_mask],
266                                  [arch/$LINUX_ARCH/kernel/smpboot.c],
267                                  [AC_DEFINE(HAVE_NODE_TO_CPUMASK, 1,
268                                             [node_to_cpumask is exported by
269                                              the kernel])]) # ia64
270           LB_CHECK_SYMBOL_EXPORT([node_2_cpu_mask],
271                                  [arch/$LINUX_ARCH/kernel/smpboot.c],
272                                  [AC_DEFINE(HAVE_NODE_TO_CPUMASK, 1,
273                                             [node_to_cpumask is exported by
274                                              the kernel])]) # i386
275           ])
276
277 #
278 #
279 # between 2.6.5 - 2.6.22 filemap_populate is exported in some kernels
280 #
281 AC_DEFUN([LC_FILEMAP_POPULATE],
282 [AC_MSG_CHECKING([for exported filemap_populate])
283 LB_LINUX_TRY_COMPILE([
284         #include <asm/page.h>
285         #include <linux/mm.h>
286 ],[
287        filemap_populate(NULL, 0, 0, __pgprot(0), 0, 0);
288 ],[
289         AC_MSG_RESULT([yes])
290         AC_DEFINE(HAVE_FILEMAP_POPULATE, 1, [Kernel exports filemap_populate])
291 ],[
292         AC_MSG_RESULT([no])
293 ])
294 ])
295
296 #
297 # added in 2.6.17
298 #
299 AC_DEFUN([LC_BIT_SPINLOCK_H],
300 [LB_CHECK_FILE([$LINUX/include/linux/bit_spinlock.h],[
301         AC_MSG_CHECKING([if bit_spinlock.h can be compiled])
302         LB_LINUX_TRY_COMPILE([
303                 #include <asm/processor.h>
304                 #include <linux/spinlock.h>
305                 #include <linux/bit_spinlock.h>
306         ],[],[
307                 AC_MSG_RESULT([yes])
308                 AC_DEFINE(HAVE_BIT_SPINLOCK_H, 1, [Kernel has bit_spinlock.h])
309         ],[
310                 AC_MSG_RESULT([no])
311         ])
312 ],
313 [])
314 ])
315
316 #
317 # LC_CAPA_CRYPTO
318 #
319 AC_DEFUN([LC_CAPA_CRYPTO],
320 [LB_LINUX_CONFIG_IM([CRYPTO],[],[
321         AC_MSG_ERROR([Lustre capability require that CONFIG_CRYPTO is enabled in your kernel.])
322 ])
323 LB_LINUX_CONFIG_IM([CRYPTO_HMAC],[],[
324         AC_MSG_ERROR([Lustre capability require that CONFIG_CRYPTO_HMAC is enabled in your kernel.])
325 ])
326 LB_LINUX_CONFIG_IM([CRYPTO_SHA1],[],[
327         AC_MSG_ERROR([Lustre capability require that CONFIG_CRYPTO_SHA1 is enabled in your kernel.])
328 ])
329 ])
330
331 #
332 # LC_CONFIG_RMTCLIENT
333 #
334 dnl FIXME
335 dnl the AES symbol usually tied with arch, e.g. CRYPTO_AES_586
336 dnl FIXME
337 AC_DEFUN([LC_CONFIG_RMTCLIENT],
338 [LB_LINUX_CONFIG_IM([CRYPTO_AES],[],[
339         AC_MSG_WARN([Lustre remote client require that CONFIG_CRYPTO_AES is enabled in your kernel.])
340 ])
341 ])
342
343 #
344 # LC_CONFIG_GSS_KEYRING (default enabled, if gss is enabled)
345 #
346 AC_DEFUN([LC_CONFIG_GSS_KEYRING],
347 [AC_MSG_CHECKING([whether to enable gss keyring backend])
348  AC_ARG_ENABLE([gss_keyring],
349                [AC_HELP_STRING([--disable-gss-keyring],
350                                [disable gss keyring backend])],
351                [],[enable_gss_keyring='yes'])
352  AC_MSG_RESULT([$enable_gss_keyring])
353
354  if test x$enable_gss_keyring != xno; then
355         LB_LINUX_CONFIG_IM([KEYS],[],
356                            [AC_MSG_ERROR([GSS keyring backend require that CONFIG_KEYS be enabled in your kernel.])])
357
358         AC_CHECK_LIB([keyutils], [keyctl_search], [],
359                      [AC_MSG_ERROR([libkeyutils is not found, which is required by gss keyring backend])],)
360
361         AC_DEFINE([HAVE_GSS_KEYRING], [1],
362                   [Define this if you enable gss keyring backend])
363  fi
364 ])
365
366 AC_DEFUN([LC_CONFIG_SUNRPC],
367 [LB_LINUX_CONFIG_IM([SUNRPC],[],
368                     [AC_MSG_ERROR([kernel SUNRPC support is required by using GSS.])])
369 ])
370
371 #
372 # LC_CONFIG_GSS (default disabled)
373 #
374 # Build gss and related tools of Lustre. Currently both kernel and user space
375 # parts are depend on linux platform.
376 #
377 AC_DEFUN([LC_CONFIG_GSS],
378 [AC_MSG_CHECKING([whether to enable gss/krb5 support])
379  AC_ARG_ENABLE([gss],
380                [AC_HELP_STRING([--enable-gss], [enable gss/krb5 support])],
381                [],[enable_gss='no'])
382  AC_MSG_RESULT([$enable_gss])
383
384  if test x$enable_gss == xyes; then
385         LC_CONFIG_GSS_KEYRING
386         LC_CONFIG_SUNRPC
387
388         AC_DEFINE([HAVE_GSS], [1], [Define this if you enable gss])
389
390         LB_LINUX_CONFIG_IM([CRYPTO_MD5],[],
391                            [AC_MSG_WARN([kernel MD5 support is recommended by using GSS.])])
392         LB_LINUX_CONFIG_IM([CRYPTO_SHA1],[],
393                            [AC_MSG_WARN([kernel SHA1 support is recommended by using GSS.])])
394         LB_LINUX_CONFIG_IM([CRYPTO_SHA256],[],
395                            [AC_MSG_WARN([kernel SHA256 support is recommended by using GSS.])])
396         LB_LINUX_CONFIG_IM([CRYPTO_SHA512],[],
397                            [AC_MSG_WARN([kernel SHA512 support is recommended by using GSS.])])
398
399         AC_CHECK_LIB([gssapi], [gss_export_lucid_sec_context],
400                      [GSSAPI_LIBS="$GSSAPI_LDFLAGS -lgssapi"],
401                      [AC_CHECK_LIB([gssglue], [gss_export_lucid_sec_context],
402                                    [GSSAPI_LIBS="$GSSAPI_LDFLAGS -lgssglue"],
403                                    [AC_MSG_ERROR([libgssapi or libgssglue is not found, which is required by GSS.])])],)
404
405         AC_SUBST(GSSAPI_LIBS)
406
407         AC_KERBEROS_V5
408  fi
409 ])
410
411 AC_DEFUN([LC_TASK_CLENV_STORE],
412 [
413         AC_MSG_CHECKING([if we can store cl_env in task_struct])
414         if test x$have_task_clenv_store != xyes ; then
415                 LC_TASK_CLENV_TUX_INFO
416         fi
417 ])
418
419 # 2.6.12
420
421 # ~2.6.12 merge patch from oracle to convert tree_lock from spinlock to rwlock
422 # yet tree_lock is converted from rwlock to spin_lock since v2.6.26
423 AC_DEFUN([LC_RW_TREE_LOCK],
424 [AC_MSG_CHECKING([if kernel has tree_lock as rwlock])
425 tmp_flags="$EXTRA_KCFLAGS"
426 EXTRA_KCFLAGS="-Werror"
427 LB_LINUX_TRY_COMPILE([
428         #include <linux/fs.h>
429 ],[
430         struct address_space a;
431
432         write_lock(&a.tree_lock);
433 ],[
434         AC_MSG_RESULT([yes])
435         AC_DEFINE(HAVE_RW_TREE_LOCK, 1, [kernel has tree_lock as rw_lock])
436 ],[
437         AC_MSG_RESULT([no])
438 ])
439 EXTRA_KCFLAGS="$tmp_flags"
440 ])
441
442 # 2.6.18
443
444 # LC_UMOUNTBEGIN_HAS_VFSMOUNT
445 # 2.6.18~2.6.25 umount_begin has different parameters
446 AC_DEFUN([LC_UMOUNTBEGIN_HAS_VFSMOUNT],
447 [AC_MSG_CHECKING([if umount_begin needs vfsmount parameter instead of super_block])
448 tmp_flags="$EXTRA_KCFLAGS"
449 EXTRA_KCFLAGS="-Werror"
450 LB_LINUX_TRY_COMPILE([
451         #include <linux/fs.h>
452
453         struct vfsmount;
454         static void cfg_umount_begin (struct vfsmount *v, int flags)
455         {
456                 ;
457         }
458
459         static struct super_operations cfg_super_operations = {
460                 .umount_begin   = cfg_umount_begin,
461         };
462 ],[
463         cfg_super_operations.umount_begin(NULL,0);
464 ],[
465         AC_MSG_RESULT(yes)
466         AC_DEFINE(HAVE_UMOUNTBEGIN_VFSMOUNT, 1,
467                 [Define umount_begin need second argument])
468 ],[
469         AC_MSG_RESULT(no)
470 ])
471 EXTRA_KCFLAGS="$tmp_flags"
472 ])
473
474 #2.6.18 + RHEL5 (fc6)
475
476 #
477 # LC_LINUX_FIEMAP_H
478 #
479 # fiemap.h is added since v2.6.28
480 # RHEL5 2.6.18 has it, while SLES10 2.6.27 does not
481 #
482 AC_DEFUN([LC_LINUX_FIEMAP_H],
483 [LB_CHECK_FILE([$LINUX/include/linux/fiemap.h],[
484         AC_MSG_CHECKING([if fiemap.h can be compiled])
485         LB_LINUX_TRY_COMPILE([
486                 #include <linux/types.h>
487                 #include <linux/fiemap.h>
488         ],[],[
489                 AC_MSG_RESULT([yes])
490                 AC_DEFINE(HAVE_LINUX_FIEMAP_H, 1, [Kernel has fiemap.h])
491         ],[
492                 AC_MSG_RESULT([no])
493         ])
494 ],
495 [])
496 ])
497
498 # 2.6.19
499
500 # LC_FILE_WRITEV
501 # 2.6.19 replaced writev with aio_write
502 AC_DEFUN([LC_FILE_WRITEV],
503 [AC_MSG_CHECKING([writev in fops])
504 LB_LINUX_TRY_COMPILE([
505         #include <linux/fs.h>
506 ],[
507         struct file_operations *fops = NULL;
508         fops->writev = NULL;
509 ],[
510         AC_MSG_RESULT(yes)
511         AC_DEFINE(HAVE_FILE_WRITEV, 1,
512                 [use fops->writev])
513 ],[
514         AC_MSG_RESULT(no)
515 ])
516 ])
517
518 # LC_FILE_READV
519 # 2.6.19 replaced readv with aio_read
520 AC_DEFUN([LC_FILE_READV],
521 [AC_MSG_CHECKING([readv in fops])
522 LB_LINUX_TRY_COMPILE([
523         #include <linux/fs.h>
524 ],[
525         struct file_operations *fops = NULL;
526         fops->readv = NULL;
527 ],[
528         AC_MSG_RESULT(yes)
529         AC_DEFINE(HAVE_FILE_READV, 1,
530                 [use fops->readv])
531 ],[
532         AC_MSG_RESULT(no)
533 ])
534 ])
535
536 # 2.6.20
537
538 # LC_CANCEL_DIRTY_PAGE
539 # 2.6.20 introduced cancel_dirty_page instead of clear_page_dirty.
540 AC_DEFUN([LC_CANCEL_DIRTY_PAGE],
541         [AC_MSG_CHECKING([kernel has cancel_dirty_page])
542         # the implementation of cancel_dirty_page in OFED 1.4.1's SLES10 SP2
543         # backport is broken, so ignore it
544         if test -f $OFED_BACKPORT_PATH/linux/mm.h &&
545            test "$(sed -ne '/^static inline void cancel_dirty_page(struct page \*page, unsigned int account_size)$/,/^}$/p' $OFED_BACKPORT_PATH/linux/mm.h | md5sum)" = "c518cb32d6394760c5bca14cb7538d3e  -"; then
546                 AC_MSG_RESULT(no)
547         else
548                 LB_LINUX_TRY_COMPILE([
549                         #include <linux/mm.h>
550                         #include <linux/page-flags.h>
551 ],[
552                         cancel_dirty_page(NULL, 0);
553 ],[
554                         AC_MSG_RESULT(yes)
555                         AC_DEFINE(HAVE_CANCEL_DIRTY_PAGE, 1,
556                                   [kernel has cancel_dirty_page instead of clear_page_dirty])
557 ],[
558                         AC_MSG_RESULT(no)
559 ])
560         fi
561 ])
562
563 # raid5-zerocopy patch
564
565 #
566 # LC_PAGE_CONSTANT
567 #
568 # In order to support raid5 zerocopy patch, we have to patch the kernel to make
569 # it support constant page, which means the page won't be modified during the
570 # IO.
571 #
572 AC_DEFUN([LC_PAGE_CONSTANT],
573 [AC_MSG_CHECKING([if kernel have PageConstant defined])
574 LB_LINUX_TRY_COMPILE([
575         #include <linux/mm.h>
576         #include <linux/page-flags.h>
577 ],[
578         #ifndef PG_constant
579         #error "Have no raid5 zcopy patch"
580         #endif
581 ],[
582         AC_MSG_RESULT(yes)
583         AC_DEFINE(HAVE_PAGE_CONSTANT, 1, [kernel have PageConstant supported])
584 ],[
585         AC_MSG_RESULT(no);
586 ])
587 ])
588
589 # 2.6.22
590
591 # 2.6.22 lost second parameter for invalidate_bdev
592 AC_DEFUN([LC_INVALIDATE_BDEV_2ARG],
593 [AC_MSG_CHECKING([if invalidate_bdev has second argument])
594 LB_LINUX_TRY_COMPILE([
595         #include <linux/buffer_head.h>
596 ],[
597         invalidate_bdev(NULL,0);
598 ],[
599         AC_MSG_RESULT([yes])
600         AC_DEFINE(HAVE_INVALIDATE_BDEV_2ARG, 1,
601                 [invalidate_bdev has second argument])
602 ],[
603         AC_MSG_RESULT([no])
604 ])
605 ])
606
607 #
608 # check for crypto API
609 #
610 AC_DEFUN([LC_ASYNC_BLOCK_CIPHER],
611 [AC_MSG_CHECKING([if kernel has block cipher support])
612 LB_LINUX_TRY_COMPILE([
613         #include <linux/err.h>
614         #include <linux/crypto.h>
615 ],[
616         struct crypto_blkcipher *tfm;
617         tfm = crypto_alloc_blkcipher("aes", 0, sizeof(tfm) );
618 ],[
619         AC_MSG_RESULT([yes])
620         AC_DEFINE(HAVE_ASYNC_BLOCK_CIPHER, 1, [kernel has block cipher support])
621 ],[
622         AC_MSG_RESULT([no])
623 ])
624 ])
625
626 #
627 # check for struct hash_desc
628 #
629 AC_DEFUN([LC_STRUCT_HASH_DESC],
630 [AC_MSG_CHECKING([if kernel has struct hash_desc])
631 LB_LINUX_TRY_COMPILE([
632         #include <linux/err.h>
633         #include <linux/crypto.h>
634 ],[
635         struct hash_desc foo __attribute__ ((unused));
636 ],[
637         AC_MSG_RESULT([yes])
638         AC_DEFINE(HAVE_STRUCT_HASH_DESC, 1, [kernel has struct hash_desc])
639 ],[
640         AC_MSG_RESULT([no])
641 ])
642 ])
643
644 #
645 # check for struct blkcipher_desc
646 #
647 AC_DEFUN([LC_STRUCT_BLKCIPHER_DESC],
648 [AC_MSG_CHECKING([if kernel has struct blkcipher_desc])
649 LB_LINUX_TRY_COMPILE([
650         #include <linux/err.h>
651         #include <linux/crypto.h>
652 ],[
653         struct blkcipher_desc foo __attribute__ ((unused));
654 ],[
655         AC_MSG_RESULT([yes])
656         AC_DEFINE(HAVE_STRUCT_BLKCIPHER_DESC, 1, [kernel has struct blkcipher_desc])
657 ],[
658         AC_MSG_RESULT([no])
659 ])
660 ])
661
662 #
663 # 2.6.19 check for FS_RENAME_DOES_D_MOVE flag
664 #
665 AC_DEFUN([LC_FS_RENAME_DOES_D_MOVE],
666 [AC_MSG_CHECKING([if kernel has FS_RENAME_DOES_D_MOVE flag])
667 LB_LINUX_TRY_COMPILE([
668         #include <linux/fs.h>
669 ],[
670         int v __attribute__ ((unused));
671         v = FS_RENAME_DOES_D_MOVE;
672 ],[
673         AC_MSG_RESULT([yes])
674         AC_DEFINE(HAVE_FS_RENAME_DOES_D_MOVE, 1, [kernel has FS_RENAME_DOES_D_MOVE flag])
675 ],[
676         AC_MSG_RESULT([no])
677 ])
678 ])
679
680 # 2.6.23
681
682 # 2.6.23 have return type 'void' for unregister_blkdev
683 AC_DEFUN([LC_UNREGISTER_BLKDEV_RETURN_INT],
684 [AC_MSG_CHECKING([if unregister_blkdev return int])
685 LB_LINUX_TRY_COMPILE([
686         #include <linux/fs.h>
687 ],[
688         int i __attribute__ ((unused));
689         i = unregister_blkdev(0,NULL);
690 ],[
691         AC_MSG_RESULT([yes])
692         AC_DEFINE(HAVE_UNREGISTER_BLKDEV_RETURN_INT, 1,
693                 [unregister_blkdev return int])
694 ],[
695         AC_MSG_RESULT([no])
696 ])
697 ])
698
699 # 2.6.23 change .sendfile to .splice_read
700 AC_DEFUN([LC_KERNEL_SPLICE_READ],
701 [AC_MSG_CHECKING([if kernel has .splice_read])
702 LB_LINUX_TRY_COMPILE([
703         #include <linux/fs.h>
704 ],[
705         struct file_operations file;
706
707         file.splice_read = NULL;
708 ], [
709         AC_MSG_RESULT([yes])
710         AC_DEFINE(HAVE_KERNEL_SPLICE_READ, 1,
711                 [kernel has .slice_read])
712 ],[
713         AC_MSG_RESULT([no])
714 ])
715 ])
716
717 # 2.6.23 change .sendfile to .splice_read
718 # RHEL4 (-92 kernel) have both sendfile and .splice_read API
719 AC_DEFUN([LC_KERNEL_SENDFILE],
720 [AC_MSG_CHECKING([if kernel has .sendfile])
721 LB_LINUX_TRY_COMPILE([
722         #include <linux/fs.h>
723 ],[
724         struct file_operations file;
725
726         file.sendfile = NULL;
727 ], [
728         AC_MSG_RESULT([yes])
729         AC_DEFINE(HAVE_KERNEL_SENDFILE, 1,
730                 [kernel has .sendfile])
731 ],[
732         AC_MSG_RESULT([no])
733 ])
734 ])
735
736 # 2.6.23 extract nfs export related data into exportfs.h
737 AC_DEFUN([LC_HAVE_EXPORTFS_H],
738 [LB_CHECK_FILE([$LINUX/include/linux/exportfs.h], [
739         AC_DEFINE(HAVE_LINUX_EXPORTFS_H, 1,
740                 [kernel has include/exportfs.h])
741 ],[
742         AC_MSG_RESULT([no])
743 ])
744 ])
745
746 # 2.6.23 has new page fault handling API
747 AC_DEFUN([LC_VM_OP_FAULT],
748 [AC_MSG_CHECKING([kernel has .fault in vm_operation_struct])
749 LB_LINUX_TRY_COMPILE([
750         #include <linux/mm.h>
751 ],[
752         struct vm_operations_struct op;
753
754         op.fault = NULL;
755 ], [
756         AC_MSG_RESULT([yes])
757         AC_DEFINE(HAVE_VM_OP_FAULT, 1,
758                 [kernel has .fault in vm_operation_struct])
759 ],[
760         AC_MSG_RESULT([no])
761 ])
762 ])
763
764 # 2.6.23 add code to wait other users to complete before removing procfs entry
765 AC_DEFUN([LC_PROCFS_USERS],
766 [AC_MSG_CHECKING([if kernel has pde_users member in procfs entry struct])
767 LB_LINUX_TRY_COMPILE([
768         #include <linux/proc_fs.h>
769 ],[
770         struct proc_dir_entry pde;
771
772         pde.pde_users   = 0;
773 ],[
774         AC_MSG_RESULT([yes])
775         AC_DEFINE(HAVE_PROCFS_USERS, 1,
776                 [kernel has pde_users member in procfs entry struct])
777 ],[
778         LB_LINUX_TRY_COMPILE([
779                 #include "$LINUX/fs/proc/internal.h"
780         ],[
781                 struct proc_dir_entry_aux pde_aux;
782
783                 pde_aux.pde_users = 0;
784         ],[
785                 AC_MSG_RESULT([yes])
786                 AC_DEFINE(HAVE_PROCFS_USERS, 1,
787                         [kernel has pde_users member in proc_dir_entry_aux])
788         ],[
789                 AC_MSG_RESULT([no])
790         ])
791 ])
792 ])
793
794 # 2.6.23 exports exportfs_decode_fh
795 AC_DEFUN([LC_EXPORTFS_DECODE_FH],
796 [LB_CHECK_SYMBOL_EXPORT([exportfs_decode_fh],
797 [fs/exportfs/expfs.c],[
798         AC_DEFINE(HAVE_EXPORTFS_DECODE_FH, 1,
799                 [exportfs_decode_fh has been export])
800 ],[
801 ])
802 ])
803
804 # 2.6.24
805
806 # 2.6.24 need linux/mm_types.h included
807 AC_DEFUN([LC_HAVE_MMTYPES_H],
808 [LB_CHECK_FILE([$LINUX/include/linux/mm_types.h], [
809         AC_DEFINE(HAVE_LINUX_MMTYPES_H, 1,
810                 [kernel has include/mm_types.h])
811 ],[
812         AC_MSG_RESULT([no])
813 ])
814 ])
815
816 # 2.6.24 has bio_endio with 2 args
817 AC_DEFUN([LC_BIO_ENDIO_2ARG],
818 [AC_MSG_CHECKING([if kernel has bio_endio with 2 args])
819 LB_LINUX_TRY_COMPILE([
820         #include <linux/bio.h>
821 ],[
822         bio_endio(NULL, 0);
823 ], [
824         AC_MSG_RESULT([yes])
825         AC_DEFINE(HAVE_BIO_ENDIO_2ARG, 1,
826                 [kernel has bio_endio with 2 args])
827 ],[
828         AC_MSG_RESULT([no])
829 ])
830 ])
831
832 # 2.6.24 has new members in exports struct.
833 AC_DEFUN([LC_FH_TO_DENTRY],
834 [AC_MSG_CHECKING([if kernel has .fh_to_dentry member in export_operations struct])
835 LB_LINUX_TRY_COMPILE([
836         #include <linux/fs.h>
837 #ifdef HAVE_LINUX_EXPORTFS_H
838         #include <linux/exportfs.h>
839 #endif
840 ],[
841         do{ }while(sizeof(((struct export_operations *)0)->fh_to_dentry));
842 ], [
843         AC_MSG_RESULT([yes])
844         AC_DEFINE(HAVE_FH_TO_DENTRY, 1,
845                 [kernel has .fh_to_dentry member in export_operations struct])
846 ],[
847         AC_MSG_RESULT([no])
848 ])
849 ])
850
851 # 2.6.24 removes long aged procfs entry -> deleted member
852 AC_DEFUN([LC_PROCFS_DELETED],
853 [AC_MSG_CHECKING([if kernel has deleted member in procfs entry struct])
854 LB_LINUX_TRY_COMPILE([
855         #include <linux/proc_fs.h>
856 ],[
857         struct proc_dir_entry pde;
858
859         pde.deleted = sizeof(pde);
860 ], [
861         AC_MSG_RESULT([yes])
862         AC_DEFINE(HAVE_PROCFS_DELETED, 1,
863                 [kernel has deleted member in procfs entry struct])
864 ],[
865         AC_MSG_RESULT([no])
866 ])
867 ])
868
869 # 2.6.24 has bdi_init()/bdi_destroy() functions.
870 AC_DEFUN([LC_EXPORT_BDI_INIT],
871 [LB_CHECK_SYMBOL_EXPORT([bdi_init],
872 [mm/backing-dev.c],[
873         AC_DEFINE(HAVE_BDI_INIT, 1,
874                 [bdi_init/bdi_destroy functions are present])
875 ],[
876 ])
877 ])
878
879 # 2.6.26
880
881 # 2.6.26 isn't export set_fs_pwd and change paramter in fs struct
882 AC_DEFUN([LC_FS_STRUCT_USE_PATH],
883 [AC_MSG_CHECKING([fs_struct use path structure])
884 LB_LINUX_TRY_COMPILE([
885         #include <asm/atomic.h>
886         #include <linux/spinlock.h>
887         #include <linux/fs_struct.h>
888 ],[
889         struct fs_struct fs;
890
891         fs.pwd = *((struct path *)sizeof(fs));
892 ], [
893         AC_MSG_RESULT([yes])
894         AC_DEFINE(HAVE_FS_STRUCT_USE_PATH, 1,
895                 [fs_struct use path structure])
896 ],[
897         AC_MSG_RESULT([no])
898 ])
899 ])
900
901 #
902 # 2.6.27
903 #
904
905 # LC_SECURITY_PLUG  # for SLES10 SP2 (2.6.27)
906 # check security plug in sles10 sp2 kernel
907 AC_DEFUN([LC_SECURITY_PLUG],
908 [AC_MSG_CHECKING([If kernel has security plug support])
909 LB_LINUX_TRY_COMPILE([
910         #include <linux/fs.h>
911         #include <linux/stddef.h>
912 ],[
913         notify_change(NULL, NULL, NULL);
914 ],[
915         AC_MSG_RESULT(yes)
916         AC_DEFINE(HAVE_SECURITY_PLUG, 1,
917                 [SLES10 SP2 use extra parameter in vfs])
918 ],[
919         AC_MSG_RESULT(no)
920 ])
921 ])
922
923 AC_DEFUN([LC_PGMKWRITE_USE_VMFAULT],
924 [AC_MSG_CHECKING([kernel .page_mkwrite uses struct vm_fault *])
925 tmp_flags="$EXTRA_KCFLAGS"
926 EXTRA_KCFLAGS="-Werror"
927 LB_LINUX_TRY_COMPILE([
928         #include <linux/mm.h>
929 ],[
930         ((struct vm_operations_struct *)0)->page_mkwrite((struct vm_area_struct *)0, (struct vm_fault *)0);
931 ], [
932         AC_MSG_RESULT([yes])
933         AC_DEFINE(HAVE_PGMKWRITE_USE_VMFAULT, 1,
934                 [kernel vm_operation_struct.page_mkwrite uses struct vm_fault * as second parameter])
935 ],[
936         AC_MSG_RESULT([no])
937 ])
938 EXTRA_KCFLAGS="$tmp_flags"
939 ])
940
941 AC_DEFUN([LC_PGMKWRITE_COMPACT],
942 [AC_MSG_CHECKING([if kernel .page_mkwrite is located in vm_operation_struct._pmkw])
943 tmp_flags="$EXTRA_KCFLAGS"
944 EXTRA_KCFLAGS="-Werror"
945 LB_LINUX_TRY_COMPILE([
946         #include <linux/mm.h>
947 ],[
948         struct vm_operations_struct *vm_ops;
949
950         vm_ops = NULL;
951         vm_ops->_pmkw.page_mkwrite(NULL, NULL);
952 ], [
953         AC_MSG_RESULT([yes])
954         AC_DEFINE(HAVE_PGMKWRITE_COMPACT, 1,
955                 [kernel .page_mkwrite is located in vm_operation_struct._pmkw])
956 ],[
957         AC_MSG_RESULT([no])
958 ])
959 EXTRA_KCFLAGS="$tmp_flags"
960 ])
961
962 AC_DEFUN([LC_INODE_PERMISION_2ARGS],
963 [AC_MSG_CHECKING([inode_operations->permission has two args])
964 LB_LINUX_TRY_COMPILE([
965         #include <linux/fs.h>
966 ],[
967         struct inode *inode __attribute__ ((unused));
968
969         inode = NULL;
970         inode->i_op->permission(NULL, 0);
971 ],[
972         AC_DEFINE(HAVE_INODE_PERMISION_2ARGS, 1,
973                   [inode_operations->permission has two args])
974         AC_MSG_RESULT([yes])
975 ],[
976         AC_MSG_RESULT([no])
977 ])
978 ])
979
980 # 2.6.27 have new page locking API
981 AC_DEFUN([LC_TRYLOCKPAGE],
982 [AC_MSG_CHECKING([kernel uses trylock_page for page lock])
983 LB_LINUX_TRY_COMPILE([
984         #include <linux/pagemap.h>
985 ],[
986         trylock_page(NULL);
987 ],[
988         AC_DEFINE(HAVE_TRYLOCK_PAGE, 1,
989                   [kernel uses trylock_page for page lock])
990         AC_MSG_RESULT([yes])
991 ],[
992         AC_MSG_RESULT([no])
993 ])
994 ])
995
996 # 2.6.27 removed the read_inode from super_operations.
997 AC_DEFUN([LC_READ_INODE_IN_SBOPS],
998 [AC_MSG_CHECKING([super_operations has a read_inode field])
999 LB_LINUX_TRY_COMPILE([
1000         #include <linux/fs.h>
1001 ],[
1002         struct super_operations *sop;
1003         sop->read_inode(NULL);
1004 ],[
1005         AC_DEFINE(HAVE_READ_INODE_IN_SBOPS, 1,
1006                 [super_operations has a read_inode])
1007         AC_MSG_RESULT([yes])
1008 ],[
1009         AC_MSG_RESULT([no])
1010 ])
1011 ])
1012
1013 # 2.6.27 has inode_permission instead of permisson
1014 AC_DEFUN([LC_EXPORT_INODE_PERMISSION],
1015 [LB_CHECK_SYMBOL_EXPORT([inode_permission],
1016 [fs/namei.c],[
1017 AC_DEFINE(HAVE_EXPORT_INODE_PERMISSION, 1,
1018             [inode_permission is exported by the kernel])
1019 ],[
1020 ])
1021 ])
1022
1023 # 2.6.27 use 5th parameter in quota_on for remount.
1024 AC_DEFUN([LC_QUOTA_ON_5ARGS],
1025 [AC_MSG_CHECKING([quota_on needs 5 parameters])
1026 LB_LINUX_TRY_COMPILE([
1027         #include <linux/fs.h>
1028         #include <linux/quota.h>
1029 ],[
1030         struct quotactl_ops *qop = NULL;
1031         qop->quota_on(NULL, 0, 0, NULL, 0);
1032 ],[
1033         AC_DEFINE(HAVE_QUOTA_ON_5ARGS, 1,
1034                 [quota_on needs 5 paramters])
1035         AC_MSG_RESULT([yes])
1036 ],[
1037         AC_MSG_RESULT([no])
1038 ])
1039 ])
1040
1041 # 2.6.27 use 3th parameter in quota_off for remount.
1042 AC_DEFUN([LC_QUOTA_OFF_3ARGS],
1043 [AC_MSG_CHECKING([quota_off needs 3 parameters])
1044 LB_LINUX_TRY_COMPILE([
1045         #include <linux/fs.h>
1046         #include <linux/quota.h>
1047 ],[
1048         struct quotactl_ops *qop = NULL;
1049         qop->quota_off(NULL, 0, 0);
1050 ],[
1051         AC_DEFINE(HAVE_QUOTA_OFF_3ARGS, 1,
1052                 [quota_off needs 3 paramters])
1053         AC_MSG_RESULT([yes])
1054 ],[
1055         AC_MSG_RESULT([no])
1056 ])
1057 ])
1058
1059 # 2.6.27 has vfs_dq_off inline function.
1060 AC_DEFUN([LC_VFS_DQ_OFF],
1061 [AC_MSG_CHECKING([vfs_dq_off is defined])
1062 LB_LINUX_TRY_COMPILE([
1063         #include <linux/quotaops.h>
1064 ],[
1065         vfs_dq_off(NULL, 0);
1066 ],[
1067         AC_DEFINE(HAVE_VFS_DQ_OFF, 1, [vfs_dq_off is defined])
1068         AC_MSG_RESULT([yes])
1069 ],[
1070         AC_MSG_RESULT([no])
1071 ])
1072 ])
1073
1074 # 2.6.34 has quotactl_ops->[sg]et_dqblk that take struct fs_disk_quota
1075 AC_DEFUN([LC_HAVE_DQUOT_FS_DISK_QUOTA],
1076 tmp_flags="$EXTRA_KCFLAGS"
1077 EXTRA_KCFLAGS="-Werror"
1078 [AC_MSG_CHECKING([if quotactl_ops.set_dqblk takes struct fs_disk_quota])
1079 LB_LINUX_TRY_COMPILE([
1080         #include <linux/fs.h>
1081         #include <linux/quota.h>
1082 ],[
1083         struct quotactl_ops qops = {};
1084         struct fs_disk_quota fdq;
1085         qops.set_dqblk(NULL, 0, 0, &fdq);
1086 ],[
1087         AC_DEFINE(HAVE_DQUOT_FS_DISK_QUOTA, 1, [quotactl_ops.set_dqblk takes struct fs_disk_quota])
1088         AC_MSG_RESULT([yes])
1089 ],[
1090         AC_MSG_RESULT([no])
1091 ])
1092 EXTRA_KCFLAGS="$tmp_flags"
1093 ])
1094
1095 # 2.6.34 has renamed dquot options to dquot_*, check for dquot_suspend
1096 AC_DEFUN([LC_HAVE_DQUOT_SUSPEND],
1097 [AC_MSG_CHECKING([if dquot_suspend is defined])
1098 LB_LINUX_TRY_COMPILE([
1099         #include <linux/quotaops.h>
1100 ],[
1101         dquot_suspend(NULL, -1);
1102 ],[
1103         AC_DEFINE(HAVE_DQUOT_SUSPEND, 1, [dquot_suspend is defined])
1104         AC_MSG_RESULT([yes])
1105 ],[
1106         AC_MSG_RESULT([no])
1107 ])
1108 ])
1109
1110 # LC_LOCK_MAP_ACQUIRE
1111 # after 2.6.27 lock_map_acquire replaces lock_acquire
1112 AC_DEFUN([LC_LOCK_MAP_ACQUIRE],
1113 [AC_MSG_CHECKING([if lock_map_acquire is defined])
1114 LB_LINUX_TRY_COMPILE([
1115         #include <linux/lockdep.h>
1116 ],[
1117         lock_map_acquire(NULL);
1118 ],[
1119         AC_MSG_RESULT(yes)
1120         AC_DEFINE(HAVE_LOCK_MAP_ACQUIRE, 1,
1121                 [lock_map_acquire is defined])
1122 ],[
1123         AC_MSG_RESULT(no)
1124 ])
1125 ])
1126
1127 # 2.6.27.15-2 sles11
1128
1129 # 2.6.27 sles11 remove the bi_hw_segments
1130 AC_DEFUN([LC_BI_HW_SEGMENTS],
1131 [AC_MSG_CHECKING([struct bio has a bi_hw_segments field])
1132 LB_LINUX_TRY_COMPILE([
1133         #include <linux/bio.h>
1134 ],[
1135         struct bio io;
1136         io.bi_hw_segments = sizeof(io);
1137 ],[
1138         AC_DEFINE(HAVE_BI_HW_SEGMENTS, 1,
1139                 [struct bio has a bi_hw_segments field])
1140         AC_MSG_RESULT([yes])
1141 ],[
1142         AC_MSG_RESULT([no])
1143 ])
1144 ])
1145
1146 #
1147 # 2.6.27 sles11 move the quotaio_v1{2}.h from include/linux to fs
1148 # 2.6.32 move the quotaio_v1{2}.h from fs to fs/quota
1149 AC_DEFUN([LC_HAVE_QUOTAIO_H],
1150 [LB_CHECK_FILE([$LINUX/include/linux/quotaio_v2.h],[
1151         AC_DEFINE(HAVE_QUOTAIO_H, 1,
1152                 [kernel has include/linux/quotaio_v2.h])
1153 ],[LB_CHECK_FILE([$LINUX/fs/quotaio_v2.h],[
1154                AC_DEFINE(HAVE_FS_QUOTAIO_H, 1,
1155                 [kernel has fs/quotaio_v1.h])
1156 ],[LB_CHECK_FILE([$LINUX/fs/quota/quotaio_v2.h],[
1157                AC_DEFINE(HAVE_FS_QUOTA_QUOTAIO_H, 1,
1158                 [kernel has fs/quota/quotaio_v2.h])
1159 ],[
1160         AC_MSG_RESULT([no])
1161 ])
1162 ])
1163 ])
1164 ])
1165
1166 # 2.6.27 sles11 has sb_any_quota_active
1167 AC_DEFUN([LC_SB_ANY_QUOTA_ACTIVE],
1168 [AC_MSG_CHECKING([Kernel has sb_any_quota_active])
1169 LB_LINUX_TRY_COMPILE([
1170         #include <linux/quotaops.h>
1171 ],[
1172         sb_any_quota_active(NULL);
1173 ],[
1174         AC_DEFINE(HAVE_SB_ANY_QUOTA_ACTIVE, 1,
1175                 [Kernel has a sb_any_quota_active])
1176         AC_MSG_RESULT([yes])
1177 ],[
1178         AC_MSG_RESULT([no])
1179 ])
1180 ])
1181
1182 # 2.6.27 sles11 has sb_has_quota_active
1183 AC_DEFUN([LC_SB_HAS_QUOTA_ACTIVE],
1184 [AC_MSG_CHECKING([Kernel has sb_has_quota_active])
1185 LB_LINUX_TRY_COMPILE([
1186         #include <linux/quotaops.h>
1187 ],[
1188         sb_has_quota_active(NULL, 0);
1189 ],[
1190         AC_DEFINE(HAVE_SB_HAS_QUOTA_ACTIVE, 1,
1191                 [Kernel has a sb_has_quota_active])
1192         AC_MSG_RESULT([yes])
1193 ],[
1194         AC_MSG_RESULT([no])
1195 ])
1196 ])
1197
1198 # 2.6.27 exported add_to_page_cache_lru.
1199 AC_DEFUN([LC_EXPORT_ADD_TO_PAGE_CACHE_LRU],
1200 [LB_CHECK_SYMBOL_EXPORT([add_to_page_cache_lru],
1201 [mm/filemap.c],[
1202         AC_DEFINE(HAVE_ADD_TO_PAGE_CACHE_LRU, 1,
1203                 [add_to_page_cache_lru functions are present])
1204 ],[
1205 ])
1206 ])
1207
1208 #
1209 # 2.6.29 introduce sb_any_quota_loaded.
1210 #
1211 AC_DEFUN([LC_SB_ANY_QUOTA_LOADED],
1212 [AC_MSG_CHECKING([Kernel has sb_any_quota_loaded])
1213 LB_LINUX_TRY_COMPILE([
1214         #include <linux/quotaops.h>
1215 ],[
1216         sb_any_quota_loaded(NULL);
1217 ],[
1218         AC_DEFINE(HAVE_SB_ANY_QUOTA_LOADED, 1,
1219                 [Kernel has a sb_any_quota_loaded])
1220         AC_MSG_RESULT([yes])
1221 ],[
1222         AC_MSG_RESULT([no])
1223 ])
1224 ])
1225
1226 # 2.6.30 x86 node_to_cpumask has been removed. must use cpumask_of_node
1227 AC_DEFUN([LC_EXPORT_CPUMASK_OF_NODE],
1228          [LB_CHECK_SYMBOL_EXPORT([node_to_cpumask_map],
1229                                  [arch/$LINUX_ARCH/mm/numa.c],
1230                                  [AC_DEFINE(HAVE_CPUMASK_OF_NODE, 1,
1231                                             [node_to_cpumask_map is exported by
1232                                              the kernel])]) # x86_64
1233          ])
1234
1235
1236 # 2.6.31 replaces blk_queue_hardsect_size by blk_queue_logical_block_size function
1237 AC_DEFUN([LC_BLK_QUEUE_LOG_BLK_SIZE],
1238 [AC_MSG_CHECKING([if blk_queue_logical_block_size is defined])
1239 LB_LINUX_TRY_COMPILE([
1240         #include <linux/blkdev.h>
1241 ],[
1242         blk_queue_logical_block_size(NULL, 0);
1243 ],[
1244         AC_MSG_RESULT(yes)
1245         AC_DEFINE(HAVE_BLK_QUEUE_LOG_BLK_SIZE, 1,
1246                   [blk_queue_logical_block_size is defined])
1247 ],[
1248         AC_MSG_RESULT(no)
1249 ])
1250 ])
1251
1252 # 2.6.32
1253
1254 # 2.6.32 introduced inode_newsize_ok
1255 AC_DEFUN([LC_VFS_INODE_NEWSIZE_OK],
1256 [AC_MSG_CHECKING([if inode_newsize_ok is defined])
1257 LB_LINUX_TRY_COMPILE([
1258         #include <linux/fs.h>
1259 ],[
1260         return inode_newsize_ok(NULL, 0);
1261 ],[
1262         AC_MSG_RESULT(yes)
1263         AC_DEFINE(HAVE_VFS_INODE_NEWSIZE_OK, 1,
1264                   [inode_newsize_ok is defined])
1265 ],[
1266         AC_MSG_RESULT(no)
1267 ])
1268 ])
1269
1270 # 2.6.32 changes cache_detail's member cache_request to cache_upcall
1271 # in kernel commit bc74b4f5e63a09fb78e245794a0de1e5a2716bbe
1272 AC_DEFUN([LC_CACHE_UPCALL],
1273 [AC_MSG_CHECKING([if cache_detail has cache_upcall field])
1274         LB_LINUX_TRY_COMPILE([
1275                 #include <linux/sunrpc/cache.h>
1276         ],[
1277                 struct cache_detail cd;
1278                 cd.cache_upcall = NULL;
1279         ],[
1280                 AC_MSG_RESULT(yes)
1281                 AC_DEFINE(HAVE_CACHE_UPCALL, 1,
1282                           [cache_detail has cache_upcall field])
1283         ],[
1284                 AC_MSG_RESULT(no)
1285         ])
1286 ])
1287
1288 # 2.6.32 add a limits member in struct request_queue.
1289 AC_DEFUN([LC_REQUEST_QUEUE_LIMITS],
1290 [AC_MSG_CHECKING([if request_queue has a limits field])
1291 LB_LINUX_TRY_COMPILE([
1292         #include <linux/blkdev.h>
1293 ],[
1294         struct request_queue rq;
1295         rq.limits.io_min = 0;
1296 ],[
1297         AC_MSG_RESULT(yes)
1298         AC_DEFINE(HAVE_REQUEST_QUEUE_LIMITS, 1,
1299                   [request_queue has a limits field])
1300 ],[
1301         AC_MSG_RESULT(no)
1302 ])
1303 ])
1304
1305 # 2.6.32 has bdi_register() functions.
1306 AC_DEFUN([LC_EXPORT_BDI_REGISTER],
1307 [LB_CHECK_SYMBOL_EXPORT([bdi_register],
1308 [mm/backing-dev.c],[
1309         AC_DEFINE(HAVE_BDI_REGISTER, 1,
1310                 [bdi_register function is present])
1311 ],[
1312 ])
1313 ])
1314
1315 # 2.6.32 add s_bdi for super block
1316 AC_DEFUN([LC_SB_BDI],
1317 [AC_MSG_CHECKING([if super_block has s_bdi field])
1318 LB_LINUX_TRY_COMPILE([
1319         #include <linux/fs.h>
1320 ],[
1321         struct super_block sb;
1322         sb.s_bdi = NULL;
1323 ],[
1324         AC_MSG_RESULT(yes)
1325         AC_DEFINE(HAVE_SB_BDI, 1,
1326                   [super_block has s_bdi field])
1327 ],[
1328         AC_MSG_RESULT(no)
1329 ])
1330 ])
1331
1332 #  2.6.27.15-2 SuSE 11 sp0 kernels lack the name field for BDI
1333 AC_DEFUN([LC_BDI_NAME],
1334 [AC_MSG_CHECKING([if backing_device_info has name field])
1335 LB_LINUX_TRY_COMPILE([
1336         #include <linux/blkdev.h>
1337 ],[
1338         struct backing_dev_info bdi;
1339         bdi.name = NULL;
1340 ],[
1341         AC_MSG_RESULT(yes)
1342         AC_DEFINE(HAVE_BDI_NAME, 1,
1343                   [backing_device_info has name field])
1344 ],[
1345         AC_MSG_RESULT(no)
1346 ])
1347 ])
1348
1349 # 2.6.32 removes blk_queue_max_sectors and add blk_queue_max_hw_sectors
1350 # check blk_queue_max_sectors and use it until disappear.
1351 AC_DEFUN([LC_BLK_QUEUE_MAX_SECTORS],
1352 [AC_MSG_CHECKING([if blk_queue_max_sectors is defined])
1353 LB_LINUX_TRY_COMPILE([
1354         #include <linux/blkdev.h>
1355 ],[
1356         blk_queue_max_sectors(NULL, 0);
1357 ],[
1358         AC_MSG_RESULT(yes)
1359         AC_DEFINE(HAVE_BLK_QUEUE_MAX_SECTORS, 1,
1360                   [blk_queue_max_sectors is defined])
1361 ],[
1362         AC_MSG_RESULT(no)
1363 ])
1364 ])
1365
1366 # 2.6.32 replaces 2 functions blk_queue_max_phys_segments and blk_queue_max_hw_segments by blk_queue_max_segments
1367 AC_DEFUN([LC_BLK_QUEUE_MAX_SEGMENTS],
1368 [AC_MSG_CHECKING([if blk_queue_max_segments is defined])
1369 LB_LINUX_TRY_COMPILE([
1370         #include <linux/blkdev.h>
1371 ],[
1372         blk_queue_max_segments(NULL, 0);
1373 ],[
1374         AC_MSG_RESULT(yes)
1375         AC_DEFINE(HAVE_BLK_QUEUE_MAX_SEGMENTS, 1,
1376                   [blk_queue_max_segments is defined])
1377 ],[
1378         AC_MSG_RESULT(no)
1379 ])
1380 ])
1381
1382 #
1383 # LC_QUOTA64
1384 #
1385 # Check if kernel has been patched for 64-bit quota limits support.
1386 # The upstream version of this patch in RHEL6 2.6.32 kernels introduces
1387 # the constant QFMT_VFS_V1 in include/linux/quota.h, so we can check for
1388 # that in the absence of quotaio_v1.h in the kernel headers.
1389 #
1390 AC_DEFUN([LC_QUOTA64],[
1391         AC_MSG_CHECKING([if kernel has 64-bit quota limits support])
1392 tmp_flags="$EXTRA_KCFLAGS"
1393 EXTRA_KCFLAGS="-I$LINUX/fs"
1394         LB_LINUX_TRY_COMPILE([
1395                 #include <linux/kernel.h>
1396                 #include <linux/fs.h>
1397                 #ifdef HAVE_QUOTAIO_H
1398                 # include <linux/quotaio_v2.h>
1399                 int versions[] = V2_INITQVERSIONS_R1;
1400                 struct v2_disk_dqblk_r1 dqblk_r1;
1401                 #elif defined(HAVE_FS_QUOTA_QUOTAIO_H)
1402                 # include <quota/quotaio_v2.h>
1403                 struct v2r1_disk_dqblk dqblk_r1;
1404                 #elif defined(HAVE_FS_QUOTAIO_H)
1405                 # include <quotaio_v2.h>
1406                 struct v2r1_disk_dqblk dqblk_r1;
1407                 #else
1408                 #include <linux/quota.h>
1409                 int ver = QFMT_VFS_V1;
1410                 #endif
1411         ],[],[
1412                 AC_DEFINE(HAVE_QUOTA64, 1, [have quota64])
1413                 AC_MSG_RESULT([yes])
1414         ],[
1415                 LB_CHECK_FILE([$LINUX/include/linux/lustre_version.h],[
1416                         AC_MSG_ERROR([You have got no 64-bit kernel quota support.])
1417                 ],[])
1418                 AC_MSG_RESULT([no])
1419         ])
1420 EXTRA_KCFLAGS=$tmp_flags
1421 ])
1422
1423 # 2.6.32 set_cpus_allowed is no more defined if CONFIG_CPUMASK_OFFSTACK=yes
1424 AC_DEFUN([LC_SET_CPUS_ALLOWED],
1425          [AC_MSG_CHECKING([if kernel defines set_cpus_allowed])
1426           LB_LINUX_TRY_COMPILE(
1427                 [#include <linux/sched.h>],
1428                 [struct task_struct *p = NULL;
1429                  cpumask_t mask = { { 0 } };
1430                  (void) set_cpus_allowed(p, mask);],
1431                 [AC_MSG_RESULT([yes])
1432                  AC_DEFINE(HAVE_SET_CPUS_ALLOWED, 1,
1433                            [set_cpus_allowed is exported by the kernel])],
1434                 [AC_MSG_RESULT([no])] )])
1435
1436 # 2.6.32 introduces selinux_is_enabled()
1437 AC_DEFUN([LC_SELINUX_IS_ENABLED],
1438 [AC_MSG_CHECKING([if selinux_is_enabled is available])
1439 LB_LINUX_TRY_COMPILE([
1440         #include <linux/selinux.h>
1441 ],[
1442         selinux_is_enabled();
1443 ],[
1444         AC_MSG_RESULT([yes])
1445         AC_DEFINE(HAVE_SELINUX_IS_ENABLED, 1,
1446                 [selinux_is_enabled is defined])
1447 ],[
1448         AC_MSG_RESULT([no])
1449 ])
1450 ])
1451
1452 #
1453 # LC_D_OBTAIN_ALIAS
1454 # starting from 2.6.28 kernel replaces d_alloc_anon() with
1455 # d_obtain_alias() for getting anonymous dentries
1456 # RHEL5(2.6.18) has d_obtain_alias but SLES11SP0(2.6.27) not
1457 #
1458 AC_DEFUN([LC_D_OBTAIN_ALIAS],
1459 [AC_MSG_CHECKING([d_obtain_alias exist in kernel])
1460 LB_LINUX_TRY_COMPILE([
1461         #include <linux/dcache.h>
1462 ],[
1463         d_obtain_alias(NULL);
1464 ],[
1465         AC_DEFINE(HAVE_D_OBTAIN_ALIAS, 1,
1466                 [d_obtain_alias exist in kernel])
1467         AC_MSG_RESULT([yes])
1468 ],[
1469         AC_MSG_RESULT([no])
1470 ])
1471 ])
1472
1473 #
1474 # LC_EXPORT_GENERIC_ERROR_REMOVE_PAGE
1475 #
1476 AC_DEFUN([LC_EXPORT_GENERIC_ERROR_REMOVE_PAGE],
1477          [LB_CHECK_SYMBOL_EXPORT(
1478                         [generic_error_remove_page],
1479                         [mm/truncate.c],
1480                         [AC_DEFINE(HAS_GENERIC_ERROR_REMOVE_PAGE, 1,
1481                                 [kernel export generic_error_remove_page])],
1482                         [])
1483          ]
1484 )
1485
1486 # 2.6.32 if kernel export access_process_vm().
1487 AC_DEFUN([LC_EXPORT_ACCESS_PROCESS_VM],
1488         [LB_CHECK_SYMBOL_EXPORT([access_process_vm],
1489                         [mm/memory.c],
1490                         [AC_DEFINE(HAVE_ACCESS_PROCESS_VM, 1,
1491                                 [access_process_vm function is present])],
1492                         [])
1493         ]
1494 )
1495
1496 #
1497 # 2.6.36 fs_struct.lock use spinlock instead of rwlock.
1498 #
1499 AC_DEFUN([LC_FS_STRUCT_RWLOCK],
1500 [AC_MSG_CHECKING([if fs_struct.lock use rwlock])
1501 LB_LINUX_TRY_COMPILE([
1502         #include <asm/atomic.h>
1503         #include <linux/spinlock.h>
1504         #include <linux/fs_struct.h>
1505 ],[
1506         ((struct fs_struct *)0)->lock = (rwlock_t){ 0 };
1507 ],[
1508         AC_DEFINE(HAVE_FS_STRUCT_RWLOCK, 1,
1509                   [fs_struct.lock use rwlock])
1510         AC_MSG_RESULT([yes])
1511 ],[
1512         AC_MSG_RESULT([no])
1513 ])
1514 ])
1515
1516 #
1517 # 2.6.36 super_operations add evict_inode method. it hybird of
1518 # delete_inode & clear_inode.
1519 #
1520 AC_DEFUN([LC_SBOPS_EVICT_INODE],
1521 [AC_MSG_CHECKING([if super_operations.evict_inode exist])
1522 LB_LINUX_TRY_COMPILE([
1523         #include <linux/fs.h>
1524 ],[
1525         ((struct super_operations *)0)->evict_inode(NULL);
1526 ],[
1527         AC_DEFINE(HAVE_SBOPS_EVICT_INODE, 1,
1528                 [super_operations.evict_inode() is exist in kernel])
1529         AC_MSG_RESULT([yes])
1530 ],[
1531         AC_MSG_RESULT([no])
1532 ])
1533 ])
1534
1535 #
1536 # 2.6.35 file_operations.fsync taken 2 arguments.
1537 # 3.0.0 file_operations.fsync takes 4 arguments.
1538 #
1539 AC_DEFUN([LC_FILE_FSYNC],
1540 [AC_MSG_CHECKING([if file_operations.fsync takes 4 or 2 arguments])
1541 LB_LINUX_TRY_COMPILE([
1542         #include <linux/fs.h>
1543 ],[
1544         ((struct file_operations *)0)->fsync(NULL, 0, 0, 0);
1545 ],[
1546         AC_DEFINE(HAVE_FILE_FSYNC_4ARGS, 1,
1547                 [file_operations.fsync takes 4 arguments])
1548         AC_MSG_RESULT([yes, 4 args])
1549 ],[
1550         LB_LINUX_TRY_COMPILE([
1551                 #include <linux/fs.h>
1552         ],[
1553            ((struct file_operations *)0)->fsync(NULL, 0);
1554         ],[
1555                 AC_DEFINE(HAVE_FILE_FSYNC_2ARGS, 1,
1556                         [file_operations.fsync takes 2 arguments])
1557                 AC_MSG_RESULT([yes, 2 args])
1558         ],[
1559                 AC_MSG_RESULT([no])
1560         ])
1561 ])
1562 ])
1563
1564 #
1565 # 2.6.37 remove kernel_locked
1566 #
1567 AC_DEFUN([LC_KERNEL_LOCKED],
1568 [AC_MSG_CHECKING([if kernel_locked is defined])
1569 LB_LINUX_TRY_COMPILE([
1570         #include <linux/smp_lock.h>
1571 ],[
1572         kernel_locked();
1573 ],[
1574         AC_MSG_RESULT([yes])
1575         AC_DEFINE(HAVE_KERNEL_LOCKED, 1,
1576                 [kernel_locked is defined])
1577 ],[
1578         AC_MSG_RESULT([no])
1579 ])
1580 ])
1581
1582 #
1583 # 2.6.38 dentry_operations.d_compare() taken 7 arguments.
1584 #
1585 AC_DEFUN([LC_D_COMPARE_7ARGS],
1586 [AC_MSG_CHECKING([if d_compare taken 7 arguments])
1587 LB_LINUX_TRY_COMPILE([
1588         #include <linux/dcache.h>
1589 ],[
1590         ((struct dentry_operations*)0)->d_compare(NULL,NULL,NULL,NULL,0,NULL,NULL);
1591 ],[
1592         AC_DEFINE(HAVE_D_COMPARE_7ARGS, 1,
1593                 [d_compare need 7 arguments])
1594         AC_MSG_RESULT([yes])
1595 ],[
1596         AC_MSG_RESULT([no])
1597 ])
1598 ])
1599
1600 #
1601 # 2.6.38 dentry_operations.d_delete() defined 'const' for 1st parameter.
1602 #
1603 AC_DEFUN([LC_D_DELETE_CONST],
1604 [AC_MSG_CHECKING([if d_delete has const declare on first parameter])
1605 tmp_flags="$EXTRA_KCFLAGS"
1606 EXTRA_KCFLAGS="-Werror"
1607 LB_LINUX_TRY_COMPILE([
1608         #include <linux/dcache.h>
1609 ],[
1610         const struct dentry *d = NULL;
1611         ((struct dentry_operations*)0)->d_delete(d);
1612 ],[
1613         AC_DEFINE(HAVE_D_DELETE_CONST, const,
1614                 [d_delete first parameter declared const])
1615         AC_MSG_RESULT([yes])
1616 ],[
1617         AC_DEFINE(HAVE_D_DELETE_CONST, , [])
1618         AC_MSG_RESULT([no])
1619 ])
1620 EXTRA_KCFLAGS="$tmp_flags"
1621 ])
1622
1623 #
1624 # 2.6.38 dcache_lock removed. rcu-walk commited.
1625 #
1626 AC_DEFUN([LC_DCACHE_LOCK],
1627 [AC_MSG_CHECKING([if dcache_lock is exist])
1628 LB_LINUX_TRY_COMPILE([
1629         #include <linux/dcache.h>
1630 ],[
1631         spin_lock(&dcache_lock);
1632 ],[
1633         AC_DEFINE(HAVE_DCACHE_LOCK, 1,
1634                 [dcache_lock is exist])
1635         AC_MSG_RESULT([yes])
1636 ],[
1637         AC_MSG_RESULT([no])
1638 ])
1639 ])
1640
1641 #
1642 # 2.6.38 export blkdev_get_by_dev
1643 #
1644 AC_DEFUN([LC_BLKDEV_GET_BY_DEV],
1645 [LB_CHECK_SYMBOL_EXPORT([blkdev_get_by_dev],
1646 [fs/block_dev.c],[
1647 AC_DEFINE(HAVE_BLKDEV_GET_BY_DEV, 1,
1648             [blkdev_get_by_dev is exported by the kernel])
1649 ],[
1650 ])
1651 ])
1652
1653 #
1654 # 2.6.38 use path as 4th parameter in quota_on.
1655 #
1656 AC_DEFUN([LC_QUOTA_ON_USE_PATH],
1657 [AC_MSG_CHECKING([quota_on use path as parameter])
1658 tmp_flags="$EXTRA_KCFLAGS"
1659 EXTRA_KCFLAGS="-Werror"
1660 LB_LINUX_TRY_COMPILE([
1661         #include <linux/fs.h>
1662         #include <linux/quota.h>
1663 ],[
1664         ((struct quotactl_ops *)0)->quota_on(NULL, 0, 0, ((struct path*)0));
1665 ],[
1666         AC_DEFINE(HAVE_QUOTA_ON_USE_PATH, 1,
1667                 [quota_on use path as 4th paramter])
1668         AC_MSG_RESULT([yes])
1669 ],[
1670         AC_MSG_RESULT([no])
1671 ])
1672 EXTRA_KCFLAGS="$tmp_flags"
1673 ])
1674
1675 #
1676 # 2.6.38 export simple_setattr
1677 #
1678 AC_DEFUN([LC_EXPORT_SIMPLE_SETATTR],
1679 [LB_CHECK_SYMBOL_EXPORT([simple_setattr],
1680 [fs/libfs.c],[
1681 AC_DEFINE(HAVE_SIMPLE_SETATTR, 1,
1682             [simple_setattr is exported by the kernel])
1683 ],[
1684 ])
1685 ])
1686
1687 #
1688 # 2.6.39 remove unplug_fn from request_queue.
1689 #
1690 AC_DEFUN([LC_REQUEST_QUEUE_UNPLUG_FN],
1691 [AC_MSG_CHECKING([if request_queue has unplug_fn field])
1692 LB_LINUX_TRY_COMPILE([
1693         #include <linux/blkdev.h>
1694 ],[
1695         do{ }while(sizeof(((struct request_queue *)0)->unplug_fn));
1696 ],[
1697         AC_DEFINE(HAVE_REQUEST_QUEUE_UNPLUG_FN, 1,
1698                   [request_queue has unplug_fn field])
1699         AC_MSG_RESULT([yes])
1700 ],[
1701         AC_MSG_RESULT([no])
1702 ])
1703 ])
1704
1705 #
1706 # 2.6.39 replace get_sb with mount in struct file_system_type
1707 #
1708 AC_DEFUN([LC_HAVE_FSTYPE_MOUNT],
1709 [AC_MSG_CHECKING([if file_system_type has mount field])
1710 LB_LINUX_TRY_COMPILE([
1711         #include <linux/fs.h>
1712 ],[
1713         struct file_system_type fst;
1714         void *i = (void *) fst.mount;
1715 ],[
1716         AC_DEFINE(HAVE_FSTYPE_MOUNT, 1,
1717                 [struct file_system_type has mount field])
1718         AC_MSG_RESULT([yes])
1719 ],[
1720         AC_MSG_RESULT([no])
1721 ])
1722 ])
1723
1724 #
1725 # 3.0 dirty_inode() has a flag parameter
1726 # see kernel commit aa38572954ade525817fe88c54faebf85e5a61c0
1727 #
1728 AC_DEFUN([LC_DIRTY_INODE_WITH_FLAG],
1729 [AC_MSG_CHECKING([if dirty_inode super_operation takes flag])
1730 LB_LINUX_TRY_COMPILE([
1731         #include <linux/fs.h>
1732 ],[
1733         struct inode *inode;
1734         inode->i_sb->s_op->dirty_inode(NULL, 0);
1735 ],[
1736         AC_DEFINE(HAVE_DIRTY_INODE_HAS_FLAG, 1,
1737                   [dirty_inode super_operation takes flag])
1738         AC_MSG_RESULT([yes])
1739 ],[
1740         AC_MSG_RESULT([no])
1741 ])
1742 ])
1743
1744 #
1745 # 2.6.38 generic_permission taken 4 parameters.
1746 # in fact, it means rcu-walk aware permission bring.
1747 #
1748 # 3.1 generic_permission taken 2 parameters.
1749 # see kernel commit 2830ba7f34ebb27c4e5b8b6ef408cd6d74860890
1750 #
1751 AC_DEFUN([LC_GENERIC_PERMISSION],
1752 [AC_MSG_CHECKING([if generic_permission take 2 or 4 arguments])
1753 LB_LINUX_TRY_COMPILE([
1754         #include <linux/fs.h>
1755 ],[
1756         generic_permission(NULL, 0);
1757 ],[
1758         AC_DEFINE(HAVE_GENERIC_PERMISSION_2ARGS, 1,
1759                   [generic_permission taken 2 arguments])
1760         AC_MSG_RESULT([yes, 2 args])
1761 ],[
1762         LB_LINUX_TRY_COMPILE([
1763                 #include <linux/fs.h>
1764         ],[
1765                 generic_permission(NULL, 0, 0, NULL);
1766         ],[
1767                 AC_DEFINE(HAVE_GENERIC_PERMISSION_4ARGS, 1,
1768                           [generic_permission taken 4 arguments])
1769                 AC_MSG_RESULT([yes, 4 args])
1770         ],[
1771                 AC_MSG_RESULT([no])
1772         ])
1773 ])
1774 ])
1775
1776 #
1777 # 3.1 renames lock-manager ops(lock_manager_operations) from fl_xxx to lm_xxx
1778 # see kernel commit 8fb47a4fbf858a164e973b8ea8ef5e83e61f2e50
1779 #
1780 AC_DEFUN([LC_LM_XXX_LOCK_MANAGER_OPS],
1781 [AC_MSG_CHECKING([if lock-manager ops renamed to lm_xxx])
1782 LB_LINUX_TRY_COMPILE([
1783         #include <linux/fs.h>
1784 ],[
1785         struct lock_manager_operations lm_ops;
1786         lm_ops.lm_compare_owner = NULL;
1787 ],[
1788         AC_DEFINE(HAVE_LM_XXX_LOCK_MANAGER_OPS, 1,
1789                   [lock-manager ops renamed to lm_xxx])
1790         AC_MSG_RESULT([yes])
1791 ],[
1792         AC_MSG_RESULT([no])
1793 ])
1794 ])
1795
1796 #
1797 # 3.1 kills inode->i_alloc_sem, use i_dio_count and inode_dio_wait/
1798 #     inode_dio_done instead.
1799 # see kernel commit bd5fe6c5eb9c548d7f07fe8f89a150bb6705e8e3
1800 #
1801 AC_DEFUN([LC_INODE_DIO_WAIT],
1802 [AC_MSG_CHECKING([if inode->i_alloc_sem is killed and use inode_dio_wait/done.])
1803 LB_LINUX_TRY_COMPILE([
1804         #include <linux/fs.h>
1805 ],[
1806         inode_dio_wait((struct inode *)0);
1807         inode_dio_done((struct inode *)0);
1808 ],[
1809         AC_DEFINE(HAVE_INODE_DIO_WAIT, 1,
1810                   [inode->i_alloc_sem is killed and use inode_dio_wait/done])
1811         AC_MSG_RESULT([yes])
1812 ],[
1813         AC_MSG_RESULT([no])
1814 ])
1815 ])
1816
1817 #
1818 # 3.1 adds get_acl method to inode_operations to read ACL from disk.
1819 # see kernel commit 4e34e719e457f2e031297175410fc0bd4016a085
1820 #
1821 AC_DEFUN([LC_IOP_GET_ACL],
1822 [AC_MSG_CHECKING([inode_operations has .get_acl member function])
1823 LB_LINUX_TRY_COMPILE([
1824         #include <linux/fs.h>
1825 ],[
1826         struct inode_operations iop;
1827         iop.get_acl = NULL;
1828 ],[
1829         AC_DEFINE(HAVE_IOP_GET_ACL, 1,
1830                   [inode_operations has .get_acl member function])
1831         AC_MSG_RESULT([yes])
1832 ],[
1833         AC_MSG_RESULT([no])
1834 ])
1835 ])
1836
1837 #
1838 # 3.1.1 has ext4_blocks_for_truncate
1839 #
1840 AC_DEFUN([LC_BLOCKS_FOR_TRUNCATE],
1841 [AC_MSG_CHECKING([if kernel has ext4_blocks_for_truncate])
1842 LB_LINUX_TRY_COMPILE([
1843         #include <linux/fs.h>
1844         #include "$LINUX/fs/ext4/ext4_jbd2.h"
1845         #include "$LINUX/fs/ext4/truncate.h"
1846 ],[
1847         ext4_blocks_for_truncate(NULL);
1848 ],[
1849         AC_MSG_RESULT([yes])
1850         AC_DEFINE(HAVE_BLOCKS_FOR_TRUNCATE, 1,
1851                   [kernel has ext4_blocks_for_truncate])
1852 ],[
1853         AC_MSG_RESULT([no])
1854 ])
1855 ])
1856
1857 #
1858 # 3.1 introduced generic_file_llseek_size()
1859 #
1860 AC_DEFUN([LC_FILE_LLSEEK_SIZE],
1861         [LB_CHECK_SYMBOL_EXPORT([generic_file_llseek_size],
1862         [fs/read_write.c],
1863         [AC_DEFINE(HAVE_FILE_LLSEEK_SIZE, 1,
1864                    [generic_file_llseek_size is exported by the kernel])])
1865 ])
1866
1867 #
1868 # 3.2 request_queue.make_request_fn defined as function returns with void
1869 # see kernel commit 5a7bbad27a410350e64a2d7f5ec18fc73836c14f
1870 #
1871 AC_DEFUN([LC_HAVE_VOID_MAKE_REQUEST_FN],
1872 [AC_MSG_CHECKING([if request_queue.make_request_fn returns void but not int])
1873 LB_LINUX_TRY_COMPILE([
1874         #include <linux/blkdev.h>
1875 ],[
1876         int ret;
1877         make_request_fn         *mrf;
1878         ret = mrf(NULL, NULL);
1879 ],[
1880         AC_MSG_RESULT([no])
1881 ],[
1882         AC_DEFINE(HAVE_VOID_MAKE_REQUEST_FN, 1,
1883                   [request_queue.make_request_fn returns void but not int])
1884         AC_MSG_RESULT([yes])
1885 ])
1886 ])
1887
1888 #
1889 # 3.2 protects inode->i_nlink from direct modification
1890 # see kernel commit a78ef704a8dd430225955f0709b22d4a6ba21deb
1891 # at the same time adds set_nlink(), so checks set_nlink() for it.
1892 #
1893 AC_DEFUN([LC_HAVE_PROTECT_I_NLINK],
1894 [AC_MSG_CHECKING([if inode->i_nlink is protected from direct modification])
1895 LB_LINUX_TRY_COMPILE([
1896         #include <linux/fs.h>
1897 ],[
1898         struct inode i;
1899         set_nlink(&i, 1);
1900 ],[
1901         AC_DEFINE(HAVE_PROTECT_I_NLINK, 1,
1902                   [inode->i_nlink is protected from direct modification])
1903         AC_MSG_RESULT([yes])
1904 ],[
1905         AC_MSG_RESULT([no])
1906 ])
1907 ])
1908
1909 #
1910 # 3.3 introduces migrate_mode.h and migratepage has 4 args
1911 #
1912 AC_DEFUN([LC_HAVE_MIGRATE_HEADER],
1913 [LB_CHECK_FILE([$LINUX/include/linux/migrate.h],[
1914                 AC_DEFINE(HAVE_MIGRATE_H, 1,
1915                 [kernel has include/linux/migrate.h])
1916 ],[LB_CHECK_FILE([$LINUX/include/linux/migrate_mode.h],[
1917                 AC_DEFINE(HAVE_MIGRATE_MODE_H, 1,
1918                         [kernel has include/linux/migrate_mode.h])
1919 ],[
1920         AC_MSG_RESULT([no])
1921 ])
1922 ])
1923 ])
1924
1925 AC_DEFUN([LC_MIGRATEPAGE_4ARGS],
1926 [AC_MSG_CHECKING([if address_space_operations.migratepage has 4 args])
1927 LB_LINUX_TRY_COMPILE([
1928         #include <linux/fs.h>
1929 #ifdef HAVE_MIGRATE_H
1930         #include <linux/migrate.h>
1931 #elif defined(HAVE_MIGRATE_MODE_H)
1932         #include <linux/migrate_mode.h>
1933 #endif
1934 ],[
1935         struct address_space_operations aops;
1936
1937         aops.migratepage(NULL, NULL, NULL, MIGRATE_ASYNC);
1938 ],[
1939         AC_DEFINE(HAVE_MIGRATEPAGE_4ARGS, 1,
1940                 [address_space_operations.migratepage has 4 args])
1941         AC_MSG_RESULT([yes])
1942 ],[
1943         AC_MSG_RESULT([no])
1944 ])
1945 ])
1946
1947 #
1948 # 3.3 switchs super_operations to use dentry as parameter (but not vfsmount)
1949 # see kernel commit 34c80b1d93e6e20ca9dea0baf583a5b5510d92d4
1950 #
1951 AC_DEFUN([LC_SUPEROPS_USE_DENTRY],
1952 [AC_MSG_CHECKING([if super_operations use dentry as parameter])
1953 tmp_flags="$EXTRA_KCFLAGS"
1954 EXTRA_KCFLAGS="-Werror"
1955 LB_LINUX_TRY_COMPILE([
1956         #include <linux/fs.h>
1957         int show_options(struct seq_file *seq, struct dentry *root){
1958                 return 0;
1959         }
1960 ],[
1961         struct super_operations ops;
1962         ops.show_options = show_options;
1963 ],[
1964         AC_DEFINE(HAVE_SUPEROPS_USE_DENTRY, 1,
1965                   [super_operations use dentry as parameter])
1966         AC_MSG_RESULT([yes])
1967 ],[
1968         AC_MSG_RESULT([no])
1969 ])
1970 EXTRA_KCFLAGS="$tmp_flags"
1971 ])
1972
1973 #
1974 # 3.3 switchs inode_operations to use umode_t as parameter (but not int)
1975 # see kernel commit 1a67aafb5f72a436ca044293309fa7e6351d6a35
1976 #
1977 AC_DEFUN([LC_INODEOPS_USE_UMODE_T],
1978 [AC_MSG_CHECKING([if inode_operations use umode_t as parameter])
1979 tmp_flags="$EXTRA_KCFLAGS"
1980 EXTRA_KCFLAGS="-Werror"
1981 LB_LINUX_TRY_COMPILE([
1982         #include <linux/fs.h>
1983         #include <linux/types.h>
1984         int my_mknod(struct inode *dir, struct dentry *dchild,
1985                      umode_t mode, dev_t dev)
1986         {
1987                 return 0;
1988         }
1989 ],[
1990         struct inode_operations ops;
1991         ops.mknod = my_mknod;
1992 ],[
1993         AC_DEFINE(HAVE_INODEOPS_USE_UMODE_T, 1,
1994                   [inode_operations use umode_t as parameter])
1995         AC_MSG_RESULT([yes])
1996 ],[
1997         AC_MSG_RESULT([no])
1998 ])
1999 EXTRA_KCFLAGS="$tmp_flags"
2000 ])
2001
2002 # 3.4 kmap_atomic removes second argument
2003 # see kernel commit 1ec9c5ddc17aa398f05646abfcbaf315b544e62f
2004 #
2005 AC_DEFUN([LC_KMAP_ATOMIC_HAS_1ARG],
2006 [AC_MSG_CHECKING([if kmap_atomic has only 1 argument])
2007 LB_LINUX_TRY_COMPILE([
2008         #include <linux/highmem.h>
2009 ],[
2010         kmap_atomic(NULL);
2011 ],[
2012         AC_DEFINE(HAVE_KMAP_ATOMIC_HAS_1ARG, 1,
2013                   [have kmap_atomic has only 1 argument])
2014         AC_MSG_RESULT([yes])
2015 ],[
2016         AC_MSG_RESULT([no])
2017 ])
2018 ])
2019
2020 #
2021 # 3.4 switchs touch_atime to struct path
2022 # see kernel commit 68ac1234fb949b66941d94dce4157742799fc581
2023 #
2024 AC_DEFUN([LC_TOUCH_ATIME_1ARG],
2025 [AC_MSG_CHECKING([if touch_atime use one argument])
2026 LB_LINUX_TRY_COMPILE([
2027         #include <linux/fs.h>
2028 ],[
2029         touch_atime((struct path *)NULL);
2030 ],[
2031         AC_DEFINE(HAVE_TOUCH_ATIME_1ARG, 1,
2032                   [touch_atime use one argument])
2033         AC_MSG_RESULT([yes])
2034 ],[
2035         AC_MSG_RESULT([no])
2036 ])
2037 ])
2038
2039 #
2040 # 3.4 converts d_alloc_root to d_make_root
2041 # see kernel commit 32991ab305ace7017c62f8eecbe5eb36dc32e13b
2042 #
2043 AC_DEFUN([LC_HAVE_D_MAKE_ROOT],
2044 [AC_MSG_CHECKING([if have d_make_root])
2045 LB_LINUX_TRY_COMPILE([
2046         #include <linux/fs.h>
2047 ],[
2048         d_make_root((struct inode *)NULL);
2049 ],[
2050         AC_DEFINE(HAVE_D_MAKE_ROOT, 1,
2051                   [have d_make_root])
2052         AC_MSG_RESULT([yes])
2053 ],[
2054         AC_MSG_RESULT([no])
2055 ])
2056 ])
2057
2058 #
2059 # 3.5 renames end_writeback() back to clear_inode()...
2060 # see kernel commit dbd5768f87ff6fb0a4fe09c4d7b6c4a24de99430
2061 #
2062 AC_DEFUN([LC_HAVE_CLEAR_INODE],
2063 [AC_MSG_CHECKING([if have clear_inode])
2064 LB_LINUX_TRY_COMPILE([
2065         #include <linux/fs.h>
2066 ],[
2067         clear_inode((struct inode *)NULL);
2068 ],[
2069         AC_DEFINE(HAVE_CLEAR_INODE, 1,
2070                   [have clear_inode])
2071         AC_MSG_RESULT([yes])
2072 ],[
2073         AC_MSG_RESULT([no])
2074 ])
2075 ])
2076
2077 #
2078 # 3.5 encode_fh has parent inode passed in directly
2079 # see kernel commit b0b0382b
2080 #
2081 AC_DEFUN([LC_HAVE_ENCODE_FH_PARENT],
2082 [AC_MSG_CHECKING([if encode_fh have parent inode as parameter])
2083 tmp_flags="$EXTRA_KCFLAGS"
2084 EXTRA_KCFLAGS="-Werror"
2085 LB_LINUX_TRY_COMPILE([
2086         #include <linux/exportfs.h>
2087         #include <linux/fs.h>
2088         #include <linux/types.h>
2089         int ll_encode_fh(struct inode *i, __u32 *a, int *b, struct inode *p)
2090         {
2091                 return 0;
2092         }
2093 ],[
2094         struct export_operations exp_op;
2095         exp_op.encode_fh = ll_encode_fh;
2096 ],[
2097         AC_DEFINE(HAVE_ENCODE_FH_PARENT, 1,
2098                   [have parent inode as parameter])
2099         AC_MSG_RESULT([yes])
2100 ],[
2101         AC_MSG_RESULT([no])
2102 ])
2103 EXTRA_KCFLAGS="$tmp_flags"
2104 ])
2105
2106 # 3.5 has generic_file_llseek_size with 5 args
2107 AC_DEFUN([LC_FILE_LLSEEK_SIZE_5ARG],
2108 [AC_MSG_CHECKING([if kernel has generic_file_llseek_size with 5 args])
2109 LB_LINUX_TRY_COMPILE([
2110         #include <linux/fs.h>
2111 ],[
2112         generic_file_llseek_size(NULL, 0, 0, 0, 0);
2113 ], [
2114         AC_MSG_RESULT([yes])
2115         AC_DEFINE(HAVE_FILE_LLSEEK_SIZE_5ARGS, 1,
2116                 [kernel has generic_file_llseek_size with 5 args])
2117 ],[
2118         AC_MSG_RESULT([no])
2119 ])
2120 ])
2121
2122 #
2123 # 3.6 switch i_dentry/d_alias from list to hlist
2124 #
2125 AC_DEFUN([LC_HAVE_DENTRY_D_ALIAS_HLIST],
2126 [AC_MSG_CHECKING([if i_dentry/d_alias uses hlist])
2127 tmp_flags="$EXTRA_KCFLAGS"
2128 EXTRA_KCFLAGS="-Werror"
2129 LB_LINUX_TRY_COMPILE([
2130         #include <linux/fs.h>
2131         #include <linux/list.h>
2132 ],[
2133         struct inode inode;
2134         struct dentry dentry;
2135         struct hlist_head head;
2136         struct hlist_node node;
2137         inode.i_dentry = head;
2138         dentry.d_alias = node;
2139 ],[
2140         AC_DEFINE(HAVE_DENTRY_D_ALIAS_HLIST, 1,
2141                   [have i_dentry/d_alias uses hlist])
2142         AC_MSG_RESULT([yes])
2143 ],[
2144         AC_MSG_RESULT([no])
2145 ])
2146 EXTRA_KCFLAGS="$tmp_flags"
2147 ])
2148
2149 #
2150 # 3.6 dentry_open uses struct path as first argument
2151 # see kernel commit 765927b2
2152 #
2153 AC_DEFUN([LC_DENTRY_OPEN_USE_PATH],
2154 [AC_MSG_CHECKING([if dentry_open uses struct path as first argument])
2155 tmp_flags="$EXTRA_KCFLAGS"
2156 EXTRA_KCFLAGS="-Werror"
2157 LB_LINUX_TRY_COMPILE([
2158         #include <linux/fs.h>
2159         #include <linux/path.h>
2160 ],[
2161         struct path path;
2162         dentry_open(&path, 0, NULL);
2163 ],[
2164         AC_DEFINE(HAVE_DENTRY_OPEN_USE_PATH, 1,
2165                   [dentry_open uses struct path as first argument])
2166         AC_MSG_RESULT([yes])
2167 ],[
2168         AC_MSG_RESULT([no])
2169 ])
2170 EXTRA_KCFLAGS="$tmp_flags"
2171 ])
2172
2173 #
2174 # 3.6 vfs adds iop->atomic_open
2175 #
2176 AC_DEFUN([LC_HAVE_IOP_ATOMIC_OPEN],
2177 [AC_MSG_CHECKING([if iop has atomic_open])
2178 LB_LINUX_TRY_COMPILE([
2179         #include <linux/fs.h>
2180 ],[
2181         struct inode_operations iop;
2182         iop.atomic_open = NULL;
2183 ],[
2184         AC_DEFINE(HAVE_IOP_ATOMIC_OPEN, 1,
2185                   [have iop atomic_open])
2186         AC_MSG_RESULT([yes])
2187 ],[
2188         AC_MSG_RESULT([no])
2189 ])
2190 ])
2191
2192 #
2193 # 3.7 posix_acl_{to,from}_xattr take struct user_namespace
2194 #
2195 AC_DEFUN([LC_HAVE_POSIXACL_USER_NS],
2196 [AC_MSG_CHECKING([if posix_acl_to_xattr takes struct user_namespace])
2197 LB_LINUX_TRY_COMPILE([
2198         #include <linux/fs.h>
2199         #include <linux/posix_acl_xattr.h>
2200 ],[
2201         posix_acl_to_xattr((struct user_namespace *)NULL, NULL, NULL, 0);
2202 ],[
2203         AC_DEFINE(HAVE_POSIXACL_USER_NS, 1,
2204                   [posix_acl_to_xattr takes struct user_namespace])
2205         AC_MSG_RESULT([yes])
2206 ],[
2207         AC_MSG_RESULT([no])
2208 ])
2209 ])
2210
2211 #
2212 # LC_PROG_LINUX
2213 #
2214 # Lustre linux kernel checks
2215 #
2216 AC_DEFUN([LC_PROG_LINUX],
2217          [
2218          LC_CONFIG_PINGER
2219          LC_CONFIG_CHECKSUM
2220          LC_CONFIG_LIBLUSTRE_RECOVERY
2221          LC_CONFIG_HEALTH_CHECK_WRITE
2222          LC_CONFIG_LRU_RESIZE
2223          LC_LLITE_LLOOP_MODULE
2224
2225          # RHEL4 patches
2226          LC_EXPORT_TRUNCATE_COMPLETE
2227          LC_EXPORT_D_REHASH_COND
2228          LC_EXPORT___D_REHASH
2229          LC_EXPORT_NODE_TO_CPUMASK
2230
2231          LC_FILEMAP_POPULATE
2232          LC_BIT_SPINLOCK_H
2233
2234          LC_CAPA_CRYPTO
2235          LC_CONFIG_RMTCLIENT
2236          LC_CONFIG_GSS
2237          LC_TASK_CLENV_STORE
2238
2239          # 2.6.12
2240          LC_RW_TREE_LOCK
2241
2242          # 2.6.18
2243          LC_UMOUNTBEGIN_HAS_VFSMOUNT
2244
2245          #2.6.18 + RHEL5 (fc6)
2246          LC_LINUX_FIEMAP_H
2247
2248          # 2.6.19
2249          LC_FILE_WRITEV
2250          LC_FILE_READV
2251
2252          # 2.6.20
2253          LC_CANCEL_DIRTY_PAGE
2254
2255          # raid5-zerocopy patch
2256          LC_PAGE_CONSTANT
2257
2258          # 2.6.22
2259          LC_INVALIDATE_BDEV_2ARG
2260          LC_ASYNC_BLOCK_CIPHER
2261          LC_STRUCT_HASH_DESC
2262          LC_STRUCT_BLKCIPHER_DESC
2263          LC_FS_RENAME_DOES_D_MOVE
2264
2265          # 2.6.23
2266          LC_UNREGISTER_BLKDEV_RETURN_INT
2267          LC_KERNEL_SPLICE_READ
2268          LC_KERNEL_SENDFILE
2269          LC_HAVE_EXPORTFS_H
2270          LC_VM_OP_FAULT
2271          LC_PROCFS_USERS
2272          LC_EXPORTFS_DECODE_FH
2273
2274          # 2.6.24
2275          LC_HAVE_MMTYPES_H
2276          LC_BIO_ENDIO_2ARG
2277          LC_FH_TO_DENTRY
2278          LC_PROCFS_DELETED
2279          LC_EXPORT_BDI_INIT
2280
2281          # 2.6.26
2282          LC_FS_STRUCT_USE_PATH
2283
2284          # 2.6.27
2285          LC_SECURITY_PLUG  # for SLES10 SP2
2286          LC_PGMKWRITE_USE_VMFAULT
2287          LC_PGMKWRITE_COMPACT
2288          LC_INODE_PERMISION_2ARGS
2289          LC_TRYLOCKPAGE
2290          LC_READ_INODE_IN_SBOPS
2291          LC_EXPORT_INODE_PERMISSION
2292          LC_QUOTA_ON_5ARGS
2293          LC_QUOTA_OFF_3ARGS
2294          LC_VFS_DQ_OFF
2295          LC_LOCK_MAP_ACQUIRE
2296
2297          # 2.6.27.15-2 sles11
2298          LC_BI_HW_SEGMENTS
2299          LC_HAVE_QUOTAIO_H
2300          LC_BDI_NAME
2301          LC_SB_ANY_QUOTA_ACTIVE
2302          LC_SB_HAS_QUOTA_ACTIVE
2303          LC_EXPORT_ADD_TO_PAGE_CACHE_LRU
2304
2305          # 2.6.29
2306          LC_SB_ANY_QUOTA_LOADED
2307
2308          # 2.6.30
2309          LC_EXPORT_CPUMASK_OF_NODE
2310
2311          # 2.6.31
2312          LC_BLK_QUEUE_LOG_BLK_SIZE
2313
2314          # 2.6.32
2315          LC_REQUEST_QUEUE_LIMITS
2316          LC_EXPORT_BDI_REGISTER
2317          LC_SB_BDI
2318          LC_BLK_QUEUE_MAX_SECTORS
2319          LC_BLK_QUEUE_MAX_SEGMENTS
2320          LC_SET_CPUS_ALLOWED
2321          LC_CACHE_UPCALL
2322          LC_EXPORT_GENERIC_ERROR_REMOVE_PAGE
2323          LC_SELINUX_IS_ENABLED
2324          LC_EXPORT_ACCESS_PROCESS_VM
2325          LC_VFS_INODE_NEWSIZE_OK
2326
2327          # 2.6.34
2328          LC_HAVE_DQUOT_FS_DISK_QUOTA
2329          LC_HAVE_DQUOT_SUSPEND
2330
2331          # 2.6.35, 3.0.0
2332          LC_FILE_FSYNC
2333          LC_EXPORT_SIMPLE_SETATTR
2334
2335          # 2.6.36
2336          LC_FS_STRUCT_RWLOCK
2337          LC_SBOPS_EVICT_INODE
2338
2339          # 2.6.37
2340          LC_KERNEL_LOCKED
2341
2342          # 2.6.38
2343          LC_BLKDEV_GET_BY_DEV
2344          LC_GENERIC_PERMISSION
2345          LC_QUOTA_ON_USE_PATH
2346          LC_DCACHE_LOCK
2347          LC_D_COMPARE_7ARGS
2348          LC_D_DELETE_CONST
2349
2350          # 2.6.39
2351          LC_REQUEST_QUEUE_UNPLUG_FN
2352          LC_HAVE_FSTYPE_MOUNT
2353
2354          # 3.0
2355          LC_DIRTY_INODE_WITH_FLAG
2356
2357          # 3.1
2358          LC_LM_XXX_LOCK_MANAGER_OPS
2359          LC_INODE_DIO_WAIT
2360          LC_IOP_GET_ACL
2361          LC_FILE_LLSEEK_SIZE
2362
2363          # 3.1.1
2364          LC_BLOCKS_FOR_TRUNCATE
2365
2366          # 3.2
2367          LC_HAVE_VOID_MAKE_REQUEST_FN
2368          LC_HAVE_PROTECT_I_NLINK
2369
2370          # 3.3
2371          LC_HAVE_MIGRATE_HEADER
2372          LC_MIGRATEPAGE_4ARGS
2373          LC_SUPEROPS_USE_DENTRY
2374          LC_INODEOPS_USE_UMODE_T
2375
2376          # 3.4
2377          LC_TOUCH_ATIME_1ARG
2378          LC_HAVE_D_MAKE_ROOT
2379          LC_KMAP_ATOMIC_HAS_1ARG
2380
2381          # 3.5
2382          LC_HAVE_CLEAR_INODE
2383          LC_HAVE_ENCODE_FH_PARENT
2384          LC_FILE_LLSEEK_SIZE_5ARG
2385
2386          # 3.6
2387          LC_HAVE_DENTRY_D_ALIAS_HLIST
2388          LC_DENTRY_OPEN_USE_PATH
2389          LC_HAVE_IOP_ATOMIC_OPEN
2390
2391          # 3.7
2392          LC_HAVE_POSIXACL_USER_NS
2393          #
2394          if test x$enable_server = xyes ; then
2395                 AC_DEFINE(HAVE_SERVER_SUPPORT, 1, [support server])
2396                 LC_FUNC_DEV_SET_RDONLY
2397                 LC_STACK_SIZE
2398                 LC_QUOTA64
2399                 LC_QUOTA_CONFIG
2400          fi
2401 ])
2402
2403 #
2404 # LC_CONFIG_CLIENT_SERVER
2405 #
2406 # Build client/server sides of Lustre
2407 #
2408 AC_DEFUN([LC_CONFIG_CLIENT_SERVER],
2409 [AC_MSG_CHECKING([whether to build Lustre server support])
2410 AC_ARG_ENABLE([server],
2411         AC_HELP_STRING([--disable-server],
2412                         [disable Lustre server support]),
2413         [],[enable_server='yes'])
2414 AC_MSG_RESULT([$enable_server])
2415
2416 AC_MSG_CHECKING([whether to build Lustre client support])
2417 AC_ARG_ENABLE([client],
2418         AC_HELP_STRING([--disable-client],
2419                         [disable Lustre client support]),
2420         [],[enable_client='yes'])
2421 AC_MSG_RESULT([$enable_client])])
2422
2423 #
2424 # LC_CONFIG_LIBLUSTRE
2425 #
2426 # whether to build liblustre
2427 #
2428 AC_DEFUN([LC_CONFIG_LIBLUSTRE],
2429 [AC_MSG_CHECKING([whether to build Lustre library])
2430 AC_ARG_ENABLE([liblustre],
2431         AC_HELP_STRING([--disable-liblustre],
2432                         [disable building of Lustre library]),
2433         [],[enable_liblustre=$with_sysio])
2434 AC_MSG_RESULT([$enable_liblustre])
2435 # only build sysio if liblustre is built
2436 with_sysio="$enable_liblustre"
2437
2438 AC_MSG_CHECKING([whether to build liblustre tests])
2439 AC_ARG_ENABLE([liblustre-tests],
2440         AC_HELP_STRING([--enable-liblustre-tests],
2441                         [enable liblustre tests, if --disable-tests is used]),
2442         [],[enable_liblustre_tests=$enable_tests])
2443 if test x$enable_liblustre != xyes ; then
2444    enable_liblustre_tests='no'
2445 fi
2446 AC_MSG_RESULT([$enable_liblustre_tests])
2447
2448 AC_MSG_CHECKING([whether to enable liblustre acl])
2449 AC_ARG_ENABLE([liblustre-acl],
2450         AC_HELP_STRING([--disable-liblustre-acl],
2451                         [disable ACL support for liblustre]),
2452         [],[enable_liblustre_acl=yes])
2453 AC_MSG_RESULT([$enable_liblustre_acl])
2454 if test x$enable_liblustre_acl = xyes ; then
2455   AC_DEFINE(LIBLUSTRE_POSIX_ACL, 1, Liblustre Support ACL-enabled MDS)
2456 fi
2457
2458 # 2.6.29 change prepare/commit_write to write_begin/end
2459 AC_DEFUN([LC_WRITE_BEGIN_END],
2460 [AC_MSG_CHECKING([if kernel has .write_begin/end])
2461 LB_LINUX_TRY_COMPILE([
2462         #include <linux/fs.h>
2463         #include <linux/pagemap.h>
2464 #ifdef HAVE_LINUX_MMTYPES_H
2465         #include <linux/mm_types.h>
2466 #endif
2467 ],[
2468         struct address_space_operations aops;
2469         struct page *page;
2470
2471         aops.write_begin = NULL;
2472         aops.write_end = NULL;
2473         page = grab_cache_page_write_begin(NULL, 0, 0);
2474 ], [
2475         AC_MSG_RESULT([yes])
2476         AC_DEFINE(HAVE_KERNEL_WRITE_BEGIN_END, 1,
2477                 [kernel has .write_begin/end])
2478 ],[
2479         AC_MSG_RESULT([no])
2480 ])
2481 ])
2482
2483 # 2.6.29 blkdev_put has 2 arguments
2484 AC_DEFUN([LC_BLKDEV_PUT_2ARGS],
2485 [AC_MSG_CHECKING([blkdev_put needs 2 parameters])
2486 LB_LINUX_TRY_COMPILE([
2487         #include <linux/fs.h>
2488 ],[
2489         blkdev_put(NULL, 0);
2490 ],[
2491         AC_DEFINE(HAVE_BLKDEV_PUT_2ARGS, 1,
2492                 [blkdev_put needs 2 paramters])
2493         AC_MSG_RESULT([yes])
2494 ],[
2495         AC_MSG_RESULT([no])
2496 ])
2497 ])
2498
2499 # 2.6.29 dentry_open has 4 arguments
2500 AC_DEFUN([LC_DENTRY_OPEN_4ARGS],
2501 [AC_MSG_CHECKING([dentry_open needs 4 parameters])
2502 LB_LINUX_TRY_COMPILE([
2503         #include <linux/fs.h>
2504 ],[
2505         dentry_open(NULL, NULL, 0, NULL);
2506 ],[
2507         AC_DEFINE(HAVE_DENTRY_OPEN_4ARGS, 1,
2508                 [dentry_open needs 4 paramters])
2509         AC_MSG_RESULT([yes])
2510 ],[
2511         AC_MSG_RESULT([no])
2512 ])
2513 ])
2514
2515 # 2.6.29 split file and anonymous page queues
2516 AC_DEFUN([LC_PAGEVEC_LRU_ADD_FILE],
2517 [AC_MSG_CHECKING([if kernel has .pagevec_lru_add_file])
2518 LB_LINUX_TRY_COMPILE([
2519         #include <linux/mm.h>
2520         #include <linux/pagevec.h>
2521 ],[
2522         struct pagevec lru_pagevec;
2523
2524         pagevec_init(&lru_pagevec, 0);
2525         pagevec_lru_add_file(&lru_pagevec);
2526 ],[
2527         AC_MSG_RESULT([yes])
2528         AC_DEFINE(HAVE_PAGEVEC_LRU_ADD_FILE, 1,
2529                 [kernel has .pagevec_lru_add_file])
2530 ],[
2531         AC_MSG_RESULT([no])
2532 ])
2533 ])
2534
2535 #
2536 # --enable-mpitest
2537 #
2538 AC_ARG_ENABLE(mpitests,
2539         AC_HELP_STRING([--enable-mpitests=yes|no|mpicc wrapper],
2540                            [include mpi tests]),
2541         [
2542          enable_mpitests=yes
2543          case $enableval in
2544          yes)
2545                 MPICC_WRAPPER=mpicc
2546                 ;;
2547          no)
2548                 enable_mpitests=no
2549                 ;;
2550          *)
2551                 MPICC_WRAPPER=$enableval
2552                  ;;
2553          esac
2554         ],
2555         [
2556         MPICC_WRAPPER=mpicc
2557         enable_mpitests=yes
2558         ]
2559 )
2560
2561 if test x$enable_mpitests != xno; then
2562         AC_MSG_CHECKING([whether mpitests can be built])
2563         oldcc=$CC
2564         CC=$MPICC_WRAPPER
2565         AC_LINK_IFELSE(
2566             [AC_LANG_PROGRAM([[
2567                     #include <mpi.h>
2568                 ]],[[
2569                     int flag;
2570                     MPI_Initialized(&flag);
2571                 ]])],
2572             [
2573                     AC_MSG_RESULT([yes])
2574             ],[
2575                     AC_MSG_RESULT([no])
2576                     enable_mpitests=no
2577         ])
2578         CC=$oldcc
2579 fi
2580 AC_SUBST(MPICC_WRAPPER)
2581
2582 AC_MSG_NOTICE([Enabling Lustre configure options for libsysio])
2583 ac_configure_args="$ac_configure_args --with-lustre-hack --with-sockets"
2584
2585 LC_CONFIG_PINGER
2586 LC_CONFIG_LIBLUSTRE_RECOVERY
2587 ])
2588
2589 #
2590 # LC_CONFIG_QUOTA
2591 #
2592 # whether to enable quota support global control
2593 #
2594 AC_DEFUN([LC_CONFIG_QUOTA],
2595 [AC_ARG_ENABLE([quota],
2596         AC_HELP_STRING([--enable-quota],
2597                         [enable quota support]),
2598         [],[enable_quota='yes'])
2599 ])
2600
2601 AC_DEFUN([LC_QUOTA],
2602 [#check global
2603 LC_CONFIG_QUOTA
2604 #check for utils
2605 AC_CHECK_HEADER(sys/quota.h,
2606                 [AC_DEFINE(HAVE_SYS_QUOTA_H, 1, [Define to 1 if you have <sys/quota.h>.])],
2607                 [AC_MSG_ERROR([don't find <sys/quota.h> in your system])])
2608 ])
2609
2610 #
2611 # LC_CONFIG_SPLIT
2612 #
2613 # whether to enable split support
2614 #
2615 AC_DEFUN([LC_CONFIG_SPLIT],
2616 [AC_MSG_CHECKING([whether to enable split support])
2617 AC_ARG_ENABLE([split],
2618         AC_HELP_STRING([--enable-split],
2619                         [enable split support]),
2620         [],[enable_split='no'])
2621 AC_MSG_RESULT([$enable_split])
2622 if test x$enable_split != xno; then
2623    AC_DEFINE(HAVE_SPLIT_SUPPORT, 1, [enable split support])
2624 fi
2625 ])
2626
2627 # RHEL5(2.6.18) has tux_info
2628 AC_DEFUN([LC_TASK_CLENV_TUX_INFO],
2629 [AC_MSG_CHECKING([tux_info])
2630 LB_LINUX_TRY_COMPILE([
2631         #include <linux/sched.h>
2632 ],[
2633         struct task_struct task;
2634         &task.tux_info;
2635 ],[
2636         AC_MSG_RESULT([yes])
2637         AC_DEFINE(LL_TASK_CL_ENV, tux_info, [have tux_info])
2638         have_task_clenv_store='yes'
2639 ],[
2640         AC_MSG_RESULT([no])
2641 ])
2642 ])
2643
2644 #
2645 # LC_LLITE_LLOOP_MODULE
2646 # lloop_llite.ko does not currently work with page sizes
2647 # of 64k or larger.
2648 #
2649 AC_DEFUN([LC_LLITE_LLOOP_MODULE],
2650 [AC_MSG_CHECKING([whether to enable llite_lloop module])
2651 LB_LINUX_TRY_COMPILE([
2652         #include <asm/page.h>
2653 ],[
2654         #if PAGE_SIZE >= 65536
2655         #error "PAGE_SIZE >= 65536"
2656         #endif
2657 ],[
2658         enable_llite_lloop_module='yes'
2659         AC_MSG_RESULT([yes])
2660 ],[
2661         enable_llite_lloop_module='no'
2662         AC_MSG_RESULT([no])
2663 ])
2664 ])
2665
2666 #
2667 # LC_OSD_ADDON
2668 #
2669 # configure support for optional OSD implementation
2670 #
2671 AC_DEFUN([LC_OSD_ADDON],
2672 [AC_MSG_CHECKING([for osd])
2673 AC_ARG_WITH([osd],
2674         AC_HELP_STRING([--with-osd=path],
2675                        [set path to optional osd]),
2676         [
2677                 case $with_osd in
2678                         no)     ENABLEOSDADDON=0
2679                                 ;;
2680                         *)      OSDADDON="${with_osd}"
2681                                 ENABLEOSDADDON=1
2682                                 ;;
2683                 esac
2684         ], [
2685                 ENABLEOSDADDON=0
2686         ])
2687 if test $ENABLEOSDADDON -eq 0; then
2688         AC_MSG_RESULT([no])
2689         OSDADDON=
2690 else
2691         OSDMODNAME=`basename $OSDADDON`
2692         if test -e $LUSTRE/$OSDMODNAME; then
2693                 AC_MSG_RESULT([can't link])
2694                 OSDADDON=
2695         elif ln -s $OSDADDON $LUSTRE/$OSDMODNAME; then
2696                 AC_MSG_RESULT([$OSDMODNAME])
2697                 OSDADDON="subdir-m += $OSDMODNAME"
2698         else
2699                 AC_MSG_RESULT([can't link])
2700                 OSDADDON=
2701         fi
2702 fi
2703 AC_SUBST(OSDADDON)
2704 ])
2705
2706 #
2707 # LC_CONFIGURE
2708 #
2709 # other configure checks
2710 #
2711 AC_DEFUN([LC_CONFIGURE],
2712 [LC_CONFIG_OBD_BUFFER_SIZE
2713
2714 if test $target_cpu == "i686" -o $target_cpu == "x86_64"; then
2715         CFLAGS="$CFLAGS -Werror"
2716 fi
2717
2718 # maximum MDS thread count
2719 LC_MDS_MAX_THREADS
2720
2721 # include/liblustre.h
2722 AC_CHECK_HEADERS([sys/user.h sys/vfs.h stdint.h blkid/blkid.h])
2723
2724 # liblustre/llite_lib.h
2725 AC_CHECK_HEADERS([xtio.h file.h])
2726
2727 # liblustre/dir.c
2728 AC_CHECK_HEADERS([linux/types.h sys/types.h linux/unistd.h unistd.h])
2729
2730 # liblustre/lutil.c
2731 AC_CHECK_HEADERS([netinet/in.h arpa/inet.h catamount/data.h])
2732 AC_CHECK_FUNCS([inet_ntoa])
2733
2734 # libsysio/src/readlink.c
2735 LC_READLINK_SSIZE_T
2736
2737 # lvfs/prng.c - depends on linux/types.h from liblustre/dir.c
2738 AC_CHECK_HEADERS([linux/random.h], [], [],
2739                  [#ifdef HAVE_LINUX_TYPES_H
2740                   # include <linux/types.h>
2741                   #endif
2742                  ])
2743
2744 # utils/llverfs.c
2745 AC_CHECK_HEADERS([ext2fs/ext2fs.h])
2746
2747 # check for -lz support
2748 ZLIB=""
2749 AC_CHECK_LIB([z],
2750              [adler32],
2751              [AC_CHECK_HEADERS([zlib.h],
2752                                [ZLIB="-lz"
2753                                 AC_DEFINE([HAVE_ADLER], 1,
2754                                           [support alder32 checksum type])],
2755                                [AC_MSG_WARN([No zlib-devel package found,
2756                                              unable to use adler32 checksum])])],
2757              [AC_MSG_WARN([No zlib package found, unable to use adler32 checksum])]
2758 )
2759 AC_SUBST(ZLIB)
2760
2761 # Super safe df
2762 AC_ARG_ENABLE([mindf],
2763       AC_HELP_STRING([--enable-mindf],
2764                       [Make statfs report the minimum available space on any single OST instead of the sum of free space on all OSTs]),
2765       [],[])
2766 if test "$enable_mindf" = "yes" ;  then
2767       AC_DEFINE([MIN_DF], 1, [Report minimum OST free space])
2768 fi
2769
2770 AC_ARG_ENABLE([fail_alloc],
2771         AC_HELP_STRING([--disable-fail-alloc],
2772                 [disable randomly alloc failure]),
2773         [],[enable_fail_alloc=yes])
2774 AC_MSG_CHECKING([whether to randomly failing memory alloc])
2775 AC_MSG_RESULT([$enable_fail_alloc])
2776 if test x$enable_fail_alloc != xno ; then
2777         AC_DEFINE([RANDOM_FAIL_ALLOC], 1, [enable randomly alloc failure])
2778 fi
2779
2780 AC_ARG_ENABLE([invariants],
2781         AC_HELP_STRING([--enable-invariants],
2782                 [enable invariant checking (cpu intensive)]),
2783         [],[])
2784 AC_MSG_CHECKING([whether to check invariants (expensive cpu-wise)])
2785 AC_MSG_RESULT([$enable_invariants])
2786 if test x$enable_invariants = xyes ; then
2787         AC_DEFINE([CONFIG_LUSTRE_DEBUG_EXPENSIVE_CHECK], 1, [enable invariant checking])
2788 fi
2789
2790 AC_ARG_ENABLE([lu_ref],
2791         AC_HELP_STRING([--enable-lu_ref],
2792                 [enable lu_ref reference tracking code]),
2793         [],[])
2794 AC_MSG_CHECKING([whether to track references with lu_ref])
2795 AC_MSG_RESULT([$enable_lu_ref])
2796 if test x$enable_lu_ref = xyes ; then
2797         AC_DEFINE([USE_LU_REF], 1, [enable lu_ref reference tracking code])
2798 fi
2799
2800 AC_ARG_ENABLE([pgstate-track],
2801               AC_HELP_STRING([--enable-pgstate-track],
2802                              [enable page state tracking]),
2803               [enable_pgstat_track='yes'],[])
2804 AC_MSG_CHECKING([whether to enable page state tracking])
2805 AC_MSG_RESULT([$enable_pgstat_track])
2806 if test x$enable_pgstat_track = xyes ; then
2807         AC_DEFINE([CONFIG_DEBUG_PAGESTATE_TRACKING], 1,
2808                   [enable page state tracking code])
2809 fi
2810
2811          #2.6.29
2812          LC_WRITE_BEGIN_END
2813          LC_D_OBTAIN_ALIAS
2814          LC_BLKDEV_PUT_2ARGS
2815          LC_DENTRY_OPEN_4ARGS
2816          LC_PAGEVEC_LRU_ADD_FILE
2817
2818 ])
2819
2820 #
2821 # LC_CONDITIONALS
2822 #
2823 # AM_CONDITIONALS for lustre
2824 #
2825 AC_DEFUN([LC_CONDITIONALS],
2826 [AM_CONDITIONAL(LIBLUSTRE, test x$enable_liblustre = xyes)
2827 AM_CONDITIONAL(USE_QUILT, test x$QUILT != xno)
2828 AM_CONDITIONAL(LIBLUSTRE_TESTS, test x$enable_liblustre_tests = xyes)
2829 AM_CONDITIONAL(MPITESTS, test x$enable_mpitests = xyes, Build MPI Tests)
2830 AM_CONDITIONAL(CLIENT, test x$enable_client = xyes)
2831 AM_CONDITIONAL(SERVER, test x$enable_server = xyes)
2832 AM_CONDITIONAL(SPLIT, test x$enable_split = xyes)
2833 AM_CONDITIONAL(BLKID, test x$ac_cv_header_blkid_blkid_h = xyes)
2834 AM_CONDITIONAL(EXT2FS_DEVEL, test x$ac_cv_header_ext2fs_ext2fs_h = xyes)
2835 AM_CONDITIONAL(GSS, test x$enable_gss = xyes)
2836 AM_CONDITIONAL(GSS_KEYRING, test x$enable_gss_keyring = xyes)
2837 AM_CONDITIONAL(GSS_PIPEFS, test x$enable_gss_pipefs = xyes)
2838 AM_CONDITIONAL(LIBPTHREAD, test x$enable_libpthread = xyes)
2839 AM_CONDITIONAL(LLITE_LLOOP, test x$enable_llite_lloop_module = xyes)
2840 ])
2841
2842 #
2843 # LC_CONFIG_FILES
2844 #
2845 # files that should be generated with AC_OUTPUT
2846 #
2847 AC_DEFUN([LC_CONFIG_FILES],
2848 [AC_CONFIG_FILES([
2849 lustre/Makefile
2850 lustre/autoMakefile
2851 lustre/autoconf/Makefile
2852 lustre/conf/Makefile
2853 lustre/contrib/Makefile
2854 lustre/doc/Makefile
2855 lustre/include/Makefile
2856 lustre/include/lustre_ver.h
2857 lustre/include/linux/Makefile
2858 lustre/include/darwin/Makefile
2859 lustre/include/lustre/Makefile
2860 lustre/kernel_patches/targets/2.6-rhel6.target
2861 lustre/kernel_patches/targets/2.6-rhel5.target
2862 lustre/kernel_patches/targets/2.6-sles11.target
2863 lustre/kernel_patches/targets/3.0-sles11.target
2864 lustre/kernel_patches/targets/2.6-fc11.target
2865 lustre/kernel_patches/targets/2.6-fc12.target
2866 lustre/kernel_patches/targets/2.6-fc15.target
2867 lustre/kernel_patches/targets/3.x-fc18.target
2868 lustre/ldlm/Makefile
2869 lustre/fid/Makefile
2870 lustre/fid/autoMakefile
2871 lustre/liblustre/Makefile
2872 lustre/liblustre/tests/Makefile
2873 lustre/liblustre/tests/mpi/Makefile
2874 lustre/llite/Makefile
2875 lustre/llite/autoMakefile
2876 lustre/lclient/Makefile
2877 lustre/lov/Makefile
2878 lustre/lov/autoMakefile
2879 lustre/lvfs/Makefile
2880 lustre/lvfs/autoMakefile
2881 lustre/mdc/Makefile
2882 lustre/mdc/autoMakefile
2883 lustre/lmv/Makefile
2884 lustre/lmv/autoMakefile
2885 lustre/mdt/Makefile
2886 lustre/mdt/autoMakefile
2887 lustre/mdd/Makefile
2888 lustre/mdd/autoMakefile
2889 lustre/fld/Makefile
2890 lustre/fld/autoMakefile
2891 lustre/obdclass/Makefile
2892 lustre/obdclass/autoMakefile
2893 lustre/obdclass/linux/Makefile
2894 lustre/obdecho/Makefile
2895 lustre/obdecho/autoMakefile
2896 lustre/ofd/Makefile
2897 lustre/ofd/autoMakefile
2898 lustre/osc/Makefile
2899 lustre/osc/autoMakefile
2900 lustre/ost/Makefile
2901 lustre/ost/autoMakefile
2902 lustre/osd-ldiskfs/Makefile
2903 lustre/osd-ldiskfs/autoMakefile
2904 lustre/osd-zfs/Makefile
2905 lustre/osd-zfs/autoMakefile
2906 lustre/mgc/Makefile
2907 lustre/mgc/autoMakefile
2908 lustre/mgs/Makefile
2909 lustre/mgs/autoMakefile
2910 lustre/target/Makefile
2911 lustre/ptlrpc/Makefile
2912 lustre/ptlrpc/autoMakefile
2913 lustre/ptlrpc/gss/Makefile
2914 lustre/ptlrpc/gss/autoMakefile
2915 lustre/quota/Makefile
2916 lustre/quota/autoMakefile
2917 lustre/scripts/Makefile
2918 lustre/tests/Makefile
2919 lustre/tests/mpi/Makefile
2920 lustre/utils/Makefile
2921 lustre/utils/gss/Makefile
2922 lustre/osp/Makefile
2923 lustre/osp/autoMakefile
2924 lustre/lod/Makefile
2925 lustre/lod/autoMakefile
2926 lustre/obdclass/darwin/Makefile
2927 ])
2928 ])