Whamcloud - gitweb
b=21500 remove duplicate LC_MODULE_LOADING def'n
authorBrian J. Murrell <brian@sun.com>
Tue, 1 Jun 2010 19:55:23 +0000 (15:55 -0400)
committerJohann Lombardi <johann@sun.com>
Fri, 4 Jun 2010 09:59:37 +0000 (11:59 +0200)
The whole LC_MODULE_LOADING definition was duplicated.  Remove one of them.

build/autoconf/lustre-build-linux.m4

index 8e1025f..39255e5 100644 (file)
@@ -565,32 +565,6 @@ LB_LINUX_TRY_MAKE([
 ])
 ])
 
-# LC_MODULE_LOADING
-# after 2.6.28 CONFIG_KMOD is removed, and only CONFIG_MODULES remains
-# so we test if request_module is implemented or not
-AC_DEFUN([LC_MODULE_LOADING],
-[AC_MSG_CHECKING([if kernel module loading is possible])
-LB_LINUX_TRY_MAKE([
-        #include <linux/kmod.h>
-],[
-        int myretval=ENOSYS ;
-        return myretval;
-],[
-        $makerule LUSTRE_KERNEL_TEST=conftest.i
-],[
-        grep request_module build/conftest.i | grep -v `grep "int myretval=" build/conftest.i | cut -d= -f2 | cut -d" "  -f1` >/dev/null
-],[
-        AC_MSG_RESULT(yes)
-        AC_DEFINE(HAVE_MODULE_LOADING_SUPPORT, 1,
-                [kernel module loading is possible])
-],[
-        AC_MSG_RESULT(no)
-        AC_MSG_WARN([])
-        AC_MSG_WARN([Kernel module loading support is highly recommended.])
-        AC_MSG_WARN([])
-])
-])
-
 #
 # LB_PROG_LINUX
 #