diff options
Diffstat (limited to 'arch/x86/kernel/vmlinux_64.lds.S')
-rw-r--r-- | arch/x86/kernel/vmlinux_64.lds.S | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/x86/kernel/vmlinux_64.lds.S b/arch/x86/kernel/vmlinux_64.lds.S index ff373423138c..7996687663a2 100644 --- a/arch/x86/kernel/vmlinux_64.lds.S +++ b/arch/x86/kernel/vmlinux_64.lds.S | |||
@@ -250,7 +250,8 @@ SECTIONS | |||
250 | 250 | ||
251 | . = ALIGN(PAGE_SIZE); | 251 | . = ALIGN(PAGE_SIZE); |
252 | __brk_base = . ; | 252 | __brk_base = . ; |
253 | . += 1024 * 1024 ; | 253 | . += 64 * 1024; /* 64k slop space */ |
254 | *(.brk_reservation) /* areas brk users have reserved */ | ||
254 | __brk_limit = . ; | 255 | __brk_limit = . ; |
255 | } | 256 | } |
256 | 257 | ||
@@ -260,6 +261,7 @@ SECTIONS | |||
260 | /DISCARD/ : { | 261 | /DISCARD/ : { |
261 | *(.exitcall.exit) | 262 | *(.exitcall.exit) |
262 | *(.eh_frame) | 263 | *(.eh_frame) |
264 | *(.discard) | ||
263 | } | 265 | } |
264 | 266 | ||
265 | STABS_DEBUG | 267 | STABS_DEBUG |