Recent changes (master)
Jens Axboe <[email protected]> Tue, 7 Apr 2026 06:00:01 -0600
| Newsgroups | org.kernel.vger.fio |
|---|---|
| Message-ID | <[email protected]> |
The following changes since commit d0218ba66e9dc8402f1ac366b964277a1f2f2797:
Merge branch 'fix_statsem_deadlock' of https://github.com/RyanTedrick/fio (2026-04-01 09:08:08 -0600)
are available in the Git repository at:
git://git.kernel.dk/fio.git master
for you to fetch changes up to ab77643023f5d7e3c1b71a7576a564f368bf577a:
Fio 3.42 (2026-04-06 20:11:47 -0600)
----------------------------------------------------------------
Haeun Kim (1):
iolog: free io_piece log on thread cleanup
Jens Axboe (2):
Merge branch 'ipo' of https://github.com/minwooim/fio
Fio 3.42
FIO-VERSION-GEN | 2 +-
backend.c | 1 +
2 files changed, 2 insertions(+), 1 deletion(-)
---
Diff of recent changes:
diff --git a/FIO-VERSION-GEN b/FIO-VERSION-GEN
index f92f5a46..e5ada1de 100755
--- a/FIO-VERSION-GEN
+++ b/FIO-VERSION-GEN
@@ -1,7 +1,7 @@
#!/bin/sh
GVF=FIO-VERSION-FILE
-DEF_VER=fio-3.41
+DEF_VER=fio-3.42
LF='
'
diff --git a/backend.c b/backend.c
index 4ce3d07f..230d7fd0 100644
--- a/backend.c
+++ b/backend.c
@@ -2209,6 +2209,7 @@ err:
verify_async_exit(td);
close_and_free_files(td);
+ prune_io_piece_log(td);
cleanup_io_u(td);
close_ioengine(td);
cgroup_shutdown(td, cgroup_mnt);