diff options
Diffstat (limited to 'arch/x86/kernel/vmlinux_64.lds.S')
-rw-r--r-- | arch/x86/kernel/vmlinux_64.lds.S | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/x86/kernel/vmlinux_64.lds.S b/arch/x86/kernel/vmlinux_64.lds.S index fe5d21ce724..ff373423138 100644 --- a/arch/x86/kernel/vmlinux_64.lds.S +++ b/arch/x86/kernel/vmlinux_64.lds.S @@ -247,6 +247,11 @@ SECTIONS *(.bss.page_aligned) *(.bss) __bss_stop = .; + + . = ALIGN(PAGE_SIZE); + __brk_base = . ; + . += 1024 * 1024 ; + __brk_limit = . ; } _end = . ; |