| 5811 | } |
| 5812 | |
| 5813 | void |
| 5814 | sfc_mae_switchdev_fini(struct sfc_adapter *sa) |
| 5815 | { |
| 5816 | struct sfc_mae *mae = &sa->mae; |
| 5817 | |
| 5818 | if (!sa->switchdev) |
| 5819 | return; |
| 5820 | |
| 5821 | sfc_mae_repr_flow_destroy(sa, mae->switchdev_rule_pf_to_ext); |
| 5822 | sfc_mae_repr_flow_destroy(sa, mae->switchdev_rule_ext_to_pf); |
| 5823 | } |
| 5824 | |
| 5825 | int |
| 5826 | sfc_mae_indir_action_create(struct sfc_adapter *sa, |
no test coverage detected