]> Git Repo - linux.git/commitdiff
kexec: don't invoke OOM-killer for control page allocation
authorRussell King <[email protected]>
Tue, 2 Aug 2016 21:05:54 +0000 (14:05 -0700)
committerLinus Torvalds <[email protected]>
Tue, 2 Aug 2016 23:35:26 +0000 (19:35 -0400)
If we are unable to find a suitable page when allocating the control
page, do not invoke the OOM-killer: killing processes probably isn't
going to help.

Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Russell King <[email protected]>
Reviewed-by: Pratyush Anand <[email protected]>
Acked-by: Baoquan He <[email protected]>
Cc: Keerthy <[email protected]>
Cc: Vitaly Andrianov <[email protected]>
Cc: Eric Biederman <[email protected]>
Cc: Dave Young <[email protected]>
Cc: Vivek Goyal <[email protected]>
Cc: Simon Horman <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
include/linux/kexec.h

index e8acb2b43dd918f1ee55f6c612e9af425c9b84d4..ce2fe197f5838611df03b2d6ecdbd69dec182405 100644 (file)
@@ -41,7 +41,7 @@
 #endif
 
 #ifndef KEXEC_CONTROL_MEMORY_GFP
-#define KEXEC_CONTROL_MEMORY_GFP GFP_KERNEL
+#define KEXEC_CONTROL_MEMORY_GFP (GFP_KERNEL | __GFP_NORETRY)
 #endif
 
 #ifndef KEXEC_CONTROL_PAGE_SIZE
This page took 0.066812 seconds and 4 git commands to generate.