Revision a6335fa11e08fc386740557b2a4c1b7ff34bc499 authored by Alexander Sverdlin on 02 July 2015, 15:16:01 UTC, committed by Ralf Baechle on 09 July 2015, 09:02:59 UTC
Commit f9a7febd leads to a fact that mapstart and therefore a page bitmap for
bootmem allocator immediately follows initrd_end. This doesn't always work
well on Octeon, where there are holes in PFN ranges (refer to 5b3b1688 and
4MB-aligned PFN allocation). Depending on the inird location it could happen,
that mapstart would be in an area not allocated by plat_mem_setup() in
arch/mips/cavium-octeon/setup.c, but in the alignment hole between initrd and
the next PFN area. Later on this memory will be unconditionally made available
to buddy allocator at the end of free_all_bootmem_core() (mm/bootmem.c).
All of this results in Linux using the memory not designated for Linux in
Octeon's plat_mem_setup(), which in turn means corruption of the memory used
by another OS/baremetal code on the same SoC.

It doesn't look to me as a problem of Octeon platform code, but rather as an
inability of f9a7febd to deal correctly with the fragmented memory-mappings.
Proposed fix moves the check for initrd address to the same calculation-loop
in bootmem_init() (arch/mips/kernel/setup.c), which also accounts for kernel
code location. This should result in mapstart located starting from the first
PFN area after kernel code AND initrd.

Signed-off-by: Alexander Sverdlin <alexander.sverdlin@nokia.com>
Cc: linux-mips@linux-mips.org
Cc: David Daney <david.daney@cavium.com>
Cc: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
Cc: Huacai Chen <chenhc@lemote.com>
Cc: Andreas Herrmann <andreas.herrmann@caviumnetworks.com>
Cc: Joe Perches <joe@perches.com>
Cc: Steven J. Hill <Steven.Hill@imgtec.com>
Cc: Yusuf Khan <yusuf.khan@nokia.com>
Cc: Michael Kreuzer <michael.kreuzer@nokia.com>
Cc: Aaro Koskinen <aaro.koskinen@iki.fi>
Patchwork: https://patchwork.linux-mips.org/patch/10594/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
1 parent 7928eb0
History
File Mode Size
netfilter
Kconfig -rw-r--r-- 2.0 KB
Makefile -rw-r--r-- 679 bytes
br.c -rw-r--r-- 5.8 KB
br_device.c -rw-r--r-- 9.2 KB
br_fdb.c -rw-r--r-- 25.3 KB
br_forward.c -rw-r--r-- 6.6 KB
br_if.c -rw-r--r-- 12.9 KB
br_input.c -rw-r--r-- 7.6 KB
br_ioctl.c -rw-r--r-- 8.9 KB
br_mdb.c -rw-r--r-- 11.0 KB
br_multicast.c -rw-r--r-- 47.3 KB
br_netfilter_hooks.c -rw-r--r-- 27.7 KB
br_netfilter_ipv6.c -rw-r--r-- 5.9 KB
br_netlink.c -rw-r--r-- 21.7 KB
br_nf_core.c -rw-r--r-- 2.2 KB
br_private.h -rw-r--r-- 23.7 KB
br_private_stp.h -rw-r--r-- 1.9 KB
br_stp.c -rw-r--r-- 13.7 KB
br_stp_bpdu.c -rw-r--r-- 5.7 KB
br_stp_if.c -rw-r--r-- 7.7 KB
br_stp_timer.c -rw-r--r-- 4.6 KB
br_sysfs_br.c -rw-r--r-- 23.6 KB
br_sysfs_if.c -rw-r--r-- 8.5 KB
br_vlan.c -rw-r--r-- 16.2 KB

back to top