Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=48ccf3dac341118992b70ca89c47728e8b1d300b
Commit:     48ccf3dac341118992b70ca89c47728e8b1d300b
Parent:     0ec160dd48b666ddef39d639323d0da26d0b710d
Author:     Randy Dunlap <[EMAIL PROTECTED]>
AuthorDate: Mon Jan 21 17:18:25 2008 -0800
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Mon Jan 21 19:39:41 2008 -0800

    timer: fix section mismatch
    
    The caller is __cpuinit.
    Also, this code block and its caller are inside #ifdef CONFIG_HOTPLUG_CPU
    blocks, so this code should reflect that config symbol's usage.
    
    WARNING: vmlinux.o(.text+0x4252f): Section mismatch: reference to 
.init.text: (between 'timer_cpu_notify' and 'msleep')
    
    Signed-off-by: Randy Dunlap <[EMAIL PROTECTED]>
    Cc: Sam Ravnborg <[EMAIL PROTECTED]>
    Cc: Ingo Molnar <[EMAIL PROTECTED]>
    Cc: Thomas Gleixner <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]@linux-foundation.org>
---
 kernel/timer.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/kernel/timer.c b/kernel/timer.c
index 26671f4..2a00c22 100644
--- a/kernel/timer.c
+++ b/kernel/timer.c
@@ -1289,7 +1289,7 @@ static void migrate_timer_list(tvec_base_t *new_base, 
struct list_head *head)
        }
 }
 
-static void __devinit migrate_timers(int cpu)
+static void __cpuinit migrate_timers(int cpu)
 {
        tvec_base_t *old_base;
        tvec_base_t *new_base;
-
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