| 356 | } |
| 357 | |
| 358 | static void |
| 359 | txgbe_disable_intr(struct txgbe_hw *hw) |
| 360 | { |
| 361 | PMD_INIT_FUNC_TRACE(); |
| 362 | |
| 363 | wr32(hw, TXGBE_IENMISC, ~BIT_MASK32); |
| 364 | wr32(hw, TXGBE_IMS(0), TXGBE_IMC_MASK); |
| 365 | wr32(hw, TXGBE_IMS(1), TXGBE_IMC_MASK); |
| 366 | txgbe_flush(hw); |
| 367 | } |
| 368 | |
| 369 | static int |
| 370 | txgbe_dev_queue_stats_mapping_set(struct rte_eth_dev *eth_dev, |
no test coverage detected