The patch titled genksyms: include extern information in dumps has been removed from the -mm tree. Its filename was genksyms-include-extern-information-in-dumps.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: genksyms: include extern information in dumps From: Andreas Gruenbacher <agruen@xxxxxxx> The extern flag currently is not included in type dump files (genksyms --dump-types). Include that flag there for completeness. Signed-off-by: Andreas Gruenbacher <agruen@xxxxxxx> Cc: Sam Ravnborg <sam@xxxxxxxxxxxx> Cc: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/genksyms/genksyms.c | 2 ++ 1 file changed, 2 insertions(+) diff -puN scripts/genksyms/genksyms.c~genksyms-include-extern-information-in-dumps scripts/genksyms/genksyms.c --- a/scripts/genksyms/genksyms.c~genksyms-include-extern-information-in-dumps +++ a/scripts/genksyms/genksyms.c @@ -545,6 +545,8 @@ int main(int argc, char **argv) } fputs(sym->name, dumpfile); putc(' ', dumpfile); + if (sym->is_extern) + fputs("extern ", dumpfile); print_list(dumpfile, sym->defn); putc('\n', dumpfile); _ Patches currently in -mm which might be from agruen@xxxxxxx are origin.patch genksyms-track-symbol-checksum-changes.patch genksyms-allow-to-ignore-symbol-checksum-changes.patch git-unionfs.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