The patch titled kbuild wierdness with EXPORT_SYMBOL_GPL has been removed from the -mm tree. Its filename is kbuild-export-type-enhancement-to-modpostc-fix.patch This patch was dropped because it was folded into another patch ------------------------------------------------------ Subject: kbuild wierdness with EXPORT_SYMBOL_GPL From: Valdis Kletnieks <valdis.kletnieks@xxxxxx> It looks like a buggy comparison down in the guts of kbuild-export-type-enhancement-to-modpostc.patch - it's doing something really odd when it hits a EXPORT_SYMBOL_GPL. Signed-off-by: Valdis Kletnieks <valdis.kletnieks@xxxxxx> Cc: Andreas Gruenbacher <agruen@xxxxxxx> Cc: Ram Pai <linuxram@xxxxxxxxxx> Cc: Avantika Mathur <mathur@xxxxxxxxxx> Cc: Sam Ravnborg <sam@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- scripts/mod/modpost.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff -puN scripts/mod/modpost.c~kbuild-export-type-enhancement-to-modpostc-fix scripts/mod/modpost.c --- devel/scripts/mod/modpost.c~kbuild-export-type-enhancement-to-modpostc-fix 2006-05-19 15:59:48.000000000 -0700 +++ devel-akpm/scripts/mod/modpost.c 2006-05-19 15:59:48.000000000 -0700 @@ -1192,12 +1192,15 @@ static void read_dump(const char *fname, *d != '\0') goto fail; - if ((strcmp(export, "EXPORT_SYMBOL_GPL"))) + if ((strcmp(export, "EXPORT_SYMBOL_GPL") == 0)) export_type = 1; - else if(strcmp(export, "EXPORT_SYMBOL") == 0) + else if (strcmp(export, "EXPORT_SYMBOL") == 0) export_type = 0; - else + else { + warn("Odd symbol export=%s symname=%s modname=%s\n", + export, symname, modname); goto fail; + } if (!(mod = find_module(modname))) { if (is_vmlinux(modname)) { _ Patches currently in -mm which might be from valdis.kletnieks@xxxxxx are kbuild-export-type-enhancement-to-modpostc.patch kbuild-export-type-enhancement-to-modpostc-fix.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html