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 <[EMAIL PROTECTED]>

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 <[EMAIL PROTECTED]>
Cc: Andi Kleen <[EMAIL PROTECTED]>
Acked-by: H. Peter Anvin <[EMAIL PROTECTED]>
Cc: Thomas Gleixner <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 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 [EMAIL PROTECTED] are

origin.patch
git-watchdog.patch

-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to