Recent changes (master)
Jens Axboe <[email protected]> Tue, 18 Nov 2025 06:00:02 -0700
| Newsgroups | org.kernel.vger.fio |
|---|---|
| Message-ID | <[email protected]> |
The following changes since commit 1ad9ac9f54641d737128183dd5639d76fbe24571:
ci: switch to macos version 15 (2025-11-14 11:05:03 -0700)
are available in the Git repository at:
git://git.kernel.dk/fio.git master
for you to fetch changes up to b2c62314298db2269df5fe9c2454faef677bf464:
Merge branch 'fix/zero-numberio' of https://github.com/minwooim/fio (2025-11-17 11:41:39 -0500)
----------------------------------------------------------------
Minwoo Im (1):
backend: fix zero-numberio in dry-run
Vincent Fu (1):
Merge branch 'fix/zero-numberio' of https://github.com/minwooim/fio
backend.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
Diff of recent changes:
diff --git a/backend.c b/backend.c
index 684ea0de..e09c210a 100644
--- a/backend.c
+++ b/backend.c
@@ -1703,8 +1703,11 @@ static uint64_t do_dry_run(struct thread_data *td)
io_u_set(td, io_u, IO_U_F_FLIGHT);
io_u->error = 0;
io_u->resid = 0;
- if (ddir_rw(acct_ddir(io_u)))
+ if (ddir_rw(acct_ddir(io_u))) {
+ io_u->numberio = td->io_issues[acct_ddir(io_u)];
td->io_issues[acct_ddir(io_u)]++;
+ }
+
if (ddir_rw(io_u->ddir)) {
io_u_mark_depth(td, 1);
td->ts.total_io_u[io_u->ddir]++;