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