The patch titled Allow arch to initialize arch field of the module structure has been added to the -mm tree. Its filename is allow-arch-to-initialize-arch-field-of-the-module-structure.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: Allow arch to initialize arch field of the module structure From: Roman Zippel <zippel@xxxxxxxxxxxxxx> This will later allow an arch to add module specific information via linker generated tables instead of poking directly in the module object structure. Signed-off-by: Roman Zippel <zippel@xxxxxxxxxxxxxx> Signed-off-by: Geert Uytterhoeven <geert@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/module.h | 3 +++ scripts/mod/modpost.c | 1 + 2 files changed, 4 insertions(+) diff -puN include/linux/module.h~allow-arch-to-initialize-arch-field-of-the-module-structure include/linux/module.h --- a/include/linux/module.h~allow-arch-to-initialize-arch-field-of-the-module-structure +++ a/include/linux/module.h @@ -360,6 +360,9 @@ struct module const struct __mark_marker *markers; unsigned int num_markers; }; +#ifndef MODULE_ARCH_INIT +#define MODULE_ARCH_INIT {} +#endif /* FIXME: It'd be nice to isolate modules during init, too, so they aren't used before they (may) fail. But presently too much code diff -puN scripts/mod/modpost.c~allow-arch-to-initialize-arch-field-of-the-module-structure scripts/mod/modpost.c --- a/scripts/mod/modpost.c~allow-arch-to-initialize-arch-field-of-the-module-structure +++ a/scripts/mod/modpost.c @@ -1356,6 +1356,7 @@ static void add_header(struct buffer *b, buf_printf(b, "#ifdef CONFIG_MODULE_UNLOAD\n" " .exit = cleanup_module,\n" "#endif\n"); + buf_printf(b, " .arch = MODULE_ARCH_INIT,\n"); buf_printf(b, "};\n"); } _ Patches currently in -mm which might be from zippel@xxxxxxxxxxxxxx are origin.patch introduce-config_has_dma.patch remove-unused-header-file-arch-m68k-atari-atasoundh.patch spin_lock_unlocked-cleanup-in-arch-m68k.patch git-kbuild.patch kconfig-abort-configuration-with-recursive-dependencies.patch is_power_of_2-in-fs-hfs.patch optimize-timespec_trunc.patch allow-arch-to-initialize-arch-field-of-the-module-structure.patch wrap-access-to-thread_info.patch rename-thread_info-to-stack.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