linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] mm: terminate shrink_slab loop if signal is pending
@ 2017-12-08  1:23 Suren Baghdasaryan
  2017-12-08  8:22 ` Michal Hocko
  2017-12-08 21:02 ` David Rientjes
  0 siblings, 2 replies; 15+ messages in thread
From: Suren Baghdasaryan @ 2017-12-08  1:23 UTC (permalink / raw)
  To: akpm, mhocko, hannes, hillf.zj, minchan, mgorman, ying.huang,
	linux-mm, linux-kernel
  Cc: timmurray, tkjos, Suren Baghdasaryan

Slab shrinkers can be quite time consuming and when signal
is pending they can delay handling of the signal. If fatal
signal is pending there is no point in shrinking that process
since it will be killed anyway. This change checks for pending
fatal signals inside shrink_slab loop and if one is detected
terminates this loop early.

Signed-off-by: Suren Baghdasaryan <surenb@google.com>

---
V2:
Sergey Senozhatsky:
  - Fix missing parentheses
---
 mm/vmscan.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/mm/vmscan.c b/mm/vmscan.c
index c02c850ea349..28e4bdc72c16 100644
--- a/mm/vmscan.c
+++ b/mm/vmscan.c
@@ -486,6 +486,13 @@ static unsigned long shrink_slab(gfp_t gfp_mask, int nid,
 			.memcg = memcg,
 		};
 
+		/*
+		 * We are about to die and free our memory.
+		 * Stop shrinking which might delay signal handling.
+		 */
+		if (unlikely(fatal_signal_pending(current)))
+			break;
+
 		/*
 		 * If kernel memory accounting is disabled, we ignore
 		 * SHRINKER_MEMCG_AWARE flag and call all shrinkers
-- 
2.15.1.424.g9478a66081-goog

^ permalink raw reply related	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2017-12-11 21:12 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-08  1:23 [PATCH v2] mm: terminate shrink_slab loop if signal is pending Suren Baghdasaryan
2017-12-08  8:22 ` Michal Hocko
2017-12-08 11:36   ` Tetsuo Handa
2017-12-08 11:48     ` Michal Hocko
2017-12-08 14:03       ` Tetsuo Handa
2017-12-08 18:06         ` Suren Baghdasaryan
2017-12-09  8:08           ` Tetsuo Handa
2017-12-10 10:17             ` Michal Hocko
2017-12-11 21:05             ` Suren Baghdasaryan
2017-12-10 10:13           ` Michal Hocko
2017-12-10 11:37             ` Tetsuo Handa
2017-12-11 21:12             ` Suren Baghdasaryan
2017-12-08 21:02 ` David Rientjes
2017-12-09  3:16   ` Suren Baghdasaryan
2017-12-09 12:44   ` Tetsuo Handa

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).