]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
eth: remove .cap_rss_ctx_supported from updated drivers
authorJakub Kicinski <kuba@kernel.org>
Sat, 10 Aug 2024 05:37:21 +0000 (22:37 -0700)
committerDavid S. Miller <davem@davemloft.net>
Mon, 12 Aug 2024 13:16:24 +0000 (14:16 +0100)
Remove .cap_rss_ctx_supported from drivers which moved to the new API.
This makes it easy to grep for drivers which still need to be converted.

Reviewed-by: Gal Pressman <gal@nvidia.com>
Reviewed-by: Edward Cree <ecree.xilinx@gmail.com>
Reviewed-by: Joe Damato <jdamato@fastly.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/broadcom/bnxt/bnxt_ethtool.c
drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c
drivers/net/ethernet/sfc/ef100_ethtool.c
drivers/net/ethernet/sfc/ethtool.c

index 9dadc89378f02ee4ee628bb289366322eaa9d5f8..44076e4ebf1a7a3cbac580b03849ade2b8935995 100644 (file)
@@ -5289,7 +5289,6 @@ void bnxt_ethtool_free(struct bnxt *bp)
 
 const struct ethtool_ops bnxt_ethtool_ops = {
        .cap_link_lanes_supported       = 1,
-       .cap_rss_ctx_supported          = 1,
        .rxfh_max_num_contexts          = BNXT_MAX_ETH_RSS_CTX + 1,
        .rxfh_indir_space               = BNXT_MAX_RSS_TABLE_ENTRIES_P5,
        .rxfh_priv_size                 = sizeof(struct bnxt_rss_ctx),
index 4a7098f5681c15da1457d6693da3e8e961f901af..2fe8bae4eb3c070bbbcda68a94fac906dc8454b5 100644 (file)
@@ -5791,7 +5791,6 @@ static const struct net_device_ops mvpp2_netdev_ops = {
 };
 
 static const struct ethtool_ops mvpp2_eth_tool_ops = {
-       .cap_rss_ctx_supported  = true,
        .rxfh_max_num_contexts  = MVPP22_N_RSS_TABLES,
        .supported_coalesce_params = ETHTOOL_COALESCE_USECS |
                                     ETHTOOL_COALESCE_MAX_FRAMES,
index 896ffca4aee2b30e7d3ec739a35ba85a86f507b3..746b5314acb54a33c6a7a969b153a8277be138ff 100644 (file)
@@ -37,7 +37,6 @@ ef100_ethtool_get_ringparam(struct net_device *net_dev,
 /*     Ethtool options available
  */
 const struct ethtool_ops ef100_ethtool_ops = {
-       .cap_rss_ctx_supported  = true,
        .get_drvinfo            = efx_ethtool_get_drvinfo,
        .get_msglevel           = efx_ethtool_get_msglevel,
        .set_msglevel           = efx_ethtool_set_msglevel,
index 7c887160e2ef8c168e266e0a3000cf140182074d..15245720c9496a5b548d5be4362ad032a7a3b8fe 100644 (file)
@@ -240,7 +240,6 @@ static int efx_ethtool_get_ts_info(struct net_device *net_dev,
 }
 
 const struct ethtool_ops efx_ethtool_ops = {
-       .cap_rss_ctx_supported  = true,
        .supported_coalesce_params = ETHTOOL_COALESCE_USECS |
                                     ETHTOOL_COALESCE_USECS_IRQ |
                                     ETHTOOL_COALESCE_USE_ADAPTIVE_RX,