| 626 | } |
| 627 | |
| 628 | void |
| 629 | sfc_ev_mgmt_qpoll(struct sfc_adapter *sa) |
| 630 | { |
| 631 | if (rte_spinlock_trylock(&sa->mgmt_evq_lock)) { |
| 632 | if (sa->mgmt_evq_running) |
| 633 | sfc_ev_qpoll(sa->mgmt_evq); |
| 634 | |
| 635 | rte_spinlock_unlock(&sa->mgmt_evq_lock); |
| 636 | } |
| 637 | } |
| 638 | |
| 639 | int |
| 640 | sfc_ev_qprime(struct sfc_evq *evq) |
no test coverage detected