The patch titled x86_64: oprofile build fix has been added to the -mm tree. Its filename is x86_64-oprofile-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: x86_64: oprofile build fix From: Andrew Morton <akpm@xxxxxxxx> WARNING: "unset_nmi_callback" [arch/x86_64/oprofile/oprofile.ko] undefined! WARNING: "set_nmi_callback" [arch/x86_64/oprofile/oprofile.ko] undefined! Cc: Andi Kleen <ak@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/x86_64/kernel/nmi.c | 2 ++ 1 file changed, 2 insertions(+) diff -puN arch/x86_64/kernel/nmi.c~x86_64-oprofile-build-fix arch/x86_64/kernel/nmi.c --- a/arch/x86_64/kernel/nmi.c~x86_64-oprofile-build-fix +++ a/arch/x86_64/kernel/nmi.c @@ -607,11 +607,13 @@ void set_nmi_callback(nmi_callback_t cal vmalloc_sync_all(); rcu_assign_pointer(nmi_callback, callback); } +EXPORT_SYMBOL_GPL(set_nmi_callback); void unset_nmi_callback(void) { nmi_callback = dummy_nmi_callback; } +EXPORT_SYMBOL_GPL(unset_nmi_callback); #ifdef CONFIG_SYSCTL _ Patches currently in -mm which might be from akpm@xxxxxxxx are origin.patch x86-do_irq-check-irq-number.patch load_module-cleanup.patch x86_64-oprofile-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