diff options
author | Juan Quintela <quintela@redhat.com> | 2023-06-13 16:57:47 +0200 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2023-10-17 22:14:51 +0200 |
commit | 1fd03d41b86daa1eb8c941dfa013cc806bcaf053 (patch) | |
tree | 3b73b19a02a56038a53ff7632b2757b43cf7be19 /migration/ram.c | |
parent | f504789de509cded05562bb3bb9abfa222446222 (diff) |
migration: Move update_compress_threads_counts() to ram-compress.c
Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Lukas Straub <lukasstraub2@web.de>
Message-ID: <20230613145757.10131-9-quintela@redhat.com>
Diffstat (limited to 'migration/ram.c')
-rw-r--r-- | migration/ram.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/migration/ram.c b/migration/ram.c index 2a9c899cb0..5595379fa6 100644 --- a/migration/ram.c +++ b/migration/ram.c @@ -1292,21 +1292,6 @@ static int ram_save_multifd_page(QEMUFile *file, RAMBlock *block, return 1; } -static void -update_compress_thread_counts(const CompressParam *param, int bytes_xmit) -{ - ram_transferred_add(bytes_xmit); - - if (param->result == RES_ZEROPAGE) { - stat64_add(&mig_stats.zero_pages, 1); - return; - } - - /* 8 means a header with RAM_SAVE_FLAG_CONTINUE. */ - compression_counters.compressed_size += bytes_xmit - 8; - compression_counters.pages++; -} - static bool save_page_use_compression(RAMState *rs); static int send_queued_data(CompressParam *param) |