Skip to content

Commit

Permalink
Merge branch 'patch-3' of https://github.com/yangjueji/fio
Browse files Browse the repository at this point in the history
* 'patch-3' of https://github.com/yangjueji/fio:
  fix: io_uring sqpoll issue_time empty when kernel not yet read sq
  • Loading branch information
axboe committed Jul 15, 2023
2 parents 14adf6e + 10bad6b commit 04361e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/io_uring.c
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ static int fio_ioring_commit(struct thread_data *td)
*/
if (o->sqpoll_thread) {
struct io_sq_ring *ring = &ld->sq_ring;
unsigned start = *ld->sq_ring.head;
unsigned start = *ld->sq_ring.tail - ld->queued;
unsigned flags;

flags = atomic_load_acquire(ring->flags);
Expand Down

0 comments on commit 04361e9

Please sign in to comment.