* cpfl_ctlq_remove - deallocate and remove specified control queue */
| 759 | * cpfl_ctlq_remove - deallocate and remove specified control queue |
| 760 | */ |
| 761 | static void |
| 762 | cpfl_ctlq_remove(struct idpf_hw *hw, struct idpf_ctlq_info *cq) |
| 763 | { |
| 764 | LIST_REMOVE(cq, cq_list); |
| 765 | cpfl_ctlq_shutdown(hw, cq); |
| 766 | idpf_free(hw, cq); |
| 767 | } |
| 768 | |
| 769 | void |
| 770 | cpfl_vport_ctlq_remove(struct idpf_hw *hw, struct idpf_ctlq_info *cq) |
no test coverage detected