nfp: add basic SR-IOV ndo functions to representors
authorSimon Horman <simon.horman@netronome.com>
Fri, 25 Aug 2017 04:31:50 +0000 (21:31 -0700)
committerDavid S. Miller <davem@davemloft.net>
Sat, 26 Aug 2017 02:24:58 +0000 (19:24 -0700)
Add basic ndo_set/get_vf to support SR-IOV on all types
of port representors.

Signed-off-by: Simon Horman <simon.horman@netronome.com>
Signed-off-by: Dirk van der Merwe <dirk.vandermerwe@netronome.com>
Reviewed-by: Jakub Kicinski <jakub.kicinski@netronome.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/netronome/nfp/nfp_net_repr.c

index 0f9878d..d540a9d 100644 (file)
@@ -43,6 +43,7 @@
 #include "nfp_main.h"
 #include "nfp_net_ctrl.h"
 #include "nfp_net_repr.h"
+#include "nfp_net_sriov.h"
 #include "nfp_port.h"
 
 static void
@@ -247,6 +248,11 @@ const struct net_device_ops nfp_repr_netdev_ops = {
        .ndo_get_offload_stats  = nfp_repr_get_offload_stats,
        .ndo_get_phys_port_name = nfp_port_get_phys_port_name,
        .ndo_setup_tc           = nfp_port_setup_tc,
+       .ndo_set_vf_mac         = nfp_app_set_vf_mac,
+       .ndo_set_vf_vlan        = nfp_app_set_vf_vlan,
+       .ndo_set_vf_spoofchk    = nfp_app_set_vf_spoofchk,
+       .ndo_get_vf_config      = nfp_app_get_vf_config,
+       .ndo_set_vf_link_state  = nfp_app_set_vf_link_state,
 };
 
 static void nfp_repr_clean(struct nfp_repr *repr)