From: Yu Zhao Date: Fri, 16 Jun 2017 21:02:31 +0000 (-0700) Subject: swap: cond_resched in swap_cgroup_prepare() X-Git-Tag: v4.9.34~15 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f7ae7d2229d2f7c372a00b80c22b6eb5a9ac1949;p=platform%2Fkernel%2Flinux-amlogic.git swap: cond_resched in swap_cgroup_prepare() commit ef70762948dde012146926720b70e79736336764 upstream. I saw need_resched() warnings when swapping on large swapfile (TBs) because continuously allocating many pages in swap_cgroup_prepare() took too long. We already cond_resched when freeing page in swap_cgroup_swapoff(). Do the same for the page allocation. Link: http://lkml.kernel.org/r/20170604200109.17606-1-yuzhao@google.com Signed-off-by: Yu Zhao Acked-by: Michal Hocko Acked-by: Vladimir Davydov Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds Signed-off-by: Greg Kroah-Hartman --- diff --git a/mm/swap_cgroup.c b/mm/swap_cgroup.c index 310ac0b8f974..454d6d7509ed 100644 --- a/mm/swap_cgroup.c +++ b/mm/swap_cgroup.c @@ -48,6 +48,9 @@ static int swap_cgroup_prepare(int type) if (!page) goto not_enough_page; ctrl->map[idx] = page; + + if (!(idx % SWAP_CLUSTER_MAX)) + cond_resched(); } return 0; not_enough_page: