| 937 | } |
| 938 | |
| 939 | void |
| 940 | sfc_ev_qfini(struct sfc_evq *evq) |
| 941 | { |
| 942 | struct sfc_adapter *sa = evq->sa; |
| 943 | |
| 944 | SFC_ASSERT(evq->init_state == SFC_EVQ_INITIALIZED); |
| 945 | |
| 946 | sfc_dma_free(sa, &evq->mem); |
| 947 | |
| 948 | rte_free(evq); |
| 949 | |
| 950 | SFC_ASSERT(sa->evq_count > 0); |
| 951 | sa->evq_count--; |
| 952 | } |
| 953 | |
| 954 | static int |
| 955 | sfc_kvarg_perf_profile_handler(__rte_unused const char *key, |
no test coverage detected