Message ID | 20220630112155.1735394-1-simon.horman@corigine.com (mailing list archive) |
---|---|
State | Accepted |
Commit | c7b1267b1c64925ef0c036ffb303057884481c53 |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net-next] nfp: support VF rate limit with NFDK | expand |
Hello: This patch was applied to netdev/net-next.git (master) by David S. Miller <davem@davemloft.net>: On Thu, 30 Jun 2022 13:21:55 +0200 you wrote: > From: Bin Chen <bin.chen@corigine.com> > > 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. > > [...] Here is the summary with links: - [net-next] nfp: support VF rate limit with NFDK https://git.kernel.org/netdev/net-next/c/c7b1267b1c64 You are awesome, thank you!
diff --git a/drivers/net/ethernet/netronome/nfp/nfp_net_common.c b/drivers/net/ethernet/netronome/nfp/nfp_net_common.c index 0991fc122998..bcdd5ab0da5a 100644 --- a/drivers/net/ethernet/netronome/nfp/nfp_net_common.c +++ b/drivers/net/ethernet/netronome/nfp/nfp_net_common.c @@ -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,