The following changes since commit c377f4f85943e5b155b3daaab1ce5213077531d8: io_uring: use syscall helpers for the hot path (2022-02-21 09:43:48 -0700) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to cf2511565f40be1b78b3fc1194e823baf305f0a0: Merge branch 'master' of https://github.com/bvanassche/fio (2022-02-24 12:40:19 -0700) ---------------------------------------------------------------- Bart Van Assche (1): Fix three compiler warnings Jens Axboe (1): Merge branch 'master' of https://github.com/bvanassche/fio engines/cmdprio.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- Diff of recent changes: diff --git a/engines/cmdprio.c b/engines/cmdprio.c index dd358754..979a81b6 100644 --- a/engines/cmdprio.c +++ b/engines/cmdprio.c @@ -319,7 +319,7 @@ static int fio_cmdprio_gen_perc(struct thread_data *td, struct cmdprio *cmdprio) { struct cmdprio_options *options = cmdprio->options; struct cmdprio_prio *prio; - struct cmdprio_values values[CMDPRIO_RWDIR_CNT] = {0}; + struct cmdprio_values values[CMDPRIO_RWDIR_CNT] = {}; struct thread_stat *ts = &td->ts; enum fio_ddir ddir; int ret; @@ -368,8 +368,8 @@ static int fio_cmdprio_parse_and_gen_bssplit(struct thread_data *td, struct cmdprio *cmdprio) { struct cmdprio_options *options = cmdprio->options; - struct cmdprio_parse_result parse_res[CMDPRIO_RWDIR_CNT] = {0}; - struct cmdprio_values values[CMDPRIO_RWDIR_CNT] = {0}; + struct cmdprio_parse_result parse_res[CMDPRIO_RWDIR_CNT] = {}; + struct cmdprio_values values[CMDPRIO_RWDIR_CNT] = {}; struct thread_stat *ts = &td->ts; int ret, implicit_cmdprio; enum fio_ddir ddir;