Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 233476
b: refs/heads/master
c: a8c8d7c
h: refs/heads/master
v: v3
  • Loading branch information
Martin Schwidefsky authored and Martin Schwidefsky committed Feb 17, 2011
1 parent a5af1b0 commit 225e8cc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 03e3b5a0f18c53560de1984fbbfca146d31da2a5
refs/heads/master: a8c8d7c683419d059e302373afc6998244f5f60f
5 changes: 3 additions & 2 deletions trunk/arch/s390/boot/compressed/misc.c
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,12 @@ unsigned long decompress_kernel(void)
unsigned long output_addr;
unsigned char *output;

check_ipl_parmblock((void *) 0, (unsigned long) output + SZ__bss_start);
output_addr = ((unsigned long) &_end + HEAP_SIZE + 4095UL) & -4096UL;
check_ipl_parmblock((void *) 0, output_addr + SZ__bss_start);
memset(&_bss, 0, &_ebss - &_bss);
free_mem_ptr = (unsigned long)&_end;
free_mem_end_ptr = free_mem_ptr + HEAP_SIZE;
output = (unsigned char *) ((free_mem_end_ptr + 4095UL) & -4096UL);
output = (unsigned char *) output_addr;

#ifdef CONFIG_BLK_DEV_INITRD
/*
Expand Down

0 comments on commit 225e8cc

Please sign in to comment.