| 593 | } |
| 594 | |
| 595 | static void |
| 596 | ngbe_vlan_strip_queue_set(struct rte_eth_dev *dev, uint16_t queue, int on) |
| 597 | { |
| 598 | struct ngbe_hw *hw = ngbe_dev_hw(dev); |
| 599 | |
| 600 | if (!hw->adapter_stopped) { |
| 601 | PMD_DRV_LOG(ERR, "Please stop port first"); |
| 602 | return; |
| 603 | } |
| 604 | |
| 605 | ngbe_vlan_strip_q_set(dev, queue, on); |
| 606 | } |
| 607 | |
| 608 | static int |
| 609 | ngbe_vlan_tpid_set(struct rte_eth_dev *dev, |
nothing calls this directly
no test coverage detected