| 789 | } |
| 790 | |
| 791 | int |
| 792 | rte_eth_switch_domain_free(uint16_t domain_id) |
| 793 | { |
| 794 | if (domain_id == RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID || |
| 795 | domain_id >= RTE_MAX_ETHPORTS) |
| 796 | return -EINVAL; |
| 797 | |
| 798 | if (eth_dev_switch_domains[domain_id].state != |
| 799 | RTE_ETH_SWITCH_DOMAIN_ALLOCATED) |
| 800 | return -EINVAL; |
| 801 | |
| 802 | eth_dev_switch_domains[domain_id].state = RTE_ETH_SWITCH_DOMAIN_UNUSED; |
| 803 | |
| 804 | return 0; |
| 805 | } |
no outgoing calls
no test coverage detected