Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a2b484a29cc9f565b013c0e7f1e0cc22dec12456
Commit:     a2b484a29cc9f565b013c0e7f1e0cc22dec12456
Parent:     165e4694dade7224f23785f9c3a89f3e9c3a9c14
Author:     Thomas Gleixner <[EMAIL PROTECTED]>
AuthorDate: Wed Jan 9 00:18:28 2008 +0100
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Tue Jan 8 16:10:35 2008 -0800

    x86: fix do_fork_idle section mismatch
    
    With CPU_HOTPLUG=n:
    
    WARNING: vmlinux.o(.text+0x104f8): Section mismatch: reference to 
.init.text:fork_idle (between
    'do_fork_idle' and 'lapic_timer_broadcast')
    
    do_fork_idle() needs to be __cpuinit. It can be static as well.
    
    Signed-off-by: Thomas Gleixner <[EMAIL PROTECTED]>
    Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 arch/x86/kernel/smpboot_64.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/x86/kernel/smpboot_64.c b/arch/x86/kernel/smpboot_64.c
index 500670c..aaf4e12 100644
--- a/arch/x86/kernel/smpboot_64.c
+++ b/arch/x86/kernel/smpboot_64.c
@@ -526,7 +526,7 @@ struct create_idle {
        int cpu;
 };
 
-void do_fork_idle(struct work_struct *work)
+static void __cpuinit do_fork_idle(struct work_struct *work)
 {
        struct create_idle *c_idle =
                container_of(work, struct create_idle, work);
-
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