0e9e131edf
25242-x86_64-hotplug-compat-m2p.patch 25247-SVM-no-rdtsc-intercept.patch 25267-x86-text-unlikely.patch 25269-x86-vMCE-addr-misc-write.patch 25271-x86_64-IST-index.patch 25327-pvdrv-no-asm-system-h.patch - Upstream patches from Jan 25168-x86-memset-size.patch 25191-x86-tdt-delta-calculation.patch 25195-x86-cpuidle-C2-no-flush-or-bm-check.patch 25196-x86-HAP-PAT-sr.patch 25200-x86_64-trap-bounce-flags.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=189
25 lines
740 B
Diff
25 lines
740 B
Diff
# HG changeset patch
|
|
# User Jan Beulich <jbeulich@suse.com>
|
|
# Date 1336476796 -7200
|
|
# Node ID f3fd3136f7a04b8d4e9a6ef1e6787810bae198e9
|
|
# Parent 8f1e0cc4a507a52a49a2eb7832a57ecc7e032dce
|
|
x86: merge .text.* into .text while linking
|
|
|
|
For xen.efi, this eliminates a pointless gap between .text and
|
|
.text.unlikely of almost 2Mb size.
|
|
|
|
Signed-off-by: Jan Beulich <jbeulich@suse.com>
|
|
Acked-by: Keir Fraser <keir@xen.org>
|
|
|
|
--- a/xen/arch/x86/xen.lds.S
|
|
+++ b/xen/arch/x86/xen.lds.S
|
|
@@ -47,6 +47,8 @@ SECTIONS
|
|
.text : {
|
|
_stext = .; /* Text and read-only data */
|
|
*(.text)
|
|
+ *(.text.cold)
|
|
+ *(.text.unlikely)
|
|
*(.fixup)
|
|
*(.gnu.warning)
|
|
_etext = .; /* End of text section */
|