diff options
Diffstat (limited to 'mm/memtest.c')
-rw-r--r-- | mm/memtest.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mm/memtest.c b/mm/memtest.c index 1997d93..0a1cc13 100644 --- a/mm/memtest.c +++ b/mm/memtest.c @@ -74,7 +74,8 @@ static void __init do_one_pass(u64 pattern, phys_addr_t start, phys_addr_t end) u64 i; phys_addr_t this_start, this_end; - for_each_free_mem_range(i, NUMA_NO_NODE, &this_start, &this_end, NULL) { + for_each_free_mem_range(i, NUMA_NO_NODE, MEMBLOCK_NONE, &this_start, + &this_end, NULL) { this_start = clamp(this_start, start, end); this_end = clamp(this_end, start, end); if (this_start < this_end) { |