ixgbe: fix writes to PFQDE
ixgbe_write_qde() was ignoring the qde parameter which resulted in PFQDE.HIDE_VLAN not being set for X550. Signed-off-by: Emil Tantilov <emil.s.tantilov@intel.com> Tested-by: Andrew Bowers <andrewx.bowers@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
adc2c83e2b
commit
d28b194955
|
@ -818,7 +818,7 @@ static inline void ixgbe_write_qde(struct ixgbe_adapter *adapter, u32 vf,
|
|||
IXGBE_WRITE_FLUSH(hw);
|
||||
|
||||
/* indicate to hardware that we want to set drop enable */
|
||||
reg = IXGBE_QDE_WRITE | IXGBE_QDE_ENABLE;
|
||||
reg = IXGBE_QDE_WRITE | qde;
|
||||
reg |= i << IXGBE_QDE_IDX_SHIFT;
|
||||
IXGBE_WRITE_REG(hw, IXGBE_QDE, reg);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue