mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
swap: cond_resched in swap_cgroup_prepare()
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 <yuzhao@google.com> Acked-by: Michal Hocko <mhocko@suse.com> Acked-by: Vladimir Davydov <vdavydov.dev@gmail.com> Cc: <stable@vger.kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
7258ae5c5a
commit
ef70762948
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user