Orabug:
25477939
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: 7b7e70f979e3 ("qed*: Allow unicast filtering")
Signed-off-by: Yuval Mintz <Yuval.Mintz@cavium.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
(cherry picked from commit
0183eb1c7504b290221f79bc3c345736f8ad657b)
Signed-off-by: Brian Maly <brian.maly@oracle.com>
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 |