All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH RFC] virtio_balloon: conservative balloon page shrinking
@ 2020-02-06  8:01 Wei Wang
  2020-02-06  9:04 ` Michael S. Tsirkin
                   ` (2 more replies)
  0 siblings, 3 replies; 17+ messages in thread
From: Wei Wang @ 2020-02-06  8:01 UTC (permalink / raw)
  To: linux-kernel, virtualization
  Cc: tysand, mst, david, alexander.h.duyck, rientjes, mhocko, namit,
	penguin-kernel, wei.w.wang

There are cases that users want to shrink balloon pages after the
pagecache depleted. The conservative_shrinker lets the shrinker
shrink balloon pages when all the pagecache has been reclaimed.

Signed-off-by: Wei Wang <wei.w.wang@intel.com>
---
 drivers/virtio/virtio_balloon.c | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

diff --git a/drivers/virtio/virtio_balloon.c b/drivers/virtio/virtio_balloon.c
index 93f995f6cf36..b4c5bb13a867 100644
--- a/drivers/virtio/virtio_balloon.c
+++ b/drivers/virtio/virtio_balloon.c
@@ -42,6 +42,10 @@
 static struct vfsmount *balloon_mnt;
 #endif
 
+static bool conservative_shrinker = true;
+module_param(conservative_shrinker, bool, 0644);
+MODULE_PARM_DESC(conservative_shrinker, "conservatively shrink balloon pages");
+
 enum virtio_balloon_vq {
 	VIRTIO_BALLOON_VQ_INFLATE,
 	VIRTIO_BALLOON_VQ_DEFLATE,
@@ -796,6 +800,10 @@ static unsigned long shrink_balloon_pages(struct virtio_balloon *vb,
 {
 	unsigned long pages_freed = 0;
 
+	/* Balloon pages only gets shrunk when the pagecache depleted */
+	if (conservative_shrinker && global_node_page_state(NR_FILE_PAGES))
+		return 0;
+
 	/*
 	 * One invocation of leak_balloon can deflate at most
 	 * VIRTIO_BALLOON_ARRAY_PFNS_MAX balloon pages, so we call it
@@ -837,7 +845,11 @@ static unsigned long virtio_balloon_shrinker_count(struct shrinker *shrinker,
 					struct virtio_balloon, shrinker);
 	unsigned long count;
 
-	count = vb->num_pages / VIRTIO_BALLOON_PAGES_PER_PAGE;
+	if (conservative_shrinker && global_node_page_state(NR_FILE_PAGES))
+		count = 0;
+	else
+		count = vb->num_pages / VIRTIO_BALLOON_PAGES_PER_PAGE;
+
 	count += vb->num_free_page_blocks * VIRTIO_BALLOON_HINT_BLOCK_PAGES;
 
 	return count;
-- 
2.17.1

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

end of thread, other threads:[~2020-02-14 20:22 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-02-06  8:01 [PATCH RFC] virtio_balloon: conservative balloon page shrinking Wei Wang
2020-02-06  9:04 ` Michael S. Tsirkin
2020-02-06  9:27   ` Wang, Wei W
2020-02-06  9:31     ` Michael S. Tsirkin
2020-02-06  9:43       ` Wang, Wei W
2020-02-06 11:26         ` Michael S. Tsirkin
2020-02-06  9:09 ` David Hildenbrand
2020-02-06  9:28   ` Wang, Wei W
2020-02-06  9:32     ` David Hildenbrand
2020-02-06  9:44       ` Wang, Wei W
2020-02-06  9:49         ` David Hildenbrand
2020-02-08 12:32 ` Tetsuo Handa
2020-02-10  3:13   ` Wang, Wei W
2020-02-10  3:57     ` Tetsuo Handa
2020-02-10  7:27       ` Wang, Wei W
2020-02-11 14:18         ` Tetsuo Handa
2020-02-14 20:22           ` Tyler Sanderson via Virtualization

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.