patch-2.1.12 linux/kernel/module.c

Next file: linux/kernel/sys.c
Previous file: linux/ipc/shm.c
Back to the patch index
Back to the overall index

diff -u --recursive --new-file v2.1.11/linux/kernel/module.c linux/kernel/module.c
@@ -106,7 +106,7 @@
 		return -EPERM;
 	if (module_name == NULL || size == 0)
 		return -EINVAL;
-	if ((error = get_mod_name(module_name, name)) != 0)
+	if ((error = get_mod_name(module_name, name)) < 0)
 		return error;
 	if (find_module(name) != NULL) {
 		return -EEXIST;
@@ -168,7 +168,7 @@
 		symtab = NULL;
 	}
 #endif
-	if ((error = get_mod_name(module_name, name)) != 0)
+	if ((error = get_mod_name(module_name, name)) < 0)
 		return error;
 	pr_debug("initializing module `%s', %d (0x%x) bytes\n",
 		name, codesize, codesize);
@@ -292,7 +292,7 @@
 		return -EPERM;
 	/* else */
 	if (module_name != NULL) {
-		if ((error = get_mod_name(module_name, name)) != 0)
+		if ((error = get_mod_name(module_name, name)) < 0)
 			return error;
 		if ((mp = find_module(name)) == NULL)
 			return -ENOENT;

FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov