The following changes since commit c11e22e92f3796f21eb15eb6ddc1614d9fa4f99d: Merge branch 'spellingfixes-2023-10-23' of https://github.com/proact-de/fio (2023-10-23 08:32:46 -0600) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 7a725c78547f7337dddb6fd391f80914f671e583: Merge branch 'englist' of https://github.com/vt-alt/fio (2023-10-25 17:53:40 -0400) ---------------------------------------------------------------- Vincent Fu (2): engines/io_uring_cmd: allocate enough ranges for async trims Merge branch 'englist' of https://github.com/vt-alt/fio Vitaly Chikunov (1): nfs: Fix incorrect engine registering for '--enghelp' list engines/io_uring.c | 2 +- engines/nfs.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- Diff of recent changes: diff --git a/engines/io_uring.c b/engines/io_uring.c index 05703df8..38c36fdc 100644 --- a/engines/io_uring.c +++ b/engines/io_uring.c @@ -1196,7 +1196,7 @@ static int fio_ioring_init(struct thread_data *td) td->o.zone_mode == ZONE_MODE_ZBD) td->io_ops->flags |= FIO_ASYNCIO_SYNC_TRIM; else - ld->dsm = calloc(ld->iodepth, sizeof(*ld->dsm)); + ld->dsm = calloc(td->o.iodepth, sizeof(*ld->dsm)); return 0; } diff --git a/engines/nfs.c b/engines/nfs.c index 970962a3..ce748d14 100644 --- a/engines/nfs.c +++ b/engines/nfs.c @@ -308,7 +308,7 @@ static int fio_libnfs_close(struct thread_data *td, struct fio_file *f) return ret; } -struct ioengine_ops ioengine = { +static struct ioengine_ops ioengine = { .name = "nfs", .version = FIO_IOOPS_VERSION, .setup = fio_libnfs_setup,