OSDN Git Service

octeontx2-pf: Enable NETIF_F_RXALL support for VF driver
authorSunil Goutham <sgoutham@marvell.com>
Tue, 17 Aug 2021 04:44:46 +0000 (10:14 +0530)
committerDavid S. Miller <davem@davemloft.net>
Tue, 17 Aug 2021 09:06:32 +0000 (10:06 +0100)
Enabled NETIF_F_RXALL support for VF driver.
Also removed MTU range comments which are no longer valid.

Signed-off-by: Sunil Goutham <sgoutham@marvell.com>
Signed-off-by: Subbaraya Sundeep <sbhatta@marvell.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/marvell/octeontx2/nic/otx2_pf.c
drivers/net/ethernet/marvell/octeontx2/nic/otx2_vf.c

index 22b7af0..e0968ca 100644 (file)
@@ -2569,8 +2569,6 @@ static int otx2_probe(struct pci_dev *pdev, const struct pci_device_id *id)
                               NETIF_F_GSO_UDP_L4);
        netdev->features |= netdev->hw_features;
 
-       netdev->hw_features |= NETIF_F_LOOPBACK | NETIF_F_RXALL;
-
        err = otx2_mcam_flow_init(pf);
        if (err)
                goto err_ptp_destroy;
@@ -2594,12 +2592,13 @@ static int otx2_probe(struct pci_dev *pdev, const struct pci_device_id *id)
        if (pf->flags & OTX2_FLAG_TC_FLOWER_SUPPORT)
                netdev->hw_features |= NETIF_F_HW_TC;
 
+       netdev->hw_features |= NETIF_F_LOOPBACK | NETIF_F_RXALL;
+
        netdev->gso_max_segs = OTX2_MAX_GSO_SEGS;
        netdev->watchdog_timeo = OTX2_TX_TIMEOUT;
 
        netdev->netdev_ops = &otx2_netdev_ops;
 
-       /* MTU range: 64 - 9190 */
        netdev->min_mtu = OTX2_MIN_MTU;
        netdev->max_mtu = otx2_get_max_mtu(pf);
 
index a8bee5a..722c601 100644 (file)
@@ -627,12 +627,13 @@ static int otx2vf_probe(struct pci_dev *pdev, const struct pci_device_id *id)
                                NETIF_F_HW_VLAN_STAG_TX;
        netdev->features |= netdev->hw_features;
 
+       netdev->hw_features |= NETIF_F_RXALL;
+
        netdev->gso_max_segs = OTX2_MAX_GSO_SEGS;
        netdev->watchdog_timeo = OTX2_TX_TIMEOUT;
 
        netdev->netdev_ops = &otx2vf_netdev_ops;
 
-       /* MTU range: 68 - 9190 */
        netdev->min_mtu = OTX2_MIN_MTU;
        netdev->max_mtu = otx2_get_max_mtu(vf);