Title: [6756] branches/2009R1/kernel/module.c: module versioning: add our symbol prefix to the branch while we find a real fix for trunk
Revision
6756
Author
vapier
Date
2009-06-16 14:24:10 -0500 (Tue, 16 Jun 2009)

Log Message

module versioning: add our symbol prefix to the branch while we find a real fix for trunk

Modified Paths

Diff

Modified: branches/2009R1/kernel/module.c (6755 => 6756)


--- branches/2009R1/kernel/module.c	2009-06-16 19:20:40 UTC (rev 6755)
+++ branches/2009R1/kernel/module.c	2009-06-16 19:24:10 UTC (rev 6756)
@@ -1012,9 +1012,9 @@
 {
 	const unsigned long *crc;
 
-	if (IS_ERR_VALUE(find_symbol("struct_module", NULL, &crc, true, false)))
+	if (IS_ERR_VALUE(find_symbol("_struct_module", NULL, &crc, true, false)))
 		BUG();
-	return check_version(sechdrs, versindex, "struct_module", mod, crc);
+	return check_version(sechdrs, versindex, "_struct_module", mod, crc);
 }
 
 /* First part is kernel version, which we ignore if module has crcs. */
_______________________________________________
Linux-kernel-commits mailing list
[email protected]
https://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits

Reply via email to