(&self, tier: usize, depth: u64)
| 81 | /// Call this each `tick()` after draining all priority queues. |
| 82 | #[inline] |
| 83 | pub fn record_queue_depth(&self, tier: usize, depth: u64) { |
| 84 | self.queue_depth[tier].store(depth, Ordering::Relaxed); |
| 85 | } |
| 86 | |
| 87 | /// Record one completed IO submission for `tier` with wait time `wait_ns`. |
| 88 | /// |