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