Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Skip to content
Commit 494de900 authored by Mel Gorman's avatar Mel Gorman Committed by Linus Torvalds
Browse files

Do not overwrite nr_zones on !NUMA when initialising zlcache_ptr



The non-NUMA case of build_zonelist_cache() would initialize the
zlcache_ptr for both node_zonelists[] to NULL.

Which is problematic, since non-NUMA only has a single node_zonelists[]
entry, and trying to zero the non-existent second one just overwrote the
nr_zones field instead.

As kswapd uses this value to determine what reclaim work is necessary,
the result is that kswapd never reclaims.  This causes processes to
stall frequently in low-memory situations as they always direct reclaim.
This patch initialises zlcache_ptr correctly.

Signed-off-by: default avatarMel Gorman <mel@csn.ul.ie>
Tested-by: default avatarDan Williams <dan.j.williams@intel.com>
[ Simplified patch a bit ]
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent c461a973
Loading
Loading
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment