The following changes since commit 9ffe433d729101a34d9709030d7d4dd2444347ef: t/zbd: Avoid inappropriate blkzone command call in zone_cap_bs (2021-12-14 06:48:14 -0700) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to e86afa536b175a90546e20d7d19f2418ee1bca78: stat: sum sync_stat before reassigning bool first (2021-12-15 08:45:32 -0700) ---------------------------------------------------------------- Niklas Cassel (1): stat: sum sync_stat before reassigning bool first stat.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- Diff of recent changes: diff --git a/stat.c b/stat.c index 7e84058d..ec44c79e 100644 --- a/stat.c +++ b/stat.c @@ -2130,6 +2130,8 @@ void sum_thread_stats(struct thread_stat *dst, struct thread_stat *src, { int k, l, m; + sum_stat(&dst->sync_stat, &src->sync_stat, first, false); + for (l = 0; l < DDIR_RWDIR_CNT; l++) { if (!(dst->unified_rw_rep == UNIFIED_MIXED)) { sum_stat(&dst->clat_stat[l], &src->clat_stat[l], first, false); @@ -2166,7 +2168,6 @@ void sum_thread_stats(struct thread_stat *dst, struct thread_stat *src, } } - sum_stat(&dst->sync_stat, &src->sync_stat, first, false); dst->usr_time += src->usr_time; dst->sys_time += src->sys_time; dst->ctx += src->ctx;