Commit 00bf4098 authored by Bernhard Walle's avatar Bernhard Walle Committed by Linus Torvalds

kexec: add BSS to resource tree

Add the BSS to the resource tree just as kernel text and kernel data are in
the resource tree.  The main reason behind this is to avoid crashkernel
reservation in that area.

While it's not strictly necessary to have the BSS in the resource tree (the
actual collision detection is done in the reserve_bootmem() function before),
the usage of the BSS resource should be presented to the user in /proc/iomem
just as Kernel data and Kernel code.

Note: The patch currently is only implemented for x86 and ia64 (because
efi_initialize_iomem_resources() has the same signature on i386 and ia64).

[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: default avatarBernhard Walle <bwalle@suse.de>
Cc: "Eric W. Biederman" <ebiederm@xmission.com>
Cc: Vivek Goyal <vgoyal@in.ibm.com>
Cc: <linux-arch@vger.kernel.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@elte.hu>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent c03ab37c
...@@ -1090,7 +1090,8 @@ efi_memmap_init(unsigned long *s, unsigned long *e) ...@@ -1090,7 +1090,8 @@ efi_memmap_init(unsigned long *s, unsigned long *e)
void void
efi_initialize_iomem_resources(struct resource *code_resource, efi_initialize_iomem_resources(struct resource *code_resource,
struct resource *data_resource) struct resource *data_resource,
struct resource *bss_resource)
{ {
struct resource *res; struct resource *res;
void *efi_map_start, *efi_map_end, *p; void *efi_map_start, *efi_map_end, *p;
...@@ -1171,6 +1172,7 @@ efi_initialize_iomem_resources(struct resource *code_resource, ...@@ -1171,6 +1172,7 @@ efi_initialize_iomem_resources(struct resource *code_resource,
*/ */
insert_resource(res, code_resource); insert_resource(res, code_resource);
insert_resource(res, data_resource); insert_resource(res, data_resource);
insert_resource(res, bss_resource);
#ifdef CONFIG_KEXEC #ifdef CONFIG_KEXEC
insert_resource(res, &efi_memmap_res); insert_resource(res, &efi_memmap_res);
insert_resource(res, &boot_param_res); insert_resource(res, &boot_param_res);
......
...@@ -90,7 +90,12 @@ static struct resource code_resource = { ...@@ -90,7 +90,12 @@ static struct resource code_resource = {
.name = "Kernel code", .name = "Kernel code",
.flags = IORESOURCE_BUSY | IORESOURCE_MEM .flags = IORESOURCE_BUSY | IORESOURCE_MEM
}; };
extern char _text[], _end[], _etext[];
static struct resource bss_resource = {
.name = "Kernel bss",
.flags = IORESOURCE_BUSY | IORESOURCE_MEM
};
extern char _text[], _end[], _etext[], _edata[], _bss[];
unsigned long ia64_max_cacheline_size; unsigned long ia64_max_cacheline_size;
...@@ -200,8 +205,11 @@ static int __init register_memory(void) ...@@ -200,8 +205,11 @@ static int __init register_memory(void)
code_resource.start = ia64_tpa(_text); code_resource.start = ia64_tpa(_text);
code_resource.end = ia64_tpa(_etext) - 1; code_resource.end = ia64_tpa(_etext) - 1;
data_resource.start = ia64_tpa(_etext); data_resource.start = ia64_tpa(_etext);
data_resource.end = ia64_tpa(_end) - 1; data_resource.end = ia64_tpa(_edata) - 1;
efi_initialize_iomem_resources(&code_resource, &data_resource); bss_resource.start = ia64_tpa(_bss);
bss_resource.end = ia64_tpa(_end) - 1;
efi_initialize_iomem_resources(&code_resource, &data_resource,
&bss_resource);
return 0; return 0;
} }
......
...@@ -51,6 +51,13 @@ struct resource code_resource = { ...@@ -51,6 +51,13 @@ struct resource code_resource = {
.flags = IORESOURCE_BUSY | IORESOURCE_MEM .flags = IORESOURCE_BUSY | IORESOURCE_MEM
}; };
struct resource bss_resource = {
.name = "Kernel bss",
.start = 0,
.end = 0,
.flags = IORESOURCE_BUSY | IORESOURCE_MEM
};
static struct resource system_rom_resource = { static struct resource system_rom_resource = {
.name = "System ROM", .name = "System ROM",
.start = 0xf0000, .start = 0xf0000,
...@@ -254,7 +261,9 @@ static void __init probe_roms(void) ...@@ -254,7 +261,9 @@ static void __init probe_roms(void)
* and also for regions reported as reserved by the e820. * and also for regions reported as reserved by the e820.
*/ */
static void __init static void __init
legacy_init_iomem_resources(struct resource *code_resource, struct resource *data_resource) legacy_init_iomem_resources(struct resource *code_resource,
struct resource *data_resource,
struct resource *bss_resource)
{ {
int i; int i;
...@@ -287,6 +296,7 @@ legacy_init_iomem_resources(struct resource *code_resource, struct resource *dat ...@@ -287,6 +296,7 @@ legacy_init_iomem_resources(struct resource *code_resource, struct resource *dat
*/ */
request_resource(res, code_resource); request_resource(res, code_resource);
request_resource(res, data_resource); request_resource(res, data_resource);
request_resource(res, bss_resource);
#ifdef CONFIG_KEXEC #ifdef CONFIG_KEXEC
if (crashk_res.start != crashk_res.end) if (crashk_res.start != crashk_res.end)
request_resource(res, &crashk_res); request_resource(res, &crashk_res);
...@@ -307,9 +317,11 @@ static int __init request_standard_resources(void) ...@@ -307,9 +317,11 @@ static int __init request_standard_resources(void)
printk("Setting up standard PCI resources\n"); printk("Setting up standard PCI resources\n");
if (efi_enabled) if (efi_enabled)
efi_initialize_iomem_resources(&code_resource, &data_resource); efi_initialize_iomem_resources(&code_resource,
&data_resource, &bss_resource);
else else
legacy_init_iomem_resources(&code_resource, &data_resource); legacy_init_iomem_resources(&code_resource,
&data_resource, &bss_resource);
/* EFI systems may still have VGA */ /* EFI systems may still have VGA */
request_resource(&iomem_resource, &video_ram_resource); request_resource(&iomem_resource, &video_ram_resource);
......
...@@ -47,7 +47,7 @@ unsigned long end_pfn_map; ...@@ -47,7 +47,7 @@ unsigned long end_pfn_map;
*/ */
static unsigned long __initdata end_user_pfn = MAXMEM>>PAGE_SHIFT; static unsigned long __initdata end_user_pfn = MAXMEM>>PAGE_SHIFT;
extern struct resource code_resource, data_resource; extern struct resource code_resource, data_resource, bss_resource;
/* Check for some hardcoded bad areas that early boot is not allowed to touch */ /* Check for some hardcoded bad areas that early boot is not allowed to touch */
static inline int bad_addr(unsigned long *addrp, unsigned long size) static inline int bad_addr(unsigned long *addrp, unsigned long size)
...@@ -225,6 +225,7 @@ void __init e820_reserve_resources(void) ...@@ -225,6 +225,7 @@ void __init e820_reserve_resources(void)
*/ */
request_resource(res, &code_resource); request_resource(res, &code_resource);
request_resource(res, &data_resource); request_resource(res, &data_resource);
request_resource(res, &bss_resource);
#ifdef CONFIG_KEXEC #ifdef CONFIG_KEXEC
if (crashk_res.start != crashk_res.end) if (crashk_res.start != crashk_res.end)
request_resource(res, &crashk_res); request_resource(res, &crashk_res);
......
...@@ -603,7 +603,8 @@ void __init efi_enter_virtual_mode(void) ...@@ -603,7 +603,8 @@ void __init efi_enter_virtual_mode(void)
void __init void __init
efi_initialize_iomem_resources(struct resource *code_resource, efi_initialize_iomem_resources(struct resource *code_resource,
struct resource *data_resource) struct resource *data_resource,
struct resource *bss_resource)
{ {
struct resource *res; struct resource *res;
efi_memory_desc_t *md; efi_memory_desc_t *md;
...@@ -675,6 +676,7 @@ efi_initialize_iomem_resources(struct resource *code_resource, ...@@ -675,6 +676,7 @@ efi_initialize_iomem_resources(struct resource *code_resource,
if (md->type == EFI_CONVENTIONAL_MEMORY) { if (md->type == EFI_CONVENTIONAL_MEMORY) {
request_resource(res, code_resource); request_resource(res, code_resource);
request_resource(res, data_resource); request_resource(res, data_resource);
request_resource(res, bss_resource);
#ifdef CONFIG_KEXEC #ifdef CONFIG_KEXEC
request_resource(res, &crashk_res); request_resource(res, &crashk_res);
#endif #endif
......
...@@ -60,6 +60,7 @@ ...@@ -60,6 +60,7 @@
#include <asm/vmi.h> #include <asm/vmi.h>
#include <setup_arch.h> #include <setup_arch.h>
#include <bios_ebda.h> #include <bios_ebda.h>
#include <asm/cacheflush.h>
/* This value is set up by the early boot code to point to the value /* This value is set up by the early boot code to point to the value
immediately after the boot time page tables. It contains a *physical* immediately after the boot time page tables. It contains a *physical*
...@@ -73,6 +74,7 @@ int disable_pse __devinitdata = 0; ...@@ -73,6 +74,7 @@ int disable_pse __devinitdata = 0;
*/ */
extern struct resource code_resource; extern struct resource code_resource;
extern struct resource data_resource; extern struct resource data_resource;
extern struct resource bss_resource;
/* cpu data as detected by the assembly code in head.S */ /* cpu data as detected by the assembly code in head.S */
struct cpuinfo_x86 new_cpu_data __cpuinitdata = { 0, 0, 0, 0, -1, 1, 0, 0, -1 }; struct cpuinfo_x86 new_cpu_data __cpuinitdata = { 0, 0, 0, 0, -1, 1, 0, 0, -1 };
...@@ -600,6 +602,8 @@ void __init setup_arch(char **cmdline_p) ...@@ -600,6 +602,8 @@ void __init setup_arch(char **cmdline_p)
code_resource.end = virt_to_phys(_etext)-1; code_resource.end = virt_to_phys(_etext)-1;
data_resource.start = virt_to_phys(_etext); data_resource.start = virt_to_phys(_etext);
data_resource.end = virt_to_phys(_edata)-1; data_resource.end = virt_to_phys(_edata)-1;
bss_resource.start = virt_to_phys(&__bss_start);
bss_resource.end = virt_to_phys(&__bss_stop)-1;
parse_early_param(); parse_early_param();
......
...@@ -58,6 +58,7 @@ ...@@ -58,6 +58,7 @@
#include <asm/numa.h> #include <asm/numa.h>
#include <asm/sections.h> #include <asm/sections.h>
#include <asm/dmi.h> #include <asm/dmi.h>
#include <asm/cacheflush.h>
/* /*
* Machine setup.. * Machine setup..
...@@ -133,6 +134,12 @@ struct resource code_resource = { ...@@ -133,6 +134,12 @@ struct resource code_resource = {
.end = 0, .end = 0,
.flags = IORESOURCE_RAM, .flags = IORESOURCE_RAM,
}; };
struct resource bss_resource = {
.name = "Kernel bss",
.start = 0,
.end = 0,
.flags = IORESOURCE_RAM,
};
#ifdef CONFIG_PROC_VMCORE #ifdef CONFIG_PROC_VMCORE
/* elfcorehdr= specifies the location of elf core header /* elfcorehdr= specifies the location of elf core header
...@@ -276,6 +283,8 @@ void __init setup_arch(char **cmdline_p) ...@@ -276,6 +283,8 @@ void __init setup_arch(char **cmdline_p)
code_resource.end = virt_to_phys(&_etext)-1; code_resource.end = virt_to_phys(&_etext)-1;
data_resource.start = virt_to_phys(&_etext); data_resource.start = virt_to_phys(&_etext);
data_resource.end = virt_to_phys(&_edata)-1; data_resource.end = virt_to_phys(&_edata)-1;
bss_resource.start = virt_to_phys(&__bss_start);
bss_resource.end = virt_to_phys(&__bss_stop)-1;
early_identify_cpu(&boot_cpu_data); early_identify_cpu(&boot_cpu_data);
......
...@@ -298,7 +298,7 @@ extern int efi_mem_attribute_range (unsigned long phys_addr, unsigned long size, ...@@ -298,7 +298,7 @@ extern int efi_mem_attribute_range (unsigned long phys_addr, unsigned long size,
u64 attr); u64 attr);
extern int __init efi_uart_console_only (void); extern int __init efi_uart_console_only (void);
extern void efi_initialize_iomem_resources(struct resource *code_resource, extern void efi_initialize_iomem_resources(struct resource *code_resource,
struct resource *data_resource); struct resource *data_resource, struct resource *bss_resource);
extern unsigned long efi_get_time(void); extern unsigned long efi_get_time(void);
extern int efi_set_rtc_mmss(unsigned long nowtime); extern int efi_set_rtc_mmss(unsigned long nowtime);
extern int is_available_memory(efi_memory_desc_t * md); extern int is_available_memory(efi_memory_desc_t * md);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment