The following changes since commit 2d0debb3fca7ddc4374624acb8c70fc8292d860d: t/run-fio-tests: add t/nvmept_trim.py (2024-02-15 14:05:12 -0500) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 38d01cc56366aa2fd3af42dbab522888b6359dec: verify: fix integer sizes in verify state file (2024-02-16 09:25:35 -0500) ---------------------------------------------------------------- Vincent Fu (1): verify: fix integer sizes in verify state file verify.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- Diff of recent changes: diff --git a/verify.c b/verify.c index b438eed6..b2fede24 100644 --- a/verify.c +++ b/verify.c @@ -1619,8 +1619,8 @@ struct all_io_list *get_all_io_list(int save_mask, size_t *sz) comps = fill_file_completions(td, s, &index); s->no_comps = cpu_to_le64((uint64_t) comps); - s->depth = cpu_to_le64((uint64_t) td->o.iodepth); - s->nofiles = cpu_to_le64((uint64_t) td->o.nr_files); + s->depth = cpu_to_le32((uint32_t) td->o.iodepth); + s->nofiles = cpu_to_le32((uint32_t) td->o.nr_files); s->numberio = cpu_to_le64((uint64_t) td->io_issues[DDIR_WRITE]); s->index = cpu_to_le64((uint64_t) __td_index); if (td->random_state.use64) {