| 2969 | } |
| 2970 | |
| 2971 | int |
| 2972 | rte_eth_allmulticast_get(uint16_t port_id) |
| 2973 | { |
| 2974 | struct rte_eth_dev *dev; |
| 2975 | |
| 2976 | RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); |
| 2977 | dev = &rte_eth_devices[port_id]; |
| 2978 | |
| 2979 | rte_eth_trace_allmulticast_get(port_id, dev->data->all_multicast); |
| 2980 | |
| 2981 | return dev->data->all_multicast; |
| 2982 | } |
| 2983 | |
| 2984 | int |
| 2985 | rte_eth_link_get(uint16_t port_id, struct rte_eth_link *eth_link) |
no outgoing calls
no test coverage detected