diff options
Diffstat (limited to 'arch/ia64')
-rw-r--r-- | arch/ia64/kernel/machine_kexec.c | 30 | ||||
-rw-r--r-- | arch/ia64/mm/discontig.c | 2 |
2 files changed, 31 insertions, 1 deletions
diff --git a/arch/ia64/kernel/machine_kexec.c b/arch/ia64/kernel/machine_kexec.c index 58e943a5d95c..40f9c3e19220 100644 --- a/arch/ia64/kernel/machine_kexec.c +++ b/arch/ia64/kernel/machine_kexec.c | |||
@@ -15,6 +15,8 @@ | |||
15 | #include <linux/cpu.h> | 15 | #include <linux/cpu.h> |
16 | #include <linux/irq.h> | 16 | #include <linux/irq.h> |
17 | #include <linux/efi.h> | 17 | #include <linux/efi.h> |
18 | #include <linux/numa.h> | ||
19 | #include <linux/mmzone.h> | ||
18 | #include <asm/mmu_context.h> | 20 | #include <asm/mmu_context.h> |
19 | #include <asm/setup.h> | 21 | #include <asm/setup.h> |
20 | #include <asm/delay.h> | 22 | #include <asm/delay.h> |
@@ -121,3 +123,31 @@ void machine_kexec(struct kimage *image) | |||
121 | unw_init_running(ia64_machine_kexec, image); | 123 | unw_init_running(ia64_machine_kexec, image); |
122 | for(;;); | 124 | for(;;); |
123 | } | 125 | } |
126 | |||
127 | void arch_crash_save_vmcoreinfo(void) | ||
128 | { | ||
129 | #ifdef CONFIG_ARCH_DISCONTIGMEM_ENABLE | ||
130 | SYMBOL(pgdat_list); | ||
131 | LENGTH(pgdat_list, MAX_NUMNODES); | ||
132 | |||
133 | SYMBOL(node_memblk); | ||
134 | LENGTH(node_memblk, NR_NODE_MEMBLKS); | ||
135 | SIZE(node_memblk_s); | ||
136 | OFFSET(node_memblk_s, start_paddr); | ||
137 | OFFSET(node_memblk_s, size); | ||
138 | #endif | ||
139 | #ifdef CONFIG_PGTABLE_3 | ||
140 | CONFIG(PGTABLE_3); | ||
141 | #elif CONFIG_PGTABLE_4 | ||
142 | CONFIG(PGTABLE_4); | ||
143 | #endif | ||
144 | } | ||
145 | |||
146 | unsigned long paddr_vmcoreinfo_note(void) | ||
147 | { | ||
148 | unsigned long vaddr, paddr; | ||
149 | vaddr = (unsigned long)(char *)&vmcoreinfo_note; | ||
150 | asm volatile ("tpa %0 = %1" : "=r"(paddr) : "r"(vaddr) : "memory"); | ||
151 | return paddr; | ||
152 | } | ||
153 | |||
diff --git a/arch/ia64/mm/discontig.c b/arch/ia64/mm/discontig.c index 5628067a74d2..0b567398f38e 100644 --- a/arch/ia64/mm/discontig.c +++ b/arch/ia64/mm/discontig.c | |||
@@ -48,7 +48,7 @@ struct early_node_data { | |||
48 | static struct early_node_data mem_data[MAX_NUMNODES] __initdata; | 48 | static struct early_node_data mem_data[MAX_NUMNODES] __initdata; |
49 | static nodemask_t memory_less_mask __initdata; | 49 | static nodemask_t memory_less_mask __initdata; |
50 | 50 | ||
51 | static pg_data_t *pgdat_list[MAX_NUMNODES]; | 51 | pg_data_t *pgdat_list[MAX_NUMNODES]; |
52 | 52 | ||
53 | /* | 53 | /* |
54 | * To prevent cache aliasing effects, align per-node structures so that they | 54 | * To prevent cache aliasing effects, align per-node structures so that they |