aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ia64/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'arch/ia64/kernel')
-rw-r--r--arch/ia64/kernel/head.S2
-rw-r--r--arch/ia64/kernel/vmlinux.lds.S4
2 files changed, 4 insertions, 2 deletions
diff --git a/arch/ia64/kernel/head.S b/arch/ia64/kernel/head.S
index 12305d3d4838..1a6e44515eb4 100644
--- a/arch/ia64/kernel/head.S
+++ b/arch/ia64/kernel/head.S
@@ -167,7 +167,7 @@ RestRR: \
167 mov _tmp2=((ia64_rid(IA64_REGION_ID_KERNEL, (num<<61)) << 8) | (pgsize << 2) | vhpt);; \ 167 mov _tmp2=((ia64_rid(IA64_REGION_ID_KERNEL, (num<<61)) << 8) | (pgsize << 2) | vhpt);; \
168 mov rr[_tmp1]=_tmp2 168 mov rr[_tmp1]=_tmp2
169 169
170 .section __special_page_section,"ax" 170 __PAGE_ALIGNED_DATA
171 171
172 .global empty_zero_page 172 .global empty_zero_page
173empty_zero_page: 173empty_zero_page:
diff --git a/arch/ia64/kernel/vmlinux.lds.S b/arch/ia64/kernel/vmlinux.lds.S
index fa3a558e3d76..b484b86da830 100644
--- a/arch/ia64/kernel/vmlinux.lds.S
+++ b/arch/ia64/kernel/vmlinux.lds.S
@@ -219,7 +219,9 @@ SECTIONS
219 { *(.data.init_task) } 219 { *(.data.init_task) }
220 220
221 .data.page_aligned : AT(ADDR(.data.page_aligned) - LOAD_OFFSET) 221 .data.page_aligned : AT(ADDR(.data.page_aligned) - LOAD_OFFSET)
222 { *(__special_page_section) 222 {
223 PAGE_ALIGNED_DATA(PAGE_SIZE)
224 . = ALIGN(PAGE_SIZE);
223 __start_gate_section = .; 225 __start_gate_section = .;
224 *(.data.gate) 226 *(.data.gate)
225 __stop_gate_section = .; 227 __stop_gate_section = .;