net: ngbe: Implement vlan add and remove ops
authorMengyuan Lou <mengyuanlou@net-swift.com>
Tue, 30 May 2023 02:26:30 +0000 (10:26 +0800)
committerJakub Kicinski <kuba@kernel.org>
Thu, 1 Jun 2023 06:02:26 +0000 (23:02 -0700)
ngbe add ndo_vlan_rx_add_vid and ndo_vlan_rx_kill_vid.

Signed-off-by: Mengyuan Lou <mengyuanlou@net-swift.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/wangxun/ngbe/ngbe_main.c
drivers/net/ethernet/wangxun/ngbe/ngbe_type.h

index f234c9c4b9426da86dea5c2c73505398969f0ff6..c99a5d3de72e60358bc32b9a2bdab707caaa6bfb 100644 (file)
@@ -115,6 +115,7 @@ static int ngbe_sw_init(struct wx *wx)
        wx->mac.max_rx_queues = NGBE_MAX_RX_QUEUES;
        wx->mac.max_tx_queues = NGBE_MAX_TX_QUEUES;
        wx->mac.mcft_size = NGBE_MC_TBL_SIZE;
+       wx->mac.vft_size = NGBE_SP_VFT_TBL_SIZE;
        wx->mac.rx_pb_size = NGBE_RX_PB_SIZE;
        wx->mac.tx_pb_size = NGBE_TDB_PB_SZ;
 
@@ -477,6 +478,8 @@ static const struct net_device_ops ngbe_netdev_ops = {
        .ndo_validate_addr      = eth_validate_addr,
        .ndo_set_mac_address    = wx_set_mac,
        .ndo_get_stats64        = wx_get_stats64,
+       .ndo_vlan_rx_add_vid    = wx_vlan_rx_add_vid,
+       .ndo_vlan_rx_kill_vid   = wx_vlan_rx_kill_vid,
 };
 
 /**
index 373d5af628cd5245a0e09770b78213738a983d88..b70eca397b672270820f8a2904c0c264f86a86b0 100644 (file)
@@ -136,6 +136,7 @@ enum NGBE_MSCA_CMD_value {
 #define NGBE_RAR_ENTRIES                       32
 #define NGBE_RX_PB_SIZE                                42
 #define NGBE_MC_TBL_SIZE                       128
+#define NGBE_SP_VFT_TBL_SIZE                   128
 #define NGBE_TDB_PB_SZ                         (20 * 1024) /* 160KB Packet Buffer */
 
 /* TX/RX descriptor defines */