Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=db47d475371bc85dd122112e957669cbbcc70dee
Commit:     db47d475371bc85dd122112e957669cbbcc70dee
Parent:     6c92e699b56287da582ccb12a64b959b6d6109ba
Author:     Satyam Sharma <[EMAIL PROTECTED]>
AuthorDate: Thu Aug 23 09:29:40 2007 +0200
Committer:  Jens Axboe <[EMAIL PROTECTED]>
CommitDate: Wed Oct 10 09:25:56 2007 +0200

    ll_rw_blk: blk_cpu_notifier should be __cpuinitdata
    
    blk_cpu_notifier is marked as __devinitdata, but __devinitdata need not
    be __init even if HOTPLUG_CPU=n, which wastes space. It should be marked
    __cpuinitdata, and the callback itself as __cpuinit.
    
    Signed-off-by: Satyam Sharma <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Jens Axboe <[EMAIL PROTECTED]>
---
 block/ll_rw_blk.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/block/ll_rw_blk.c b/block/ll_rw_blk.c
index c6b2a47..3b2eff4 100644
--- a/block/ll_rw_blk.c
+++ b/block/ll_rw_blk.c
@@ -3555,7 +3555,7 @@ static void blk_done_softirq(struct softirq_action *h)
        }
 }
 
-static int blk_cpu_notify(struct notifier_block *self, unsigned long action,
+static int __cpuinit blk_cpu_notify(struct notifier_block *self, unsigned long 
action,
                          void *hcpu)
 {
        /*
@@ -3576,7 +3576,7 @@ static int blk_cpu_notify(struct notifier_block *self, 
unsigned long action,
 }
 
 
-static struct notifier_block __devinitdata blk_cpu_notifier = {
+static struct notifier_block blk_cpu_notifier __cpuinitdata = {
        .notifier_call  = blk_cpu_notify,
 };
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to