Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Rename .data.gate to .data..gate.

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>

authored by

Denys Vlasenko and committed by
Michal Marek
e1cb14b8 1360e070

+5 -5
+1 -1
arch/ia64/kernel/Makefile.gate
··· 21 21 $(obj)/gate-syms.o: $(obj)/gate.lds $(obj)/gate.o FORCE 22 22 $(call if_changed,gate) 23 23 24 - # gate-data.o contains the gate DSO image as data in section .data.gate. 24 + # gate-data.o contains the gate DSO image as data in section .data..gate. 25 25 # We must build gate.so before we can assemble it. 26 26 # Note: kbuild does not track this dependency due to usage of .incbin 27 27 $(obj)/gate-data.o: $(obj)/gate.so
+1 -1
arch/ia64/kernel/gate-data.S
··· 1 - .section .data.gate, "aw" 1 + .section .data..gate, "aw" 2 2 3 3 .incbin "arch/ia64/kernel/gate.so"
+2 -2
arch/ia64/kernel/vmlinux.lds.S
··· 180 180 PAGE_ALIGNED_DATA(PAGE_SIZE) 181 181 . = ALIGN(PAGE_SIZE); 182 182 __start_gate_section = .; 183 - *(.data.gate) 183 + *(.data..gate) 184 184 __stop_gate_section = .; 185 185 #ifdef CONFIG_XEN 186 186 . = ALIGN(PAGE_SIZE); 187 187 __xen_start_gate_section = .; 188 - *(.data.gate.xen) 188 + *(.data..gate.xen) 189 189 __xen_stop_gate_section = .; 190 190 #endif 191 191 }
+1 -1
arch/ia64/xen/gate-data.S
··· 1 - .section .data.gate.xen, "aw" 1 + .section .data..gate.xen, "aw" 2 2 3 3 .incbin "arch/ia64/xen/gate.so"