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