82 lines
2.9 KiB
Diff
82 lines
2.9 KiB
Diff
From 1e8f268e649136a29814db86735b3c20193bd133 Mon Sep 17 00:00:00 2001
|
|
From: Alex Williamson <alex.williamson@redhat.com>
|
|
Date: Mon, 3 Dec 2018 22:02:33 +0000
|
|
Subject: [PATCH 16/16] postcopy: Synchronize usage of the balloon inhibitor
|
|
|
|
RH-Author: Alex Williamson <alex.williamson@redhat.com>
|
|
Message-id: <154387455350.27651.11210229318068647811.stgit@gimli.home>
|
|
Patchwork-id: 83241
|
|
O-Subject: [RHEL-8.0 qemu-kvm PATCH 7/7] postcopy: Synchronize usage of the balloon inhibitor
|
|
Bugzilla: 1650272
|
|
RH-Acked-by: Peter Xu <peterx@redhat.com>
|
|
RH-Acked-by: Auger Eric <eric.auger@redhat.com>
|
|
RH-Acked-by: Cornelia Huck <cohuck@redhat.com>
|
|
RH-Acked-by: David Hildenbrand <david@redhat.com>
|
|
|
|
Bugzilla: 1650272
|
|
|
|
While the qemu_balloon_inhibit() interface appears rather general purpose,
|
|
postcopy uses it in a last-caller-wins approach with no guarantee of balanced
|
|
inhibits and de-inhibits. Wrap postcopy's usage of the inhibitor to give it
|
|
one vote overall, using the same last-caller-wins approach as previously
|
|
implemented at the balloon level.
|
|
|
|
Fixes: 01ccbec7bdf6 ("balloon: Allow multiple inhibit users")
|
|
Reported-by: Christian Borntraeger <borntraeger@de.ibm.com>
|
|
Tested-by: Christian Borntraeger <borntraeger@de.ibm.com>
|
|
Reviewed-by: Cornelia Huck <cohuck@redhat.com>
|
|
Reviewed-by: Juan Quintela <quintela@redhat.com>
|
|
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
|
|
(cherry picked from commit 154304cd6e99e4222ed762976f9d9aca33c094d3)
|
|
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
|
|
---
|
|
migration/postcopy-ram.c | 18 ++++++++++++++++--
|
|
1 file changed, 16 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/migration/postcopy-ram.c b/migration/postcopy-ram.c
|
|
index 4a0b33b..b04e903 100644
|
|
--- a/migration/postcopy-ram.c
|
|
+++ b/migration/postcopy-ram.c
|
|
@@ -400,6 +400,20 @@ int postcopy_ram_incoming_init(MigrationIncomingState *mis, size_t ram_pages)
|
|
}
|
|
|
|
/*
|
|
+ * Manage a single vote to the QEMU balloon inhibitor for all postcopy usage,
|
|
+ * last caller wins.
|
|
+ */
|
|
+static void postcopy_balloon_inhibit(bool state)
|
|
+{
|
|
+ static bool cur_state = false;
|
|
+
|
|
+ if (state != cur_state) {
|
|
+ qemu_balloon_inhibit(state);
|
|
+ cur_state = state;
|
|
+ }
|
|
+}
|
|
+
|
|
+/*
|
|
* At the end of a migration where postcopy_ram_incoming_init was called.
|
|
*/
|
|
int postcopy_ram_incoming_cleanup(MigrationIncomingState *mis)
|
|
@@ -429,7 +443,7 @@ int postcopy_ram_incoming_cleanup(MigrationIncomingState *mis)
|
|
mis->have_fault_thread = false;
|
|
}
|
|
|
|
- qemu_balloon_inhibit(false);
|
|
+ postcopy_balloon_inhibit(false);
|
|
|
|
if (enable_mlock) {
|
|
if (os_mlock() < 0) {
|
|
@@ -801,7 +815,7 @@ int postcopy_ram_enable_notify(MigrationIncomingState *mis)
|
|
* Ballooning can mark pages as absent while we're postcopying
|
|
* that would cause false userfaults.
|
|
*/
|
|
- qemu_balloon_inhibit(true);
|
|
+ postcopy_balloon_inhibit(true);
|
|
|
|
trace_postcopy_ram_enable_notify();
|
|
|
|
--
|
|
1.8.3.1
|
|
|