Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0183eb1c authored by Mintz, Yuval's avatar Mintz, Yuval Committed by David S. Miller
Browse files

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: 7b7e70f9 ("qed*: Allow unicast filtering")
Signed-off-by: default avatarYuval Mintz <Yuval.Mintz@cavium.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c5870942
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2366,7 +2366,7 @@ static void qede_init_ndev(struct qede_dev *edev)

	qede_set_ethtool_ops(ndev);

	ndev->priv_flags = IFF_UNICAST_FLT;
	ndev->priv_flags |= IFF_UNICAST_FLT;

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