Skip to content

Commit 0183eb1

Browse files
Mintz, Yuvaldavem330
authored andcommitted
qede: Don't override priv_flags
Driver is now setting the ndev's priv_flags instead of adding to it, causing pktgen failure to utilize various features due to the loss of the IFF_TX_SKB_SHARING indication. Fixes: 7b7e70f ("qed*: Allow unicast filtering") Signed-off-by: Yuval Mintz <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent c587094 commit 0183eb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/net/ethernet/qlogic/qede/qede_main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2366,7 +2366,7 @@ static void qede_init_ndev(struct qede_dev *edev)
23662366

23672367
qede_set_ethtool_ops(ndev);
23682368

2369-
ndev->priv_flags = IFF_UNICAST_FLT;
2369+
ndev->priv_flags |= IFF_UNICAST_FLT;
23702370

23712371
/* user-changeble features */
23722372
hw_features = NETIF_F_GRO | NETIF_F_SG |

0 commit comments

Comments
 (0)