Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1655701

[PATCH] swap: cond_resched in swap_cgroup_prepare()

From Yu Zhao <yuzhao@google.com>
Newsgroups linux.kernel
Subject [PATCH] swap: cond_resched in swap_cgroup_prepare()
Date 2017-06-01 22:00 +0200
Message-ID <tNEqe-73L-11@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


Saw need_resched() warnings when swapping on large swapfile (TBs)
because page allocation 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.

Signed-off-by: Yu Zhao <yuzhao@google.com>
---
 mm/swap_cgroup.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/mm/swap_cgroup.c b/mm/swap_cgroup.c
index ac6318a064d3..3405b4ee1757 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:
-- 
2.13.0.219.gdb65acc882-goog

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH] swap: cond_resched in swap_cgroup_prepare() Yu Zhao <yuzhao@google.com> - 2017-06-01 22:00 +0200
  Re: [PATCH] swap: cond_resched in swap_cgroup_prepare() Michal Hocko <mhocko@kernel.org> - 2017-06-02 10:20 +0200
    Re: [PATCH] swap: cond_resched in swap_cgroup_prepare() Yu Zhao <yuzhao@google.com> - 2017-06-04 21:40 +0200
  Re: [PATCH] swap: cond_resched in swap_cgroup_prepare() Vladimir Davydov <vdavydov.dev@gmail.com> - 2017-06-03 17:00 +0200
  [PATCH v2] swap: cond_resched in swap_cgroup_prepare() Yu Zhao <yuzhao@google.com> - 2017-06-04 22:10 +0200
    Re: [PATCH v2] swap: cond_resched in swap_cgroup_prepare() Michal Hocko <mhocko@kernel.org> - 2017-06-05 07:20 +0200

csiph-web