On Tue, Jan 17, 2017 at 11:16:10PM +0100, Vlastimil Babka wrote: > Ganapatrao Kulkarni reported that the LTP test cpuset01 in stress mode triggers > OOM killer in few seconds, despite lots of free memory. The test attemps to > repeatedly fault in memory in one process in a cpuset, while changing allowed > nodes of the cpuset between 0 and 1 in another process. > > The problem comes from insufficient protection against cpuset changes, which > can cause get_page_from_freelist() to consider all zones as non-eligible due to > nodemask and/or current->mems_allowed. This was masked in the past by > sufficient retries, but since commit 682a3385e773 ("mm, page_alloc: inline the > fast path of the zonelist iterator") we fix the preferred_zoneref once, and > don't iterate the whole zonelist in further attempts. > > A previous patch fixed this problem for current->mems_allowed. However, cpuset > changes also update the policy nodemasks. The fix has two parts. We have to > repeat the preferred_zoneref search when we detect cpuset update by way of > seqcount, and we have to check the seqcount before considering OOM. > > Reported-by: Ganapatrao Kulkarni <gpkulkarni@xxxxxxxxx> > Fixes: 682a3385e773 ("mm, page_alloc: inline the fast path of the zonelist iterator") > Signed-off-by: Vlastimil Babka <vbabka@xxxxxxx> Acked-by: Mel Gorman <mgorman@xxxxxxxxxxxxxxxxxxx> -- Mel Gorman SUSE Labs -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>