Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=cf8918fe55018aba24669ba76fab3203627890e4
Commit:     cf8918fe55018aba24669ba76fab3203627890e4
Parent:     e4ccde0262a2b4d0889b1cbe4874d2aed120bbe4
Author:     Adrian Bunk <[EMAIL PROTECTED]>
AuthorDate: Thu Feb 14 08:30:52 2008 +1100
Committer:  Paul Mackerras <[EMAIL PROTECTED]>
CommitDate: Thu Feb 14 22:11:02 2008 +1100

    [POWERPC] vdso_do_func_patch{32,64}() must be __init
    
    This fixes the following section mismatches:
    
    <--  snip  -->
    
    ...
    WARNING: vmlinux.o(.text+0xe49c): Section mismatch in reference from the 
function .vdso_do_func_patch64() to the function .init.text:.find_symbol64()
    WARNING: vmlinux.o(.text+0xe4d0): Section mismatch in reference from the 
function .vdso_do_func_patch64() to the function .init.text:.find_symbol64()
    WARNING: vmlinux.o(.text+0xe56c): Section mismatch in reference from the 
function .vdso_do_func_patch32() to the function .init.text:.find_symbol32()
    WARNING: vmlinux.o(.text+0xe5a0): Section mismatch in reference from the 
function .vdso_do_func_patch32() to the function .init.text:.find_symbol32()
    ...
    
    <--  snip  -->
    
    Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]>
    Signed-off-by: Paul Mackerras <[EMAIL PROTECTED]>
---
 arch/powerpc/kernel/vdso.c |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/arch/powerpc/kernel/vdso.c b/arch/powerpc/kernel/vdso.c
index 3702df7..d3437c4 100644
--- a/arch/powerpc/kernel/vdso.c
+++ b/arch/powerpc/kernel/vdso.c
@@ -336,9 +336,9 @@ static unsigned long __init find_function32(struct 
lib32_elfinfo *lib,
        return sym->st_value - VDSO32_LBASE;
 }
 
-static int vdso_do_func_patch32(struct lib32_elfinfo *v32,
-                               struct lib64_elfinfo *v64,
-                               const char *orig, const char *fix)
+static int __init vdso_do_func_patch32(struct lib32_elfinfo *v32,
+                                      struct lib64_elfinfo *v64,
+                                      const char *orig, const char *fix)
 {
        Elf32_Sym *sym32_gen, *sym32_fix;
 
@@ -433,9 +433,9 @@ static unsigned long __init find_function64(struct 
lib64_elfinfo *lib,
 #endif
 }
 
-static int vdso_do_func_patch64(struct lib32_elfinfo *v32,
-                               struct lib64_elfinfo *v64,
-                               const char *orig, const char *fix)
+static int __init vdso_do_func_patch64(struct lib32_elfinfo *v32,
+                                      struct lib64_elfinfo *v64,
+                                      const char *orig, const char *fix)
 {
        Elf64_Sym *sym64_gen, *sym64_fix;
 
-
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