From 237b011342e4d33ac2aa4cf02944be4f7813104a Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Sat, 20 Feb 2010 01:03:40 +0100 Subject: [PATCH] --- yaml --- r: 199529 b: refs/heads/master c: e1cb14b85f802c7717a46b1a38e1fba23ead86c3 h: refs/heads/master i: 199527: d1ece4f449a47e4524360675f1d5a4d45d978b2c v: v3 --- [refs] | 2 +- trunk/arch/ia64/kernel/Makefile.gate | 2 +- trunk/arch/ia64/kernel/gate-data.S | 2 +- trunk/arch/ia64/kernel/vmlinux.lds.S | 4 ++-- trunk/arch/ia64/xen/gate-data.S | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/[refs] b/[refs] index 234e88860e11..5232ac5c092d 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 1360e0707090c763d0d06cbc74b04f9c9588b582 +refs/heads/master: e1cb14b85f802c7717a46b1a38e1fba23ead86c3 diff --git a/trunk/arch/ia64/kernel/Makefile.gate b/trunk/arch/ia64/kernel/Makefile.gate index ab9b03a9adcc..ceeffc509764 100644 --- a/trunk/arch/ia64/kernel/Makefile.gate +++ b/trunk/arch/ia64/kernel/Makefile.gate @@ -21,7 +21,7 @@ GATECFLAGS_gate-syms.o = -r $(obj)/gate-syms.o: $(obj)/gate.lds $(obj)/gate.o FORCE $(call if_changed,gate) -# gate-data.o contains the gate DSO image as data in section .data.gate. +# gate-data.o contains the gate DSO image as data in section .data..gate. # We must build gate.so before we can assemble it. # Note: kbuild does not track this dependency due to usage of .incbin $(obj)/gate-data.o: $(obj)/gate.so diff --git a/trunk/arch/ia64/kernel/gate-data.S b/trunk/arch/ia64/kernel/gate-data.S index 258c0a3238fb..b3ef1c72e132 100644 --- a/trunk/arch/ia64/kernel/gate-data.S +++ b/trunk/arch/ia64/kernel/gate-data.S @@ -1,3 +1,3 @@ - .section .data.gate, "aw" + .section .data..gate, "aw" .incbin "arch/ia64/kernel/gate.so" diff --git a/trunk/arch/ia64/kernel/vmlinux.lds.S b/trunk/arch/ia64/kernel/vmlinux.lds.S index 7fb1198611fe..3e338093c551 100644 --- a/trunk/arch/ia64/kernel/vmlinux.lds.S +++ b/trunk/arch/ia64/kernel/vmlinux.lds.S @@ -180,12 +180,12 @@ SECTIONS PAGE_ALIGNED_DATA(PAGE_SIZE) . = ALIGN(PAGE_SIZE); __start_gate_section = .; - *(.data.gate) + *(.data..gate) __stop_gate_section = .; #ifdef CONFIG_XEN . = ALIGN(PAGE_SIZE); __xen_start_gate_section = .; - *(.data.gate.xen) + *(.data..gate.xen) __xen_stop_gate_section = .; #endif } diff --git a/trunk/arch/ia64/xen/gate-data.S b/trunk/arch/ia64/xen/gate-data.S index 7d4830afc91d..6f95b6b32a4e 100644 --- a/trunk/arch/ia64/xen/gate-data.S +++ b/trunk/arch/ia64/xen/gate-data.S @@ -1,3 +1,3 @@ - .section .data.gate.xen, "aw" + .section .data..gate.xen, "aw" .incbin "arch/ia64/xen/gate.so"