qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] migration: remove not used field xfer_limit


From: Wei Yang
Subject: [Qemu-devel] [PATCH] migration: remove not used field xfer_limit
Date: Tue, 26 Mar 2019 13:57:26 +0800

MigrationState->xfer_limit is only set to 0 in migrate_init().

Remove this unnecessary field.

Signed-off-by: Wei Yang <address@hidden>
---
 migration/migration.c | 1 -
 migration/migration.h | 1 -
 2 files changed, 2 deletions(-)

diff --git a/migration/migration.c b/migration/migration.c
index e88acab53b..533c2102c7 100644
--- a/migration/migration.c
+++ b/migration/migration.c
@@ -1682,7 +1682,6 @@ void migrate_init(MigrationState *s)
      * locks.
      */
     s->bytes_xfer = 0;
-    s->xfer_limit = 0;
     s->cleanup_bh = 0;
     s->to_dst_file = NULL;
     s->rp_state.from_dst_file = NULL;
diff --git a/migration/migration.h b/migration/migration.h
index 99e99e56bd..852eb3c4e9 100644
--- a/migration/migration.h
+++ b/migration/migration.h
@@ -117,7 +117,6 @@ struct MigrationState
 
     /*< public >*/
     size_t bytes_xfer;
-    size_t xfer_limit;
     QemuThread thread;
     QEMUBH *cleanup_bh;
     QEMUFile *to_dst_file;
-- 
2.19.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]