Skip to content

Commit 6817c94

Browse files
zhanglianjie-163tsbogend
authored andcommitted
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>
1 parent cad065e commit 6817c94

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

arch/mips/loongson64/numa.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,9 @@ static void __init node_mem_init(unsigned int node)
129129
if (node_end_pfn(0) >= (0xffffffff >> PAGE_SHIFT))
130130
memblock_reserve((node_addrspace_offset | 0xfe000000),
131131
32 << 20);
132+
133+
/* Reserve pfn range 0~node[0]->node_start_pfn */
134+
memblock_reserve(0, PAGE_SIZE * start_pfn);
132135
}
133136
}
134137

0 commit comments

Comments
 (0)