diff options
author | Juan Quintela <quintela@redhat.com> | 2023-04-19 18:19:45 +0200 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2023-04-24 11:29:00 +0200 |
commit | 8c0cda8fa0de0a50148e2c60552afca9cffca643 (patch) | |
tree | ed144a8597ed7874f0943a23c4b742a58d2f90dd /migration/ram.h | |
parent | 1a386e8de5995fb5478ea99baa6d3e71abcf4b80 (diff) |
migration: Rename normal to normal_pages
Rest of counters that refer to pages has a _pages suffix.
And historically, this showed the number of full pages transferred.
The name "normal" refered to the fact that they were sent without any
optimization (compression, xbzrle, zero_page, ...).
Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Peter Xu <peterx@redhat.com>
Diffstat (limited to 'migration/ram.h')
-rw-r--r-- | migration/ram.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/migration/ram.h b/migration/ram.h index 55258334fe..a6e0d70226 100644 --- a/migration/ram.h +++ b/migration/ram.h @@ -47,7 +47,7 @@ typedef struct { Stat64 downtime_bytes; Stat64 zero_pages; Stat64 multifd_bytes; - Stat64 normal; + Stat64 normal_pages; Stat64 postcopy_bytes; Stat64 postcopy_requests; Stat64 precopy_bytes; |