diff options
author | Roland McGrath <roland@redhat.com> | 2007-07-20 03:31:43 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-20 11:44:19 -0400 |
commit | d2eea68e7db759ce67807b42b7407236cccfde71 (patch) | |
tree | 41521fcbce645a492c83e45b4b73be829a4cc8b1 /arch/i386/xen/setup.c | |
parent | 5ac12c6fe1b5fbda0d0caedb8214cde545a5737c (diff) |
xen: disable vdso "nosegneg" on native boot
One of the nice ideas behind paravirt is that CONFIG_XEN=y can be included
in a standard configuration and be no worse for native booting than as a
Xen guest. The glibc feature that supports the vDSO "nosegneg" note is
designed specifically to make this easy. You just have to flip one bit at
boot time. This patch makes Xen flip the bit, so a CONFIG_XEN=y kernel on
bare hardware does not make glibc use the less-optimized library builds.
Signed-off-by: Roland McGrath <roland@redhat.com>
Acked-by: Jeremy Fitzhardinge <jeremy@xensource.com>
Cc: Andi Kleen <ak@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/i386/xen/setup.c')
-rw-r--r-- | arch/i386/xen/setup.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/arch/i386/xen/setup.c b/arch/i386/xen/setup.c index 2fe6eac510f0..f84e77226646 100644 --- a/arch/i386/xen/setup.c +++ b/arch/i386/xen/setup.c | |||
@@ -19,6 +19,7 @@ | |||
19 | #include <xen/features.h> | 19 | #include <xen/features.h> |
20 | 20 | ||
21 | #include "xen-ops.h" | 21 | #include "xen-ops.h" |
22 | #include "vdso.h" | ||
22 | 23 | ||
23 | /* These are code, but not functions. Defined in entry.S */ | 24 | /* These are code, but not functions. Defined in entry.S */ |
24 | extern const char xen_hypervisor_callback[]; | 25 | extern const char xen_hypervisor_callback[]; |
@@ -55,6 +56,18 @@ static void xen_idle(void) | |||
55 | } | 56 | } |
56 | } | 57 | } |
57 | 58 | ||
59 | /* | ||
60 | * Set the bit indicating "nosegneg" library variants should be used. | ||
61 | */ | ||
62 | static void fiddle_vdso(void) | ||
63 | { | ||
64 | extern u32 VDSO_NOTE_MASK; /* See ../kernel/vsyscall-note.S. */ | ||
65 | extern char vsyscall_int80_start; | ||
66 | u32 *mask = (u32 *) ((unsigned long) &VDSO_NOTE_MASK - VDSO_PRELINK + | ||
67 | &vsyscall_int80_start); | ||
68 | *mask |= 1 << VDSO_NOTE_NONEGSEG_BIT; | ||
69 | } | ||
70 | |||
58 | void __init xen_arch_setup(void) | 71 | void __init xen_arch_setup(void) |
59 | { | 72 | { |
60 | struct physdev_set_iopl set_iopl; | 73 | struct physdev_set_iopl set_iopl; |
@@ -93,4 +106,6 @@ void __init xen_arch_setup(void) | |||
93 | #endif | 106 | #endif |
94 | 107 | ||
95 | paravirt_disable_iospace(); | 108 | paravirt_disable_iospace(); |
109 | |||
110 | fiddle_vdso(); | ||
96 | } | 111 | } |