The patch titled microcode: Fix mc_cpu_notifier section warning has been added to the -mm tree. Its filename is microcode-fix-mc_cpu_notifier-section-warning.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: microcode: Fix mc_cpu_notifier section warning From: Jean Delvare <khali@xxxxxxxxxxxx> Structure mc_cpu_notifier references a __cpuinit function, but isn't declared __cpuinitdata itself: WARNING: arch/i386/kernel/microcode.o - Section mismatch: reference to .init.text: from .data after 'mc_cpu_notifier' (at offset 0x118) Signed-off-by: Jean Delvare <khali@xxxxxxxxxxxx> Cc: Tigran Aivazian <tigran@xxxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/i386/kernel/microcode.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN arch/i386/kernel/microcode.c~microcode-fix-mc_cpu_notifier-section-warning arch/i386/kernel/microcode.c --- a/arch/i386/kernel/microcode.c~microcode-fix-mc_cpu_notifier-section-warning +++ a/arch/i386/kernel/microcode.c @@ -722,7 +722,7 @@ mc_cpu_callback(struct notifier_block *n return NOTIFY_OK; } -static struct notifier_block mc_cpu_notifier = { +static struct notifier_block __cpuinitdata mc_cpu_notifier = { .notifier_call = mc_cpu_callback, }; _ Patches currently in -mm which might be from khali@xxxxxxxxxxxx are microcode-fix-mc_cpu_notifier-section-warning.patch git-alsa.patch git-drm.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