mirror of https://gitee.com/openkylin/linux.git
vmxnet3: fix publicity of NETIF_F_HIGHDMA
NETIF_F_HIGHDMA is being disabled even when dma64 is true. This patch fixes it. CC: Michal Miroslaw <mirq-linux@rere.qmqm.pl> Signed-off-by: Shreyas N Bhatewara <sbhatewara@vmware.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
e101e7ddad
commit
ebbf9295b1
|
@ -2647,7 +2647,7 @@ vmxnet3_declare_features(struct vmxnet3_adapter *adapter, bool dma64)
|
|||
NETIF_F_HW_VLAN_RX | NETIF_F_TSO | NETIF_F_TSO6 |
|
||||
NETIF_F_LRO;
|
||||
if (dma64)
|
||||
netdev->features |= NETIF_F_HIGHDMA;
|
||||
netdev->hw_features |= NETIF_F_HIGHDMA;
|
||||
netdev->vlan_features = netdev->hw_features &
|
||||
~(NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX);
|
||||
netdev->features = netdev->hw_features | NETIF_F_HW_VLAN_FILTER;
|
||||
|
|
Loading…
Reference in New Issue