Recent changes (master)
Jens Axboe <[email protected]> Thu, 17 Jul 2025 06:00:02 -0600 (MDT)
| Newsgroups | org.kernel.vger.fio |
|---|---|
| Message-ID | <[email protected]> |
The following changes since commit eb0312ccc1058334e0a115b6534056bcdba7c533:
Merge branch 'security-token' of https://github.com/sfc-gh-rnarubin/fio (2025-07-09 16:52:06 -0600)
are available in the Git repository at:
git://git.kernel.dk/fio.git master
for you to fetch changes up to 34fa726e0ae0236c36fb1409bddeab2bab7839d2:
Merge branch 'fsync-get-io-u-from-freelist' of https://github.com/jeongjonghwi/fio (2025-07-16 11:59:46 -0400)
----------------------------------------------------------------
Jonghwi Jeong (1):
io_u: get io_u from io_u_freelist when TD_FSYNCING
Vincent Fu (1):
Merge branch 'fsync-get-io-u-from-freelist' of https://github.com/jeongjonghwi/fio
io_u.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
Diff of recent changes:
diff --git a/io_u.c b/io_u.c
index 360bd774..ca97f388 100644
--- a/io_u.c
+++ b/io_u.c
@@ -1701,7 +1701,7 @@ struct io_u *__get_io_u(struct thread_data *td)
__td_io_u_lock(td);
again:
- if (!io_u_rempty(&td->io_u_requeues)) {
+ if (td->runstate != TD_FSYNCING && !io_u_rempty(&td->io_u_requeues)) {
io_u = io_u_rpop(&td->io_u_requeues);
io_u->resid = 0;
} else if (!queue_full(td)) {