Cédric Le Goater <c...@kaod.org> wrote: > On 5/8/23 15:08, Juan Quintela wrote: >> It is a time that needs to be cleaned each time cancel migration. >> Once there ccreate calculate_time_since() to calculate how time since >> a time in the past. >> Signed-off-by: Juan Quintela <quint...@redhat.com> >> --- >> migration/migration-stats.c | 7 +++++++ >> migration/migration-stats.h | 14 ++++++++++++++ >> migration/migration.c | 9 ++++----- >> migration/migration.h | 1 - >> 4 files changed, 25 insertions(+), 6 deletions(-) >> diff --git a/migration/migration-stats.c >> b/migration/migration-stats.c >> index 2f2cea965c..5278c6c821 100644 >> --- a/migration/migration-stats.c >> +++ b/migration/migration-stats.c >> @@ -12,6 +12,13 @@ >> #include "qemu/osdep.h" >> #include "qemu/stats64.h" >> +#include "qemu/timer.h" >> #include "migration-stats.h" >> MigrationAtomicStats mig_stats; >> + >> +void calculate_time_since(Stat64 *val, int64_t since) >> +{ >> + int64_t now = qemu_clock_get_ms(QEMU_CLOCK_HOST); >> + stat64_set(val, now - since); >> +} >> diff --git a/migration/migration-stats.h b/migration/migration-stats.h >> index cf8a4f0410..73c73d75b9 100644 >> --- a/migration/migration-stats.h >> +++ b/migration/migration-stats.h >> @@ -69,6 +69,10 @@ typedef struct { >> * Number of bytes sent during precopy stage. >> */ >> Stat64 precopy_bytes; >> + /* >> + * How long has the setup stage took. >> + */ >> + Stat64 setup_time; >> /* >> * Total number of bytes transferred. >> */ >> @@ -81,4 +85,14 @@ typedef struct { >> extern MigrationAtomicStats mig_stats; >> +/** >> + * calculate_time_since: Calculate how much time has passed >> + * >> + * @val: stat64 where to store the time >> + * @since: reference time since we want to calculate >> + * >> + * Returns: Nothing. The time is stored in val. >> + */ >> + >> +void calculate_time_since(Stat64 *val, int64_t since); > > Since this routine is in the "migration" namespace, I would rename it to > > void migration_time_since(Stat64 *val, int64_t since); > > of even > > void migration_time_since(MigrationAtomicStats *stat, int64_t since); > > Do you need it elsewhere than in migration.c ?
Not yet. I can change to this and later change if needed. Thanks, Juan.