Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0f760f13012322c81714812d852429fe23b16dcf
Commit:     0f760f13012322c81714812d852429fe23b16dcf
Parent:     5f3f7cc6ad3b548ba5f61051426df28f79fc0ee8
Author:     Andi Kleen <[EMAIL PROTECTED]>
AuthorDate: Sun Jul 22 13:21:42 2007 +0200
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Sun Jul 22 11:17:17 2007 -0700

    x86_64: Fix xen section warnings
    
    Fix
    
    WARNING: vmlinux.o(.data+0x99): Section mismatch: reference to 
.init.text:xen_start_kernel (between 'startup_xen' and 'boot_gdt_descr')
    
    Signed-off-by: Andi Kleen <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 arch/i386/xen/xen-head.S |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/arch/i386/xen/xen-head.S b/arch/i386/xen/xen-head.S
index 2998d55..bc71f3b 100644
--- a/arch/i386/xen/xen-head.S
+++ b/arch/i386/xen/xen-head.S
@@ -7,6 +7,7 @@
 #include <asm/boot.h>
 #include <xen/interface/elfnote.h>
 
+       .section .init.text
 ENTRY(startup_xen)
        movl %esi,xen_start_info
        cld
@@ -19,6 +20,7 @@ ENTRY(hypercall_page)
        .skip 0x1000
 .popsection
 
+       .section .text
        ELFNOTE(Xen, XEN_ELFNOTE_GUEST_OS,       .asciz "linux")
        ELFNOTE(Xen, XEN_ELFNOTE_GUEST_VERSION,  .asciz "2.6")
        ELFNOTE(Xen, XEN_ELFNOTE_XEN_VERSION,    .asciz "xen-3.0")
-
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