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 --- scripts/genksyms/genksyms.c | 2 ++ 1 file changed, 2 insertions(+) Index: b/scripts/genksyms/genksyms.c =================================================================== --- a/scripts/genksyms/genksyms.c +++ b/scripts/genksyms/genksyms.c @@ -546,6 +546,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); -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/