On 12/20/21 10:34, David Edmondson wrote: > ...and use it. FYI Not all mails readers / git tools display subject along with content, so it is more helpful to rewrite the subject.
> Signed-off-by: David Edmondson <david.edmond...@oracle.com> > --- > migration/ram.c | 23 ++++++++++++++--------- > 1 file changed, 14 insertions(+), 9 deletions(-) > > diff --git a/migration/ram.c b/migration/ram.c > index 57efa67f20..bd53e50a7f 100644 > --- a/migration/ram.c > +++ b/migration/ram.c > @@ -386,6 +386,11 @@ uint64_t ram_bytes_remaining(void) > > MigrationStats ram_counters; > > +static void ram_transferred_add(uint64_t bytes) > +{ > + ram_counters.transferred += bytes; > +} Reviewed-by: Philippe Mathieu-Daudé <phi...@redhat.com>