| 873 | } |
| 874 | |
| 875 | void |
| 876 | sfc_ev_stop(struct sfc_adapter *sa) |
| 877 | { |
| 878 | sfc_log_init(sa, "entry"); |
| 879 | |
| 880 | sfc_ev_mgmt_periodic_qpoll_stop(sa); |
| 881 | |
| 882 | rte_spinlock_lock(&sa->mgmt_evq_lock); |
| 883 | sa->mgmt_evq_running = false; |
| 884 | rte_spinlock_unlock(&sa->mgmt_evq_lock); |
| 885 | |
| 886 | sfc_ev_qstop(sa->mgmt_evq); |
| 887 | |
| 888 | efx_ev_fini(sa->nic); |
| 889 | } |
| 890 | |
| 891 | int |
| 892 | sfc_ev_qinit(struct sfc_adapter *sa, |
no test coverage detected