The following changes since commit 9a4424c81b146b9a08b105af9e53d8435e888cd1:
Fix crash in client with NULL hostname (2014-08-22 17:16:44 -0500)
are available in the git repository at:
git://git.kernel.dk/fio.git master
for you to fetch changes up to 5fb4b36674b194ae6c6756314dc0c665fcaea06d:
Fix hangs due to iodepth_low (2014-09-04 13:51:05 -0600)
----------------------------------------------------------------
Robert Elliott (1):
Fix hangs due to iodepth_low
io_u.c | 2 ++
1 file changed, 2 insertions(+)
---
Diff of recent changes:
diff --git a/io_u.c b/io_u.c
index ba192a3..be2f242 100644
--- a/io_u.c
+++ b/io_u.c
@@ -1792,6 +1792,8 @@ int io_u_queued_complete(struct thread_data *td, int
min_evts,
if (!min_evts)
tvp = &ts;
+ else if (min_evts > td->cur_depth)
+ min_evts = td->cur_depth;
ret = td_io_getevents(td, min_evts, td->o.iodepth_batch_complete, tvp);
if (ret < 0) {
--
To unsubscribe from this list: send the line "unsubscribe fio" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html