diff options
author | Helge Deller <deller@gmx.de> | 2016-10-07 16:50:21 +0200 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2016-10-07 17:03:02 +0200 |
commit | 4fe9e1d957e45ad8eba9885ee860a0e93d13a7c7 (patch) | |
tree | 3b9777d418977e74cdb37404de428c90aa1aee0a /arch/parisc/kernel/vmlinux.lds.S | |
parent | 9e91db6b4abecd58647a5e984d538187f1c2ea09 (diff) | |
download | op-kernel-dev-4fe9e1d957e45ad8eba9885ee860a0e93d13a7c7.zip op-kernel-dev-4fe9e1d957e45ad8eba9885ee860a0e93d13a7c7.tar.gz |
parisc: Drop bootmem and switch to memblock
Memblock is the standard kernel boot-time memory tracker/allocator. Use it
instead of the bootmem allocator. This allows using kmemleak, CMA and
other features.
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'arch/parisc/kernel/vmlinux.lds.S')
-rw-r--r-- | arch/parisc/kernel/vmlinux.lds.S | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/parisc/kernel/vmlinux.lds.S b/arch/parisc/kernel/vmlinux.lds.S index f3ead0b..5b8fae8 100644 --- a/arch/parisc/kernel/vmlinux.lds.S +++ b/arch/parisc/kernel/vmlinux.lds.S @@ -138,8 +138,6 @@ SECTIONS /* BSS */ BSS_SECTION(PAGE_SIZE, PAGE_SIZE, PAGE_SIZE) - /* bootmap is allocated in setup_bootmem() directly behind bss. */ - . = ALIGN(HUGEPAGE_SIZE); _end = . ; |