The following changes since commit dc03e3788e2b47281b67e9354a7ff02a3053264a: docs: explain type of memory allocated by md_per_io_size (2024-11-22 19:50:06 +0000) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 6f3de5cefec65b1fd31abd79274089282ea6569e: stat: fix unified_rw_reporting=both BW and IOPS (2024-12-04 19:00:53 +0000) ---------------------------------------------------------------- Vincent Fu (1): stat: fix unified_rw_reporting=both BW and IOPS stat.c | 1 + 1 file changed, 1 insertion(+) --- Diff of recent changes: diff --git a/stat.c b/stat.c index c5413f2f..f1984dce 100644 --- a/stat.c +++ b/stat.c @@ -507,6 +507,7 @@ static struct thread_stat *gen_mixed_ddir_stats_from_ts(struct thread_stat *ts) ts_lcl->slat_percentiles = ts->slat_percentiles; ts_lcl->percentile_precision = ts->percentile_precision; memcpy(ts_lcl->percentile_list, ts->percentile_list, sizeof(ts->percentile_list)); + ts_lcl->sig_figs = ts->sig_figs; sum_thread_stats(ts_lcl, ts);