patch-2.4.0-test11 linux/include/linux/kmod.h

Next file: linux/include/linux/lapb.h
Previous file: linux/include/linux/kernelcapi.h
Back to the patch index
Back to the overall index

diff -u --recursive --new-file v2.4.0-test10/linux/include/linux/kmod.h linux/include/linux/kmod.h
@@ -1,22 +1,38 @@
+#ifndef __LINUX_KMOD_H__
+#define __LINUX_KMOD_H__
+
 /*
-	kmod header
-*/
+ *	include/linux/kmod.h
+ *
+ *      This program is free software; you can redistribute it and/or modify
+ *      it under the terms of the GNU General Public License as published by
+ *      the Free Software Foundation; either version 2 of the License, or
+ *      (at your option) any later version.
+ *
+ *      This program is distributed in the hope that it will be useful,
+ *      but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *      GNU General Public License for more details.
+ *
+ *      You should have received a copy of the GNU General Public License
+ *      along with this program; if not, write to the Free Software
+ *      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
 
 #include <linux/config.h>
 #include <linux/errno.h>
 
 #ifdef CONFIG_KMOD
 extern int request_module(const char * name);
+#else
+static inline int request_module(const char * name) { return -ENOSYS; }
+#endif
+
 extern int exec_usermodehelper(char *program_path, char *argv[], char *envp[]);
+extern int call_usermodehelper(char *path, char *argv[], char *envp[]);
+
 #ifdef CONFIG_HOTPLUG
 extern char hotplug_path [];
-extern int call_usermodehelper(char *path, char *argv[], char *envp[]);
-#endif
-#else
-static inline int request_module(const char * name) { return -ENOSYS; }
-static inline int exec_usermodehelper(char *program_path, char *argv[], char *envp[])
-{
-	return -EACCES;
-}
 #endif
 
+#endif /* __LINUX_KMOD_H__ */

FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)