The patch titled x86 msr driver: Misc cpuinit annotations has been removed from the -mm tree. Its filename was x86-msr-driver-misc-cpuinit-annotations.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: x86 msr driver: Misc cpuinit annotations From: Satyam Sharma <satyam@xxxxxxxxxxxxx> msr_class_cpu_callback() can be marked __cpuinit, being the notifier callback for a __cpuinitdata notifier_block. So can be marked msr_device_create() too, called only from the newly-__cpuinit msr_class_cpu_callback() or from __init-marked msr_init(). Signed-off-by: Satyam Sharma <satyam@xxxxxxxxxxxxx> Cc: Andi Kleen <ak@xxxxxxx> Acked-by: H. Peter Anvin <hpa@xxxxxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/x86/kernel/msr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/x86/kernel/msr.c~x86-msr-driver-misc-cpuinit-annotations arch/x86/kernel/msr.c --- a/arch/x86/kernel/msr.c~x86-msr-driver-misc-cpuinit-annotations +++ a/arch/x86/kernel/msr.c @@ -133,7 +133,7 @@ static const struct file_operations msr_ .open = msr_open, }; -static int msr_device_create(int cpu) +static int __cpuinit msr_device_create(int cpu) { struct device *dev; _ Patches currently in -mm which might be from satyam@xxxxxxxxxxxxx are origin.patch git-watchdog.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