| 3512 | } |
| 3513 | |
| 3514 | static void |
| 3515 | ixgbe_rss_disable(struct rte_eth_dev *dev) |
| 3516 | { |
| 3517 | struct ixgbe_hw *hw; |
| 3518 | |
| 3519 | hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private); |
| 3520 | /* Remove the rss configuration and maintain the other configurations */ |
| 3521 | ixgbe_mrqc_rss_remove(hw); |
| 3522 | } |
| 3523 | |
| 3524 | /* |
| 3525 | * This function checks whether the rss is enabled or not by comparing the mrqe |
no test coverage detected