All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] virtio_balloon: disable oom killer when fill balloon
@ 2011-04-26  8:59 Dave Young
  2011-04-26  9:28   ` Minchan Kim
  0 siblings, 1 reply; 15+ messages in thread
From: Dave Young @ 2011-04-26  8:59 UTC (permalink / raw)
  To: kvm, linux-kernel, kosaki.motohiro

When memory pressure is high, virtio ballooning will probably cause oom killing.
Even if alloc_page with GFP_NORETRY itself does not directly trigger oom it
will make memory becoming low then memory alloc of other processes will trigger
oom killing. It is not desired behaviour.

Here disable oom killer in fill_balloon to address this issue.
Add code comment as KOSAKI Motohiro's suggestion.

Signed-off-by: Dave Young <hidave.darkstar@gmail.com>
---
 drivers/virtio/virtio_balloon.c |    8 ++++++++
 1 file changed, 8 insertions(+)

--- linux-2.6.orig/drivers/virtio/virtio_balloon.c	2011-04-26 11:39:14.053118406 +0800
+++ linux-2.6/drivers/virtio/virtio_balloon.c	2011-04-26 16:54:56.419741542 +0800
@@ -25,6 +25,7 @@
 #include <linux/freezer.h>
 #include <linux/delay.h>
 #include <linux/slab.h>
+#include <linux/oom.h>
 
 struct virtio_balloon
 {
@@ -102,6 +103,12 @@ static void fill_balloon(struct virtio_b
 	/* We can only do one array worth at a time. */
 	num = min(num, ARRAY_SIZE(vb->pfns));
 
+	/* Disable oom killer for indirect oom due to our memory consuming
+	 * Currently only hibernation code use oom_killer_disable,
+	 * hibernation will freeze us before disable oom killer, so
+	 * It's safe here without locks.
+	 */
+	oom_killer_disable();
 	for (vb->num_pfns = 0; vb->num_pfns < num; vb->num_pfns++) {
 		struct page *page = alloc_page(GFP_HIGHUSER | __GFP_NORETRY |
 					__GFP_NOMEMALLOC | __GFP_NOWARN);
@@ -119,6 +126,7 @@ static void fill_balloon(struct virtio_b
 		vb->num_pages++;
 		list_add(&page->lru, &vb->pages);
 	}
+	oom_killer_enable();
 
 	/* Didn't get any?  Oh well. */
 	if (vb->num_pfns == 0)

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

end of thread, other threads:[~2011-04-27  2:22 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-26  8:59 [PATCH v2] virtio_balloon: disable oom killer when fill balloon Dave Young
2011-04-26  9:28 ` Minchan Kim
2011-04-26  9:28   ` Minchan Kim
2011-04-26  9:39   ` Dave Young
2011-04-26  9:39     ` Dave Young
2011-04-26 23:33     ` Minchan Kim
2011-04-26 23:33       ` Minchan Kim
2011-04-27  1:37       ` Dave Young
2011-04-27  1:37         ` Dave Young
2011-04-27  1:48         ` Dave Young
2011-04-27  1:48           ` Dave Young
2011-04-27  2:06           ` KOSAKI Motohiro
2011-04-27  2:06             ` KOSAKI Motohiro
2011-04-27  2:22             ` Dave Young
2011-04-27  2:22               ` Dave Young

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.