diff options
author | Jakub Kicinski <kuba@kernel.org> | 2025-07-17 16:43:40 -0700 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2025-07-21 18:20:19 -0700 |
commit | 55ef461ce18fbe678f0b4834fc1eaa38c24f83fe (patch) | |
tree | 0f5d9c3a64e452db9ac1211f982948b816971550 /net/ethtool/common.h | |
parent | 5c090d9eae8807420bcb01a6280b02774e5320c6 (diff) |
ethtool: move ethtool_rxfh_ctx_alloc() to common code
Move ethtool_rxfh_ctx_alloc() to common code, Netlink will need it.
Reviewed-by: Gal Pressman <gal@nvidia.com>
Link: https://patch.msgid.link/20250717234343.2328602-6-kuba@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/ethtool/common.h')
-rw-r--r-- | net/ethtool/common.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/ethtool/common.h b/net/ethtool/common.h index c8385a268ced..c4d084dde5bf 100644 --- a/net/ethtool/common.h +++ b/net/ethtool/common.h @@ -43,6 +43,9 @@ bool convert_legacy_settings_to_link_ksettings( int ethtool_check_max_channel(struct net_device *dev, struct ethtool_channels channels, struct genl_info *info); +struct ethtool_rxfh_context * +ethtool_rxfh_ctx_alloc(const struct ethtool_ops *ops, + u32 indir_size, u32 key_size); int ethtool_check_rss_ctx_busy(struct net_device *dev, u32 rss_context); int ethtool_rxfh_config_is_sym(u64 rxfh); |