]> git.baikalelectronics.ru Git - kernel.git/commit
MIPS: loongsoon64: Reserve memory below starting pfn to prevent Oops
authorzhanglianjie <zhanglianjie@uniontech.com>
Mon, 28 Jun 2021 09:11:05 +0000 (17:11 +0800)
committerThomas Bogendoerfer <tsbogend@alpha.franken.de>
Tue, 29 Jun 2021 08:15:46 +0000 (10:15 +0200)
commit0943c8db4b0f2f3e790836209474c4a524f2ef93
tree460efbb48ee8b188d1d6758e0e25a7fad5eedbf6
parent1c80616376796dc30174fd3bd4d0b9492c5c6d71
MIPS: loongsoon64: Reserve memory below starting pfn to prevent Oops

The cause of the problem is as follows:
1. when cat /sys/devices/system/memory/memory0/valid_zones,
   test_pages_in_a_zone() will be called.
2. test_pages_in_a_zone() finds the zone according to stat_pfn = 0.
   The smallest pfn of the numa node in the mips architecture is 128,
   and the page corresponding to the previous 0~127 pfn is not
   initialized (page->flags is 0xFFFFFFFF)
3. The nid and zonenum obtained using page_zone(pfn_to_page(0)) are out
   of bounds in the corresponding array,
   &NODE_DATA(page_to_nid(page))->node_zones[page_zonenum(page)],
   access to the out-of-bounds zone member variables appear abnormal,
   resulting in Oops.
Therefore, it is necessary to keep the page between 0 and the minimum
pfn to prevent Oops from appearing.

Signed-off-by: zhanglianjie <zhanglianjie@uniontech.com>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
arch/mips/loongson64/numa.c