Whamcloud - gitweb
LU-1199 build: Remove duplicate LC_MODULE_LOADING
[fs/lustre-release.git] / build / autoconf / lustre-build-linux.m4
index 01964ab..94dd8cf 100644 (file)
@@ -589,32 +589,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
 #