aboutsummaryrefslogtreecommitdiffstats
path: root/arch/s390
diff options
context:
space:
mode:
authorHeiko Carstens <heiko.carstens@de.ibm.com>2007-02-21 10:55:29 +0100
committerMartin Schwidefsky <schwidefsky@de.ibm.com>2007-02-21 10:55:29 +0100
commit229d9c6dfb2900559449575a56dc8abcaf0bce9d (patch)
treed06ca8602d57e8549aa330d7d10928dd9048d71b /arch/s390
parent[S390] Remove BUG() statement (diff)
downloadlinux-dev-229d9c6dfb2900559449575a56dc8abcaf0bce9d.tar.xz
linux-dev-229d9c6dfb2900559449575a56dc8abcaf0bce9d.zip
[S390] bss section clearing.
Clear only memory from __bss_start to __bss_stop when clearing the bss section. Not until _end, which currently happens to be the same. Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390')
-rw-r--r--arch/s390/kernel/early.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/kernel/early.c b/arch/s390/kernel/early.c
index 5d02e48c72e0..afca1c6f4d21 100644
--- a/arch/s390/kernel/early.c
+++ b/arch/s390/kernel/early.c
@@ -110,7 +110,7 @@ static inline void create_kernel_nss(void) { }
*/
static noinline __init void clear_bss_section(void)
{
- memset(__bss_start, 0, _end - __bss_start);
+ memset(__bss_start, 0, __bss_stop - __bss_start);
}
/*