Skip to content

Commit

Permalink
[S390] setup: register bss section as resource
Browse files Browse the repository at this point in the history
Make kernel bss section visible via /proc/iomem like on other
architectures.

Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
  • Loading branch information
Heiko Carstens authored and Martin Schwidefsky committed Mar 23, 2011
1 parent 7118928 commit 4cc6953
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions arch/s390/kernel/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -436,9 +436,15 @@ static struct resource data_resource = {
.flags = IORESOURCE_BUSY | IORESOURCE_MEM,
};

static struct resource bss_resource = {
.name = "Kernel bss",
.flags = IORESOURCE_BUSY | IORESOURCE_MEM,
};

static struct resource __initdata *standard_resources[] = {
&code_resource,
&data_resource,
&bss_resource,
};

static void __init setup_resources(void)
Expand All @@ -450,6 +456,8 @@ static void __init setup_resources(void)
code_resource.end = (unsigned long) &_etext - 1;
data_resource.start = (unsigned long) &_etext;
data_resource.end = (unsigned long) &_edata - 1;
bss_resource.start = (unsigned long) &__bss_start;
bss_resource.end = (unsigned long) &__bss_stop - 1;

for (i = 0; i < MEMORY_CHUNKS; i++) {
if (!memory_chunk[i].size)
Expand Down

0 comments on commit 4cc6953

Please sign in to comment.