Whamcloud - gitweb
LU-3462 ldiskfs: Subsume ldiskfs's build system into lustre
[fs/lustre-release.git] / config / lustre-build-linux.m4
1 #
2 # LB_LINUX_VERSION
3 #
4 # Set things accordingly for a linux kernel
5 #
6 AC_DEFUN([LB_LINUX_VERSION],[
7 KMODEXT=".ko"
8
9 MODULE_TARGET="SUBDIRS"
10 makerule="$PWD/build"
11 AC_MSG_CHECKING([for external module build support])
12 rm -f build/conftest.i
13 LB_LINUX_TRY_MAKE([],[],
14         [$makerule LUSTRE_KERNEL_TEST=conftest.i],
15         [test -s build/conftest.i],
16         [
17                 AC_MSG_RESULT([no])
18         ],[
19                 makerule="_module_$makerule"
20                 MODULE_TARGET="M"
21                 LB_LINUX_TRY_MAKE([],[],
22                         [$makerule LUSTRE_KERNEL_TEST=conftest.i],
23                         [test -s build/conftest.i],
24                         [
25                                 AC_MSG_RESULT([yes])
26                         ],[
27                                 AC_MSG_ERROR([unknown; check config.log for details])
28                         ])
29         ])
30
31 AC_SUBST(MODULE_TARGET)
32 AC_SUBST(KMODEXT)
33 ])
34
35 #
36 # LB_LINUX_UTSRELEASE
37 #
38 # Determine the Linux kernel version string from the utsrelease
39 #
40 AC_DEFUN([LB_LINUX_UTSRELEASE], [
41         AC_MSG_CHECKING([kernel source version])
42
43         utsrelease1=${LINUX_OBJ}/include/generated/utsrelease.h
44         utsrelease2=${LINUX_OBJ}/include/linux/utsrelease.h
45         utsrelease3=${LINUX_OBJ}/include/linux/version.h
46         AS_IF([test -r ${utsrelease1} && fgrep -q UTS_RELEASE ${utsrelease1}], [
47                 utsrelease=${utsrelease1}
48         ], [test -r ${utsrelease2} && fgrep -q UTS_RELEASE ${utsrelease2}], [
49                 utsrelease=${utsrelease2}
50         ], [test -r ${utsrelease3} && fgrep -q UTS_RELEASE ${utsrelease3}], [
51                 utsrelease=${utsrelease3}
52         ])
53
54         AS_IF([test ! -z "${utsrelease}"], [
55                 UTS_RELEASE=$(awk -F \" '/ UTS_RELEASE / { print [$]2 }' \
56                               ${utsrelease})
57                 AS_IF([test -z "$UTS_RELEASE"], [
58                         AC_MSG_RESULT([Not found])
59                         AC_MSG_ERROR([*** Cannot determine kernel version.])
60                 ])
61         ], [
62                 AC_MSG_RESULT([Not found])
63                 AC_MSG_ERROR([
64         *** Cannot find UTS_RELEASE definition.
65         *** This is often provided by the kernel-devel package.])
66         ])
67
68         AC_MSG_RESULT([${UTS_RELEASE}])
69
70         LINUX_VERSION=${UTS_RELEASE}
71         AC_SUBST(LINUX_VERSION)
72         LINUXRELEASE=${UTS_RELEASE}
73         AC_SUBST(LINUXRELEASE)
74 ])
75
76
77 #
78 # LB_LINUX_RELEASE
79 #
80 # get the release version of linux
81 #
82 AC_DEFUN([LB_LINUX_RELEASE],
83 [
84 LB_LINUX_UTSRELEASE
85
86 moduledir='$(CROSS_PATH)/lib/modules/$(LINUXRELEASE)/updates/kernel'
87 AC_SUBST(moduledir)
88
89 modulefsdir='$(moduledir)/fs/$(PACKAGE)'
90 AC_SUBST(modulefsdir)
91
92 modulenetdir='$(moduledir)/net/$(PACKAGE)'
93 AC_SUBST(modulenetdir)
94
95 # ------------ RELEASE --------------------------------
96 AC_MSG_CHECKING([for Lustre release])
97 AC_ARG_WITH([release],[
98         AC_HELP_STRING([--with-release=string],
99                        [set the release string (default=$kvers_YYYYMMDDhhmm)]),
100         [RELEASE=$withval],
101         RELEASE=""
102         if test -n "$DOWNSTREAM_RELEASE"; then
103                 RELEASE="${DOWNSTREAM_RELEASE}_"
104         fi
105         RELEASE="$RELEASE`echo ${LINUXRELEASE} | tr '-' '_'`_$BUILDID"
106 ])
107 AC_MSG_RESULT($RELEASE)
108 AC_SUBST(RELEASE)
109
110 # check if the kernel is one from RHEL or SUSE
111 AC_MSG_CHECKING([for RedHat kernel version])
112         AS_IF([fgrep -q RHEL_RELEASE ${LINUX_OBJ}/include/$VERSION_HDIR/version.h], [
113                 RHEL_KERNEL="yes"
114                 RHEL_RELEASE=$(expr 0$(awk -F \" '/ RHEL_RELEASE / { print [$]2 }' \
115                                ${LINUX_OBJ}/include/$VERSION_HDIR/version.h) + 1)
116                 KERNEL_VERSION=$(sed -e 's/\(@<:@23@:>@\.@<:@0-9@:>@*\.@<:@0-9@:>@*\).*/\1/' <<< ${LINUXRELEASE})
117                 RHEL_KERNEL_VERSION=${KERNEL_VERSION}-${RHEL_RELEASE}
118                 AC_SUBST(RHEL_KERNEL_VERSION)
119                 AC_MSG_RESULT([${RHEL_KERNEL_VERSION}])
120         ], [
121                 AC_MSG_RESULT([not found])
122                 LB_LINUX_CONFIG([SUSE_KERNEL],[SUSE_KERNEL="yes"],[])
123         ])
124 ])
125
126 # LB_ARG_REPLACE_PATH(PACKAGE, PATH)
127 AC_DEFUN([LB_ARG_REPLACE_PATH],[
128         new_configure_args=
129         eval "set x $ac_configure_args"
130         shift
131         for arg; do
132                 case $arg in
133                         --with-[$1]=*)
134                                 arg=--with-[$1]=[$2]
135                                 ;;
136                         *\'*)
137                                 arg=$(printf %s\n ["$arg"] | \
138                                       sed "s/'/'\\\\\\\\''/g")
139                                 ;;
140                 esac
141                 dnl AS_VAR_APPEND([new_configure_args], [" '$arg'"])
142                 new_configure_args="$new_configure_args \"$arg\""
143         done
144         ac_configure_args=$new_configure_args
145 ])
146
147 # this is the work-horse of the next function
148 AC_DEFUN([__LB_ARG_CANON_PATH], [
149         [$3]=$(readlink -f $with_$2)
150         LB_ARG_REPLACE_PATH([$1], $[$3])
151 ])
152
153 # a front-end for the above function that transforms - and . in the
154 # PACKAGE portion of --with-PACKAGE into _ suitable for variable names
155 AC_DEFUN([LB_ARG_CANON_PATH], [
156         __LB_ARG_CANON_PATH([$1], m4_translit([$1], [-.], [__]), [$2])
157 ])
158
159 #
160 #
161 # LB_LINUX_PATH
162 #
163 # Find paths for linux, handling kernel-source rpms
164 #
165 AC_DEFUN([LB_LINUX_PATH],
166 [# prep some default values
167 for DEFAULT_LINUX in /lib/modules/$(uname -r)/{source,build} /usr/src/linux; do
168         if readlink -q -e $DEFAULT_LINUX; then
169                 break
170         fi
171 done
172 if test "$DEFAULT_LINUX" = "/lib/modules/$(uname -r)/source"; then
173         PATHS="/lib/modules/$(uname -r)/build"
174 fi
175 PATHS+=" $DEFAULT_LINUX"
176 for DEFAULT_LINUX_OBJ in $PATHS; do
177         if readlink -q -e $DEFAULT_LINUX_OBJ; then
178                 break
179         fi
180 done
181 AC_MSG_CHECKING([for Linux sources])
182 AC_ARG_WITH([linux],
183         AC_HELP_STRING([--with-linux=path],
184                        [set path to Linux source (default=/lib/modules/$(uname -r)/{source,build},/usr/src/linux)]),
185         [LB_ARG_CANON_PATH([linux], [LINUX])
186         DEFAULT_LINUX_OBJ=$LINUX],
187         [LINUX=$DEFAULT_LINUX])
188 AC_MSG_RESULT([$LINUX])
189 AC_SUBST(LINUX)
190
191 # -------- check for linux --------
192 LB_CHECK_FILE([$LINUX],[],
193         [AC_MSG_ERROR([Kernel source $LINUX could not be found.])])
194
195 # -------- linux objects (for 2.6) --
196 AC_MSG_CHECKING([for Linux objects dir])
197 AC_ARG_WITH([linux-obj],
198         AC_HELP_STRING([--with-linux-obj=path],
199                         [set path to Linux objects dir (default=/lib/modules/$(uname -r)/build,/usr/src/linux)]),
200         [LB_ARG_CANON_PATH([linux-obj], [LINUX_OBJ])],
201         [LINUX_OBJ=$DEFAULT_LINUX_OBJ])
202
203 AC_MSG_RESULT([$LINUX_OBJ])
204 AC_SUBST(LINUX_OBJ)
205
206 # -------- check for .config --------
207 AC_ARG_WITH([linux-config],
208         [AC_HELP_STRING([--with-linux-config=path],
209                         [set path to Linux .conf (default=$LINUX_OBJ/.config)])],
210         [LB_ARG_CANON_PATH([linux-config], [LINUX_CONFIG])],
211         [LINUX_CONFIG=$LINUX_OBJ/.config])
212 AC_SUBST(LINUX_CONFIG)
213
214 LB_CHECK_FILE([/boot/kernel.h],
215         [KERNEL_SOURCE_HEADER='/boot/kernel.h'],
216         [LB_CHECK_FILE([/var/adm/running-kernel.h],
217                 [KERNEL_SOURCE_HEADER='/var/adm/running-kernel.h'])])
218
219 AC_ARG_WITH([kernel-source-header],
220         AC_HELP_STRING([--with-kernel-source-header=path],
221                         [Use a different kernel version header.  Consult build/README.kernel-source for details.]),
222         [LB_ARG_CANON_PATH([kernel-source-header], [KERNEL_SOURCE_HEADER])])
223
224 # ------------ .config exists ----------------
225 LB_CHECK_FILE([$LINUX_CONFIG],[],
226         [AC_MSG_ERROR([Kernel config could not be found.  If you are building from a kernel-source rpm consult build/README.kernel-source])])
227
228 # ----------- make dep run? ------------------
229 # at 2.6.19 # $LINUX/include/linux/config.h is removed
230 # and at more old has only one line
231 # include <autoconf.h>
232 LB_CHECK_FILE([$LINUX_OBJ/include/generated/autoconf.h],[AUTOCONF_HDIR=generated],
233         [LB_CHECK_FILE([$LINUX_OBJ/include/linux/autoconf.h],[AUTOCONF_HDIR=linux],
234         [AC_MSG_ERROR([Run make config in $LINUX.])])])
235         AC_SUBST(AUTOCONF_HDIR)
236 LB_CHECK_FILE([$LINUX_OBJ/include/linux/version.h], [VERSION_HDIR=linux],
237         [LB_CHECK_FILE([$LINUX_OBJ/include/generated/uapi/linux/version.h],
238                 [VERSION_HDIR=generated/uapi/linux],
239                 [AC_MSG_ERROR([Run make config in $LINUX.])])
240         ])
241         AC_SUBST(VERSION_HDIR)
242
243 # ----------- kconfig.h exists ---------------
244 # kernel 3.1, $LINUX/include/linux/kconfig.h is added
245 # see kernel commit 2a11c8ea20bf850b3a2c60db8c2e7497d28aba99
246 LB_CHECK_FILE([$LINUX_OBJ/include/linux/kconfig.h],
247               [CONFIG_INCLUDE=include/linux/kconfig.h],
248               [CONFIG_INCLUDE=include/$AUTOCONF_HDIR/autoconf.h])
249         AC_SUBST(CONFIG_INCLUDE)
250
251 # ------------ rhconfig.h includes runtime-generated bits --
252 # red hat kernel-source checks
253
254 # we know this exists after the check above.  if the user
255 # tarred up the tree and ran make dep etc. in it, then
256 # version.h gets overwritten with a standard linux one.
257
258 if grep rhconfig $LINUX_OBJ/include/$VERSION_HDIR/version.h >/dev/null ; then
259         # This is a clean kernel-source tree, we need to
260         # enable extensive workarounds to get this to build
261         # modules
262         LB_CHECK_FILE([$KERNEL_SOURCE_HEADER],
263                 [if test $KERNEL_SOURCE_HEADER = '/boot/kernel.h' ; then
264                         AC_MSG_WARN([Using /boot/kernel.h from RUNNING kernel.])
265                         AC_MSG_WARN([If this is not what you want, use --with-kernel-source-header.])
266                         AC_MSG_WARN([Consult build/README.kernel-source for details.])
267                 fi],
268                 [AC_MSG_ERROR([$KERNEL_SOURCE_HEADER not found.  Consult build/README.kernel-source for details.])])
269         EXTRA_KCFLAGS="-include $KERNEL_SOURCE_HEADER $EXTRA_KCFLAGS"
270 fi
271
272 # this is needed before we can build modules
273 LB_LINUX_CROSS
274 LB_LINUX_VERSION
275
276 # --- check that we can build modules at all
277 AC_MSG_CHECKING([that modules can be built at all])
278 LB_LINUX_TRY_COMPILE([],[],[
279         AC_MSG_RESULT([yes])
280 ],[
281         AC_MSG_RESULT([no])
282         AC_MSG_WARN([Consult config.log for details.])
283         AC_MSG_WARN([If you are trying to build with a kernel-source rpm, consult build/README.kernel-source])
284         AC_MSG_ERROR([Kernel modules cannot be built.])
285 ])
286
287 LB_LINUX_RELEASE
288 ]) # end of LB_LINUX_PATH
289
290 # LB_LINUX_SYMVERFILE
291 # SLES 9 uses a different name for this file - unsure about vanilla kernels
292 # around this version, but it matters for servers only.
293 AC_DEFUN([LB_LINUX_SYMVERFILE],
294         [AC_MSG_CHECKING([name of module symbol version file])
295         if grep -q Modules.symvers $LINUX/scripts/Makefile.modpost ; then
296                 SYMVERFILE=Modules.symvers
297         else
298                 SYMVERFILE=Module.symvers
299         fi
300         AC_MSG_RESULT($SYMVERFILE)
301         AC_SUBST(SYMVERFILE)
302 ])
303
304 #
305 # LB_LINUX_CROSS
306 #
307 # check for cross compilation
308 #
309 AC_DEFUN([LB_LINUX_CROSS],
310         [AC_MSG_CHECKING([for cross compilation])
311 CROSS_VARS=
312 CROSS_PATH=
313 AS_IF([test "x$cross_compiling" = xno], [AC_MSG_RESULT([no])],
314         [case $host_vendor in
315                 # The K1OM architecture is an extension of the x86 architecture.
316                 # So, the $host_arch is x86_64.
317                 k1om)
318                         AC_MSG_RESULT([Intel(R) Xeon Phi(TM)])
319                         CC_TARGET_ARCH=`$CC -v 2>&1 | grep Target: | sed -e 's/Target: //'`
320                         if test $CC_TARGET_ARCH != x86_64-$host_vendor-linux ; then
321                                 AC_MSG_ERROR([Cross compiler not found in PATH.])
322                         fi
323                         CROSS_VARS="ARCH=$host_vendor CROSS_COMPILE=x86_64-$host_vendor-linux-"
324                         CROSS_PATH=${CROSS_PATH:=/opt/intel/mic/lustre/device-k1om}
325                         CCAS=$CC
326                         # need to produce special section for debuginfo extraction
327                         LDFLAGS="${LDFLAGS} -Wl,--build-id"
328                         EXTRA_KLDFLAGS="${EXTRA_KLDFLAGS} -Wl,--build-id"
329                         if test x$enable_server != xno ; then
330                                 AC_MSG_WARN([Disabling server (not supported for x86_64-$host_vendor-linux).])
331                                 enable_server='no'
332                         fi
333                         ;;
334                 *)
335                         AC_MSG_RESULT([yes, but no changes])
336                         ;;
337         esac
338         ])
339 AC_SUBST(CROSS_VARS)
340 AC_SUBST(CROSS_PATH)
341 ])
342
343 # these are like AC_TRY_COMPILE, but try to build modules against the
344 # kernel, inside the build directory
345
346 # LB_LANG_PROGRAM(C)([PROLOGUE], [BODY])
347 # --------------------------------------
348 m4_define([LB_LANG_PROGRAM],
349 [
350 #include <linux/kernel.h>
351 $1
352 int
353 main (void)
354 {
355 dnl Do *not* indent the following line: there may be CPP directives.
356 dnl Don't move the `;' right after for the same reason.
357 $2
358   ;
359   return 0;
360 }])
361
362 #
363 # LB_LINUX_COMPILE_IFELSE
364 #
365 # like AC_COMPILE_IFELSE
366 #
367 AC_DEFUN([LB_LINUX_COMPILE_IFELSE],
368 [m4_ifvaln([$1], [AC_LANG_CONFTEST([$1])])dnl
369 rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
370 SUBARCH=$(echo $target_cpu | sed -e 's/powerpc64/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/')
371 AS_IF([AC_TRY_COMMAND(cp conftest.c build && make -d [$2] ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/$SUBARCH/include -I$LINUX/arch/$SUBARCH/include/generated -Iinclude -I$LINUX/include -Iinclude2 -I$LINUX/include/uapi -I$LINUX/include/generated -I$LINUX/arch/$SUBARCH/include/uapi -Iarch/$SUBARCH/include/generated/uapi -I$LINUX/include/uapi -Iinclude/generated/uapi -include $CONFIG_INCLUDE" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $CROSS_VARS $MODULE_TARGET=$PWD/build) >/dev/null && AC_TRY_COMMAND([$3])],
372         [$4],
373         [_AC_MSG_LOG_CONFTEST
374 m4_ifvaln([$5],[$5])dnl])
375 rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko m4_ifval([$1], [build/conftest.c conftest.c])[]dnl
376 ])
377
378 #
379 # LB_LINUX_ARCH
380 #
381 # Determine the kernel's idea of the current architecture
382 #
383 AC_DEFUN([LB_LINUX_ARCH],
384          [AC_MSG_CHECKING([Linux kernel architecture])
385           AS_IF([rm -f $PWD/build/arch
386                  make -s --no-print-directory echoarch -f $PWD/build/Makefile \
387                      LUSTRE_LINUX_CONFIG=$LINUX_CONFIG -C $LINUX $CROSS_VARS  \
388                      ARCHFILE=$PWD/build/arch && LINUX_ARCH=`cat $PWD/build/arch`],
389                 [AC_MSG_RESULT([$LINUX_ARCH])],
390                 [AC_MSG_ERROR([Could not determine the kernel architecture.])])
391           rm -f build/arch])
392
393 #
394 # LB_LINUX_TRY_COMPILE
395 #
396 # like AC_TRY_COMPILE
397 #
398 AC_DEFUN([LB_LINUX_TRY_COMPILE],
399 [LB_LINUX_COMPILE_IFELSE(
400         [AC_LANG_SOURCE([LB_LANG_PROGRAM([[$1]], [[$2]])])],
401         [modules],
402         [test -s build/conftest.o],
403         [$3], [$4])])
404
405 #
406 # LB_LINUX_CONFIG
407 #
408 # check if a given config option is defined
409 #
410 AC_DEFUN([LB_LINUX_CONFIG],[
411         AC_MSG_CHECKING([if Linux was built with CONFIG_$1])
412         LB_LINUX_TRY_COMPILE([
413                 #include <$AUTOCONF_HDIR/autoconf.h>
414         ],[
415                 #ifndef CONFIG_$1
416                 #error CONFIG_$1 not #defined
417                 #endif
418         ],[
419                 AC_MSG_RESULT([yes])
420                 $2
421         ],[
422                 AC_MSG_RESULT([no])
423                 $3
424         ])
425 ])
426
427 #
428 # LB_LINUX_CONFIG_IM
429 #
430 # check if a given config option is builtin or as module
431 #
432 AC_DEFUN([LB_LINUX_CONFIG_IM],[
433         AC_MSG_CHECKING([if Linux was built with CONFIG_$1 in or as module])
434         LB_LINUX_TRY_COMPILE([
435                 #include <$AUTOCONF_HDIR/autoconf.h>
436         ],[
437                 #if !(defined(CONFIG_$1) || defined(CONFIG_$1_MODULE))
438                 #error CONFIG_$1 and CONFIG_$1_MODULE not #defined
439                 #endif
440         ],[
441                 AC_MSG_RESULT([yes])
442                 $2
443         ],[
444                 AC_MSG_RESULT([no])
445                 $3
446         ])
447 ])
448
449 #
450 # LB_LINUX_TRY_MAKE
451 #
452 # like LB_LINUX_TRY_COMPILE, but with different arguments
453 #
454 AC_DEFUN([LB_LINUX_TRY_MAKE],
455         [LB_LINUX_COMPILE_IFELSE(
456                 [AC_LANG_SOURCE([LB_LANG_PROGRAM([[$1]], [[$2]])])],
457                 [$3], [$4], [$5], [$6]
458         )]
459 )
460
461 #
462 # LB_CONFIG_COMPAT_RDMA
463 #
464 AC_DEFUN([LB_CONFIG_COMPAT_RDMA],
465 [AC_MSG_CHECKING([whether to use Compat RDMA])
466 # set default
467 AC_ARG_WITH([o2ib],
468         AC_HELP_STRING([--with-o2ib=path],
469                        [build o2iblnd against path]),
470         [
471                 case $with_o2ib in
472                 yes)    O2IBPATHS="$LINUX $LINUX/drivers/infiniband"
473                         ENABLEO2IB=2
474                         ;;
475                 no)     ENABLEO2IB=0
476                         ;;
477                 *)      O2IBPATHS=$with_o2ib
478                         ENABLEO2IB=3
479                         ;;
480                 esac
481         ],[
482                 O2IBPATHS="$LINUX $LINUX/drivers/infiniband"
483                 ENABLEO2IB=1
484         ])
485 if test $ENABLEO2IB -eq 0; then
486         AC_MSG_RESULT([no])
487 else
488         o2ib_found=false
489         for O2IBPATH in $O2IBPATHS; do
490                 if test \( -f ${O2IBPATH}/include/rdma/rdma_cm.h -a \
491                            -f ${O2IBPATH}/include/rdma/ib_cm.h -a \
492                            -f ${O2IBPATH}/include/rdma/ib_verbs.h -a \
493                            -f ${O2IBPATH}/include/rdma/ib_fmr_pool.h \); then
494                         o2ib_found=true
495                         break
496                 fi
497         done
498         compatrdma_found=false
499         if $o2ib_found; then
500                 if test \( -f ${O2IBPATH}/include/linux/compat-2.6.h \); then
501                         compatrdma_found=true
502                         AC_MSG_RESULT([yes])
503                         AC_DEFINE(HAVE_COMPAT_RDMA, 1, [compat rdma found])
504                 else
505                         AC_MSG_RESULT([no])
506                 fi
507         fi
508 fi
509 ])
510
511 #
512 # LB_CONFIG_OFED_BACKPORTS
513 #
514 # include any OFED backport headers in all compile commands
515 # NOTE: this does only include the backport paths, not the OFED headers
516 #       adding the OFED headers is done in the lnet portion
517 AC_DEFUN([LB_CONFIG_OFED_BACKPORTS],
518 [AC_MSG_CHECKING([whether to use any OFED backport headers])
519 if test $ENABLEO2IB -eq 0; then
520         AC_MSG_RESULT([no])
521 else
522         if ! $o2ib_found; then
523                 AC_MSG_RESULT([no])
524                 case $ENABLEO2IB in
525                         1) ;;
526                         2) AC_MSG_ERROR([kernel OpenIB gen2 headers not present]);;
527                         3) AC_MSG_ERROR([bad --with-o2ib path]);;
528                         *) AC_MSG_ERROR([internal error]);;
529                 esac
530         else
531                 if ! $compatrdma_found; then
532                         if test -f $O2IBPATH/config.mk; then
533                                 . $O2IBPATH/config.mk
534                         elif test -f $O2IBPATH/ofed_patch.mk; then
535                                 . $O2IBPATH/ofed_patch.mk
536                         fi
537                 else
538                         case $RHEL_KERNEL_VERSION in
539                                 2.6.32-358*)
540                                         EXTRA_LNET_INCLUDE="$EXTRA_LNET_INCLUDE -DCONFIG_COMPAT_RHEL_6_4";;
541                         esac
542                 fi
543                 if test -n "$BACKPORT_INCLUDES"; then
544                         OFED_BACKPORT_PATH="$O2IBPATH/${BACKPORT_INCLUDES/*\/kernel_addons/kernel_addons}/"
545                         EXTRA_LNET_INCLUDE="-I$OFED_BACKPORT_PATH $EXTRA_LNET_INCLUDE"
546                         AC_MSG_RESULT([yes])
547                 else
548                         AC_MSG_RESULT([no])
549                 fi
550         fi
551 fi
552 ])
553
554 # LC_MODULE_LOADING
555 # after 2.6.28 CONFIG_KMOD is removed, and only CONFIG_MODULES remains
556 # so we test if request_module is implemented or not
557 AC_DEFUN([LC_MODULE_LOADING],
558 [AC_MSG_CHECKING([if kernel module loading is possible])
559 LB_LINUX_TRY_MAKE([
560         #include <linux/kmod.h>
561 ],[
562         int myretval=ENOSYS ;
563         return myretval;
564 ],[
565         $makerule LUSTRE_KERNEL_TEST=conftest.i
566 ],[dnl
567         grep request_module build/conftest.i |dnl
568                 grep -v `grep "int myretval=" build/conftest.i |dnl
569                         cut -d= -f2 | cut -d" "  -f1`dnl
570                 >/dev/null dnl
571 ],[
572         AC_MSG_RESULT(yes)
573         AC_DEFINE(HAVE_MODULE_LOADING_SUPPORT, 1,
574                   [kernel module loading is possible])
575 ],[
576         AC_MSG_RESULT(no)
577         AC_MSG_WARN([])
578         AC_MSG_WARN([Kernel module loading support is highly recommended.])
579         AC_MSG_WARN([])
580 ])
581 ])
582
583 #
584 # LB_PROG_LINUX
585 #
586 # linux tests
587 #
588 AC_DEFUN([LB_PROG_LINUX],
589 [LB_LINUX_PATH
590 LB_LINUX_ARCH
591 LB_LINUX_SYMVERFILE
592
593
594 LB_LINUX_CONFIG([MODULES],[],[
595         AC_MSG_ERROR([module support is required to build Lustre kernel modules.])
596 ])
597
598 LB_LINUX_CONFIG([MODVERSIONS])
599
600 LB_LINUX_CONFIG([KALLSYMS],[],[
601         AC_MSG_ERROR([Lustre requires that CONFIG_KALLSYMS is enabled in your kernel.])
602 ])
603
604 # 2.6.28
605 LC_MODULE_LOADING
606
607 LB_CONFIG_COMPAT_RDMA
608
609 # it's ugly to be doing anything with OFED outside of the lnet module, but
610 # this has to be done here so that the backports path is set before all of
611 # the LN_PROG_LINUX checks are done
612 LB_CONFIG_OFED_BACKPORTS
613 ])
614
615 #
616 # LB_CHECK_SYMBOL_EXPORT
617 # check symbol exported or not
618 # $1 - symbol
619 # $2 - file(s) for find.
620 # $3 - do 'yes'
621 # $4 - do 'no'
622 #
623 # 2.6 based kernels - put modversion info into $LINUX/Module.modvers
624 # or check
625 AC_DEFUN([LB_CHECK_SYMBOL_EXPORT],
626 [AC_MSG_CHECKING([if Linux was built with symbol $1 exported])
627 grep -q -E '[[[:space:]]]$1[[[:space:]]]' $LINUX/$SYMVERFILE 2>/dev/null
628 rc=$?
629 if test $rc -ne 0; then
630         export=0
631         for file in $2; do
632                 grep -q -E "EXPORT_SYMBOL.*\($1\)" "$LINUX/$file" 2>/dev/null
633                 rc=$?
634                 if test $rc -eq 0; then
635                         export=1
636                         break;
637                 fi
638         done
639         if test $export -eq 0; then
640                 AC_MSG_RESULT([no])
641                 $4
642         else
643                 AC_MSG_RESULT([yes])
644                 $3
645         fi
646 else
647         AC_MSG_RESULT([yes])
648         $3
649 fi
650 ])
651
652 #
653 # Like AC_CHECK_HEADER but checks for a kernel-space header
654 #
655 m4_define([LB_CHECK_LINUX_HEADER],
656 [AS_VAR_PUSHDEF([ac_Header], [ac_cv_header_$1])dnl
657 AC_CACHE_CHECK([for $1], ac_Header,
658                [LB_LINUX_COMPILE_IFELSE([LB_LANG_PROGRAM([@%:@include <$1>])],
659                                   [modules],
660                                   [test -s build/conftest.o],
661                                   [AS_VAR_SET(ac_Header, [yes])],
662                                   [AS_VAR_SET(ac_Header, [no])])])
663 AS_IF([test AS_VAR_GET(ac_Header) = yes], [$2], [$3])[]dnl
664 AS_VAR_POPDEF([ac_Header])dnl
665 ])
666
667 #
668 # LB_USES_DPKG
669 #
670 # Determine if the target is a dpkg system or rpm
671 #
672 AC_DEFUN([LB_USES_DPKG],
673 [
674 AC_MSG_CHECKING([if this distro uses dpkg])
675 case `lsb_release -i -s 2>/dev/null` in
676         Ubuntu | Debian)
677                 AC_MSG_RESULT([yes])
678                 uses_dpkg=yes
679                 ;;
680         *)
681                 AC_MSG_RESULT([no])
682                 uses_dpkg=no
683                 ;;
684 esac
685 ])