]> git.baikalelectronics.ru Git - kernel.git/commitdiff
nfp: support VF rate limit with NFDK
authorBin Chen <bin.chen@corigine.com>
Thu, 30 Jun 2022 11:21:55 +0000 (13:21 +0200)
committerDavid S. Miller <davem@davemloft.net>
Fri, 1 Jul 2022 12:40:00 +0000 (13:40 +0100)
Support VF rate limiting with NFDK by adding ndo_set_vf_rate to the NFDK
ops structure.

NFDK is used to communicate via PCIE to NFP-3800 based NICs
while NFD3 is used for other NICs supported by the NFP driver.
The VF rate limit feature is already supported by the driver for NFD3.

Signed-off-by: Bin Chen <bin.chen@corigine.com>
Reviewed-by: Baowen Zheng <baowen.zheng@corigine.com>
Reviewed-by: Louis Peens <louis.peens@corigine.com>
Signed-off-by: Simon Horman <simon.horman@corigine.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/netronome/nfp/nfp_net_common.c

index 0991fc122998e073bf0e8dcf925772e1f5350c6d..bcdd5ab0da5ae989bf3fb4bb8f2c250dd748ce7d 100644 (file)
@@ -1998,6 +1998,7 @@ const struct net_device_ops nfp_nfdk_netdev_ops = {
        .ndo_vlan_rx_kill_vid   = nfp_net_vlan_rx_kill_vid,
        .ndo_set_vf_mac         = nfp_app_set_vf_mac,
        .ndo_set_vf_vlan        = nfp_app_set_vf_vlan,
+       .ndo_set_vf_rate        = nfp_app_set_vf_rate,
        .ndo_set_vf_spoofchk    = nfp_app_set_vf_spoofchk,
        .ndo_set_vf_trust       = nfp_app_set_vf_trust,
        .ndo_get_vf_config      = nfp_app_get_vf_config,