From c4bdf0cf4b62a90b07f27f55d4650dc1cb3f8d7e Mon Sep 17 00:00:00 2001 From: Juan Quintela Date: Tue, 28 Mar 2017 14:59:54 +0200 Subject: [PATCH] ram: Change byte_xfer_{prev,now} type to uint64_t Signed-off-by: Juan Quintela Reviewed-by: Dr. David Alan Gilbert Reviewed-by: Peter Xu --- migration/ram.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/migration/ram.c b/migration/ram.c index aeef5637a5d..d13674f4b45 100644 --- a/migration/ram.c +++ b/migration/ram.c @@ -158,7 +158,7 @@ struct RAMState { /* last time we did a full bitmap_sync */ int64_t time_last_bitmap_sync; /* bytes transferred at start_time */ - int64_t bytes_xfer_prev; + uint64_t bytes_xfer_prev; }; typedef struct RAMState RAMState; @@ -660,7 +660,7 @@ static void migration_bitmap_sync(RAMState *rs) RAMBlock *block; MigrationState *s = migrate_get_current(); int64_t end_time; - int64_t bytes_xfer_now; + uint64_t bytes_xfer_now; rs->bitmap_sync_count++; -- 2.39.5