Merge tag 'v9.0.0-rc3'
[qemu/ar7.git] / migration / migration-stats.h
blob05290ade760b315e9c21c483c0918b6bffa2016d
1 /*
2 * Migration stats
4 * Copyright (c) 2012-2023 Red Hat Inc
6 * Authors:
7 * Juan Quintela <quintela@redhat.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
13 #ifndef QEMU_MIGRATION_STATS_H
14 #define QEMU_MIGRATION_STATS_H
16 #include "qemu/stats64.h"
19 * Amount of time to allocate to each "chunk" of bandwidth-throttled
20 * data.
22 #define BUFFER_DELAY 100
25 * If rate_limit_max is 0, there is special code to remove the rate
26 * limit.
28 #define RATE_LIMIT_DISABLED 0
31 * These are the ram migration statistic counters. It is loosely
32 * based on MigrationStats. We change to Stat64 any counter that
33 * needs to be updated using atomic ops (can be accessed by more than
34 * one thread).
36 typedef struct {
38 * Number of bytes that were dirty last time that we synced with
39 * the guest memory. We use that to calculate the downtime. As
40 * the remaining dirty amounts to what we know that is still dirty
41 * since last iteration, not counting what the guest has dirtied
42 * since we synchronized bitmaps.
44 Stat64 dirty_bytes_last_sync;
46 * Number of pages dirtied per second.
48 Stat64 dirty_pages_rate;
50 * Number of times we have synchronized guest bitmaps.
52 Stat64 dirty_sync_count;
54 * Number of times zero copy failed to send any page using zero
55 * copy.
57 Stat64 dirty_sync_missed_zero_copy;
59 * Number of bytes sent at migration completion stage while the
60 * guest is stopped.
62 Stat64 downtime_bytes;
64 * Number of bytes sent through multifd channels.
66 Stat64 multifd_bytes;
68 * Number of pages transferred that were not full of zeros.
70 Stat64 normal_pages;
72 * Number of bytes sent during postcopy.
74 Stat64 postcopy_bytes;
76 * Number of postcopy page faults that we have handled during
77 * postcopy stage.
79 Stat64 postcopy_requests;
81 * Number of bytes sent during precopy stage.
83 Stat64 precopy_bytes;
85 * Number of bytes transferred with QEMUFile.
87 Stat64 qemu_file_transferred;
89 * Amount of transferred data at the start of current cycle.
91 Stat64 rate_limit_start;
93 * Maximum amount of data we can send in a cycle.
95 Stat64 rate_limit_max;
97 * Number of bytes sent through RDMA.
99 Stat64 rdma_bytes;
101 * Number of pages transferred that were full of zeros.
103 Stat64 zero_pages;
104 } MigrationAtomicStats;
106 extern MigrationAtomicStats mig_stats;
109 * migration_rate_get: Get the maximum amount that can be transferred.
111 * Returns the maximum number of bytes that can be transferred in a cycle.
113 uint64_t migration_rate_get(void);
116 * migration_rate_reset: Reset the rate limit counter.
118 * This is called when we know we start a new transfer cycle.
120 void migration_rate_reset(void);
123 * migration_rate_set: Set the maximum amount that can be transferred.
125 * Sets the maximum amount of bytes that can be transferred in one cycle.
127 * @new_rate: new maximum amount
129 void migration_rate_set(uint64_t new_rate);
132 * migration_transferred_bytes: Return number of bytes transferred
134 * Returns how many bytes have we transferred since the beginning of
135 * the migration. It accounts for bytes sent through any migration
136 * channel, multifd, qemu_file, rdma, ....
138 uint64_t migration_transferred_bytes(void);
139 #endif