The patch titled uml build fix has been added to the -mm tree. Its filename is uml-build-fix.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: uml build fix From: Theodore Tso <tytso@xxxxxxx> This is needed to fix UML compilation given that alternatives_smp_module_add and alternatives_smp_module_del are null inline functions if !CONFIG_SMP. Signed-off-by: "Theodore Ts'o" <tytso@xxxxxxx> Cc: Jeff Dike <jdike@xxxxxxxxxxx> Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/um/kernel/um_arch.c | 2 ++ 1 file changed, 2 insertions(+) diff -puN arch/um/kernel/um_arch.c~uml-build-fix arch/um/kernel/um_arch.c --- a/arch/um/kernel/um_arch.c~uml-build-fix +++ a/arch/um/kernel/um_arch.c @@ -495,6 +495,7 @@ void apply_alternatives(struct alt_instr { } +#ifdef CONFIG_SMP void alternatives_smp_module_add(struct module *mod, char *name, void *locks, void *locks_end, void *text, void *text_end) @@ -504,3 +505,4 @@ void alternatives_smp_module_add(struct void alternatives_smp_module_del(struct module *mod) { } +#endif _ Patches currently in -mm which might be from tytso@xxxxxxx are origin.patch uml-build-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