Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=600b2fc242992e552e0b4e24c8c1f084b341f39b
Commit:     600b2fc242992e552e0b4e24c8c1f084b341f39b
Parent:     6487673b8a858f99a5348e1078b3f5aec700f9e0
Author:     Jeremy Fitzhardinge <[EMAIL PROTECTED]>
AuthorDate: Tue Jul 17 18:37:07 2007 -0700
Committer:  Jeremy Fitzhardinge <[EMAIL PROTECTED]>
CommitDate: Wed Jul 18 08:47:45 2007 -0700

    xen: suppress abs symbol warnings for unused reloc pointers
    
    arch/i386/xen/xen-asm.S defines some small pieces of code which are
    used to implement a few paravirt_ops.  They're designed so they can be
    used either in-place, or be inline patched into their callsites if
    there's enough space.
    
    Some of those operations need to make calls out (specifically, if you
    re-enable events [interrupts], and there's a pending event at that
    time).  These calls need the call instruction to be relocated if the
    code is patched inline.  In this case xen_foo_reloc is a
    section-relative symbol which points to xen_foo's required relocation.
    
    Other operations have no need of a relocation, and so their
    corresponding xen_bar_reloc is absolute 0.  These are the cases which
    are triggering the warning.
    
    This patch adds those symbols to the list of safe abs symbols.
    
    Signed-off-by: Jeremy Fitzhardinge <[EMAIL PROTECTED]>
    Cc: Adrian Bunk <[EMAIL PROTECTED]>
---
 arch/i386/boot/compressed/relocs.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/arch/i386/boot/compressed/relocs.c 
b/arch/i386/boot/compressed/relocs.c
index ce4fda2..b0e21c3 100644
--- a/arch/i386/boot/compressed/relocs.c
+++ b/arch/i386/boot/compressed/relocs.c
@@ -31,6 +31,8 @@ static const char* safe_abs_relocs[] = {
                "__kernel_rt_sigreturn",
                "__kernel_sigreturn",
                "SYSENTER_RETURN",
+               "xen_irq_disable_direct_reloc",
+               "xen_save_fl_direct_reloc",
 };
 
 static int is_safe_abs_reloc(const char* sym_name)
-
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