| 536 | } |
| 537 | |
| 538 | int |
| 539 | ifmp_ring_is_stalled(struct ifmp_ring *r) |
| 540 | { |
| 541 | union ring_state s; |
| 542 | |
| 543 | s.state = r->state; |
| 544 | if (s.pidx_head == s.pidx_tail && s.flags == STALLED) |
| 545 | return (1); |
| 546 | |
| 547 | return (0); |
| 548 | } |
no outgoing calls
no test coverage detected