Blame SOURCES/kvm-migration-multifd-Report-to-user-when-zerocopy-not-w.patch

1be5c7
From 2516a21205e67078cb735e9fd47ba50156c166b7 Mon Sep 17 00:00:00 2001
1be5c7
From: Leonardo Bras <leobras@redhat.com>
1be5c7
Date: Mon, 11 Jul 2022 18:11:13 -0300
1be5c7
Subject: [PATCH 5/9] migration/multifd: Report to user when zerocopy not
1be5c7
 working
1be5c7
MIME-Version: 1.0
1be5c7
Content-Type: text/plain; charset=UTF-8
1be5c7
Content-Transfer-Encoding: 8bit
1be5c7
1be5c7
RH-Author: Leonardo Brás <leobras@redhat.com>
1be5c7
RH-MergeRequest: 201: Zero-copy-send fixes + improvements
1be5c7
RH-Commit: [5/8] 0b2e23b7f8ae72936e11369cd44ba474ef3b9e8c
1be5c7
RH-Bugzilla: 2110203
1be5c7
RH-Acked-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
1be5c7
RH-Acked-by: Peter Xu <peterx@redhat.com>
1be5c7
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
1be5c7
1be5c7
Some errors, like the lack of Scatter-Gather support by the network
1be5c7
interface(NETIF_F_SG) may cause sendmsg(...,MSG_ZEROCOPY) to fail on using
1be5c7
zero-copy, which causes it to fall back to the default copying mechanism.
1be5c7
1be5c7
After each full dirty-bitmap scan there should be a zero-copy flush
1be5c7
happening, which checks for errors each of the previous calls to
1be5c7
sendmsg(...,MSG_ZEROCOPY). If all of them failed to use zero-copy, then
1be5c7
increment dirty_sync_missed_zero_copy migration stat to let the user know
1be5c7
about it.
1be5c7
1be5c7
Signed-off-by: Leonardo Bras <leobras@redhat.com>
1be5c7
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
1be5c7
Acked-by: Peter Xu <peterx@redhat.com>
1be5c7
Message-Id: <20220711211112.18951-4-leobras@redhat.com>
1be5c7
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
1be5c7
(cherry picked from commit d59c40cc483729f2e67c80e58df769ad19976fe9)
1be5c7
Signed-off-by: Leonardo Bras <leobras@redhat.com>
1be5c7
---
1be5c7
 migration/multifd.c | 2 ++
1be5c7
 migration/ram.c     | 5 +++++
1be5c7
 migration/ram.h     | 2 ++
1be5c7
 3 files changed, 9 insertions(+)
1be5c7
1be5c7
diff --git a/migration/multifd.c b/migration/multifd.c
1be5c7
index 90ab4c4346..7c16523e6b 100644
1be5c7
--- a/migration/multifd.c
1be5c7
+++ b/migration/multifd.c
1be5c7
@@ -631,6 +631,8 @@ int multifd_send_sync_main(QEMUFile *f)
1be5c7
             if (ret < 0) {
1be5c7
                 error_report_err(err);
1be5c7
                 return -1;
1be5c7
+            } else if (ret == 1) {
1be5c7
+                dirty_sync_missed_zero_copy();
1be5c7
             }
1be5c7
         }
1be5c7
     }
1be5c7
diff --git a/migration/ram.c b/migration/ram.c
1be5c7
index e7173da217..93cdb456ac 100644
1be5c7
--- a/migration/ram.c
1be5c7
+++ b/migration/ram.c
1be5c7
@@ -403,6 +403,11 @@ static void ram_transferred_add(uint64_t bytes)
1be5c7
     ram_counters.transferred += bytes;
1be5c7
 }
1be5c7
 
1be5c7
+void dirty_sync_missed_zero_copy(void)
1be5c7
+{
1be5c7
+    ram_counters.dirty_sync_missed_zero_copy++;
1be5c7
+}
1be5c7
+
1be5c7
 /* used by the search for pages to send */
1be5c7
 struct PageSearchStatus {
1be5c7
     /* Current block being searched */
1be5c7
diff --git a/migration/ram.h b/migration/ram.h
1be5c7
index c515396a9a..69c3ccb26a 100644
1be5c7
--- a/migration/ram.h
1be5c7
+++ b/migration/ram.h
1be5c7
@@ -88,4 +88,6 @@ void ram_write_tracking_prepare(void);
1be5c7
 int ram_write_tracking_start(void);
1be5c7
 void ram_write_tracking_stop(void);
1be5c7
 
1be5c7
+void dirty_sync_missed_zero_copy(void);
1be5c7
+
1be5c7
 #endif
1be5c7
-- 
1be5c7
2.31.1
1be5c7