Skip to content

Commit

Permalink
implement spacejam#49
Browse files Browse the repository at this point in the history
  • Loading branch information
CramBL committed Jul 19, 2024
1 parent eb52d05 commit a4c4501
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/io_uring/uring.rs
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,9 @@ impl Uring {
self.sq.lock().unwrap()
};
let _hold_sq_mu = Measure::new(&M.sq_mu_hold);
sq.submit_all(self.flags, self.ring_fd);
let submitted =
sq.submit_all(self.flags, self.ring_fd);
self.submitted.fetch_add(submitted, Release);
}

fn with_sqe<'a, F, C>(
Expand Down

0 comments on commit a4c4501

Please sign in to comment.