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>
This commit is contained in:
parent
f504789de5
commit
1fd03d41b8
@ -32,11 +32,14 @@
|
||||
#include "ram-compress.h"
|
||||
|
||||
#include "qemu/error-report.h"
|
||||
#include "qemu/stats64.h"
|
||||
#include "migration.h"
|
||||
#include "options.h"
|
||||
#include "io/channel-null.h"
|
||||
#include "exec/target_page.h"
|
||||
#include "exec/ramblock.h"
|
||||
#include "ram.h"
|
||||
#include "migration-stats.h"
|
||||
|
||||
CompressionStats compression_counters;
|
||||
|
||||
@ -507,3 +510,17 @@ uint64_t ram_compressed_pages(void)
|
||||
return compression_counters.pages;
|
||||
}
|
||||
|
||||
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++;
|
||||
}
|
||||
|
||||
|
@ -70,5 +70,6 @@ void decompress_data_with_multi_threads(QEMUFile *f, void *host, int len);
|
||||
|
||||
void populate_compress(MigrationInfo *info);
|
||||
uint64_t ram_compressed_pages(void);
|
||||
void update_compress_thread_counts(const CompressParam *param, int bytes_xmit);
|
||||
|
||||
#endif
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user