linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mm: terminate shrink_slab loop if signal is pending
@ 2017-12-06 19:20 Suren Baghdasaryan
  2017-12-06 23:26 ` Andrew Morton
                   ` (2 more replies)
  0 siblings, 3 replies; 12+ messages in thread
From: Suren Baghdasaryan @ 2017-12-06 19:20 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>
---
 mm/vmscan.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/mm/vmscan.c b/mm/vmscan.c
index c02c850ea349..69296528ff33 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

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

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

end of thread, other threads:[~2017-12-08  4:40 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-06 19:20 [PATCH] mm: terminate shrink_slab loop if signal is pending Suren Baghdasaryan
2017-12-06 23:26 ` Andrew Morton
2017-12-07  1:27   ` Suren Baghdasaryan
2017-12-07  8:34 ` Michal Hocko
2017-12-07 14:34   ` Tetsuo Handa
2017-12-08  0:44   ` Suren Baghdasaryan
2017-12-08  4:37     ` Suren Baghdasaryan
2017-12-08  4:40     ` Suren Baghdasaryan
2017-12-07  9:52 ` Sergey Senozhatsky
2017-12-07  9:58   ` Michal Hocko
2017-12-07 15:46     ` Suren Baghdasaryan
2017-12-07 16:25       ` Michal Hocko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox