Commit b898a424 authored by Bernhard Walle's avatar Bernhard Walle Committed by Tony Luck

[IA64] rename _bss to __bss_start

Rename _bss to __bss_start as on other architectures.  That makes it
possible to use the <linux/sections.h> instead of own declarations.  Also
add __bss_stop because that symbol exists on other architectures.
Signed-off-by: default avatarBernhard Walle <bwalle@suse.de>
Cc: "Luck, Tony" <tony.luck@intel.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarTony Luck <tony.luck@intel.com>
parent afc2cf35
...@@ -22,10 +22,11 @@ SECTIONS ...@@ -22,10 +22,11 @@ SECTIONS
.sdata : { *(.sdata) } .sdata : { *(.sdata) }
_edata = .; _edata = .;
_bss = .; __bss_start = .;
.sbss : { *(.sbss) *(.scommon) } .sbss : { *(.sbss) *(.scommon) }
.bss : { *(.bss) *(COMMON) } .bss : { *(.bss) *(COMMON) }
. = ALIGN(64 / 8); . = ALIGN(64 / 8);
__bss_stop = .;
_end = . ; _end = . ;
/* Stabs debugging sections. */ /* Stabs debugging sections. */
......
...@@ -95,7 +95,6 @@ static struct resource bss_resource = { ...@@ -95,7 +95,6 @@ static struct resource bss_resource = {
.name = "Kernel bss", .name = "Kernel bss",
.flags = IORESOURCE_BUSY | IORESOURCE_MEM .flags = IORESOURCE_BUSY | IORESOURCE_MEM
}; };
extern char _text[], _end[], _etext[], _edata[], _bss[];
unsigned long ia64_max_cacheline_size; unsigned long ia64_max_cacheline_size;
...@@ -206,7 +205,7 @@ static int __init register_memory(void) ...@@ -206,7 +205,7 @@ static int __init register_memory(void)
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(_edata) - 1; data_resource.end = ia64_tpa(_edata) - 1;
bss_resource.start = ia64_tpa(_bss); bss_resource.start = ia64_tpa(__bss_start);
bss_resource.end = ia64_tpa(_end) - 1; bss_resource.end = ia64_tpa(_end) - 1;
efi_initialize_iomem_resources(&code_resource, &data_resource, efi_initialize_iomem_resources(&code_resource, &data_resource,
&bss_resource); &bss_resource);
......
...@@ -240,11 +240,12 @@ SECTIONS ...@@ -240,11 +240,12 @@ SECTIONS
.sdata : AT(ADDR(.sdata) - LOAD_OFFSET) .sdata : AT(ADDR(.sdata) - LOAD_OFFSET)
{ *(.sdata) *(.sdata1) *(.srdata) } { *(.sdata) *(.sdata1) *(.srdata) }
_edata = .; _edata = .;
_bss = .; __bss_start = .;
.sbss : AT(ADDR(.sbss) - LOAD_OFFSET) .sbss : AT(ADDR(.sbss) - LOAD_OFFSET)
{ *(.sbss) *(.scommon) } { *(.sbss) *(.scommon) }
.bss : AT(ADDR(.bss) - LOAD_OFFSET) .bss : AT(ADDR(.bss) - LOAD_OFFSET)
{ *(.bss) *(COMMON) } { *(.bss) *(COMMON) }
__bss_stop = .;
_end = .; _end = .;
......
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