Blame SOURCES/kvm-memory-Share-special-empty-FlatView.patch

4a2fec
From 5643e64ad775e2a14c76faa867ad698c5e1fe9c7 Mon Sep 17 00:00:00 2001
4a2fec
From: David Gibson <dgibson@redhat.com>
4a2fec
Date: Thu, 16 Nov 2017 03:07:32 +0100
4a2fec
Subject: [PATCH 28/30] memory: Share special empty FlatView
4a2fec
4a2fec
RH-Author: David Gibson <dgibson@redhat.com>
4a2fec
Message-id: <20171116030732.8560-23-dgibson@redhat.com>
4a2fec
Patchwork-id: 77711
4a2fec
O-Subject: [PATCH 22/22] memory: Share special empty FlatView
4a2fec
Bugzilla: 1481593
4a2fec
RH-Acked-by: Thomas Huth <thuth@redhat.com>
4a2fec
RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com>
4a2fec
RH-Acked-by: Eduardo Habkost <ehabkost@redhat.com>
4a2fec
RH-Acked-by: Laurent Vivier <lvivier@redhat.com>
4a2fec
4a2fec
From: Alexey Kardashevskiy <aik@ozlabs.ru>
4a2fec
4a2fec
This shares an cached empty FlatView among address spaces. The empty
4a2fec
FV is used every time when a root MR renders into a FV without memory
4a2fec
sections which happens when MR or its children are not enabled or
4a2fec
zero-sized. The empty_view is not NULL to keep the rest of memory
4a2fec
API intact; it also has a dispatch tree for the same reason.
4a2fec
4a2fec
On POWER8 with 255 CPUs, 255 virtio-net, 40 PCI bridges guest this halves
4a2fec
the amount of FlatView's in use (557 -> 260) and dispatch tables
4a2fec
(~800000 -> ~370000).  In an unrelated experiment with 112 non-virtio
4a2fec
devices on x86 ("-M pc"), only 4 FlatViews are alive, and about ~2000
4a2fec
are created at startup.
4a2fec
4a2fec
Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
4a2fec
Message-Id: <20170921085110.25598-16-aik@ozlabs.ru>
4a2fec
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
4a2fec
(cherry picked from commit 092aa2fc65b7a35121616aad8f39d47b8f921618)
4a2fec
4a2fec
Signed-off-by: David Gibson <dgibson@redhat.com>
4a2fec
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
4a2fec
---
4a2fec
 memory.c | 18 ++++++++++++++++--
4a2fec
 1 file changed, 16 insertions(+), 2 deletions(-)
4a2fec
4a2fec
diff --git a/memory.c b/memory.c
4a2fec
index 38eabe7..a1f1e68 100644
4a2fec
--- a/memory.c
4a2fec
+++ b/memory.c
4a2fec
@@ -317,6 +317,7 @@ static void flatview_unref(FlatView *view)
4a2fec
 {
4a2fec
     if (atomic_fetch_dec(&view->ref) == 1) {
4a2fec
         trace_flatview_destroy_rcu(view, view->root);
4a2fec
+        assert(view->root);
4a2fec
         call_rcu(view, flatview_destroy, rcu);
4a2fec
     }
4a2fec
 }
4a2fec
@@ -760,16 +761,19 @@ static MemoryRegion *memory_region_get_flatview_root(MemoryRegion *mr)
4a2fec
                     }
4a2fec
                 }
4a2fec
             }
4a2fec
+            if (found == 0) {
4a2fec
+                return NULL;
4a2fec
+            }
4a2fec
             if (next) {
4a2fec
                 mr = next;
4a2fec
                 continue;
4a2fec
             }
4a2fec
         }
4a2fec
 
4a2fec
-        break;
4a2fec
+        return mr;
4a2fec
     }
4a2fec
 
4a2fec
-    return mr;
4a2fec
+    return NULL;
4a2fec
 }
4a2fec
 
4a2fec
 /* Render a memory topology into a list of disjoint absolute ranges. */
4a2fec
@@ -965,12 +969,22 @@ static void address_space_update_topology_pass(AddressSpace *as,
4a2fec
 
4a2fec
 static void flatviews_init(void)
4a2fec
 {
4a2fec
+    static FlatView *empty_view;
4a2fec
+
4a2fec
     if (flat_views) {
4a2fec
         return;
4a2fec
     }
4a2fec
 
4a2fec
     flat_views = g_hash_table_new_full(g_direct_hash, g_direct_equal, NULL,
4a2fec
                                        (GDestroyNotify) flatview_unref);
4a2fec
+    if (!empty_view) {
4a2fec
+        empty_view = generate_memory_topology(NULL);
4a2fec
+        /* We keep it alive forever in the global variable.  */
4a2fec
+        flatview_ref(empty_view);
4a2fec
+    } else {
4a2fec
+        g_hash_table_replace(flat_views, NULL, empty_view);
4a2fec
+        flatview_ref(empty_view);
4a2fec
+    }
4a2fec
 }
4a2fec
 
4a2fec
 static void flatviews_reset(void)
4a2fec
-- 
4a2fec
1.8.3.1
4a2fec