| 2617 | } |
| 2618 | |
| 2619 | static int |
| 2620 | sfc_flow_destroy(struct rte_eth_dev *dev, |
| 2621 | struct rte_flow *flow, |
| 2622 | struct rte_flow_error *error) |
| 2623 | { |
| 2624 | struct sfc_adapter *sa = sfc_adapter_by_eth_dev(dev); |
| 2625 | int rc; |
| 2626 | |
| 2627 | sfc_adapter_lock(sa); |
| 2628 | rc = sfc_flow_destroy_locked(sa, flow, error); |
| 2629 | sfc_adapter_unlock(sa); |
| 2630 | |
| 2631 | return rc; |
| 2632 | } |
| 2633 | |
| 2634 | int |
| 2635 | sfc_flow_destroy_locked(struct sfc_adapter *sa, struct rte_flow *flow, |
nothing calls this directly
no test coverage detected