| 511 | } |
| 512 | |
| 513 | void |
| 514 | ifmp_ring_reset_stats(struct ifmp_ring *r) |
| 515 | { |
| 516 | |
| 517 | counter_u64_zero(r->enqueues); |
| 518 | counter_u64_zero(r->drops); |
| 519 | counter_u64_zero(r->starts); |
| 520 | counter_u64_zero(r->stalls); |
| 521 | counter_u64_zero(r->restarts); |
| 522 | counter_u64_zero(r->abdications); |
| 523 | } |
| 524 | |
| 525 | int |
| 526 | ifmp_ring_is_idle(struct ifmp_ring *r) |
no test coverage detected