Contributors: 20
Author Tokens Token Proportion Commits Commit Proportion
Michal Kubeček 147 50.52% 14 37.84%
Linus Torvalds (pre-git) 35 12.03% 3 8.11%
David Decotigny 13 4.47% 1 2.70%
Michał Mirosław 12 4.12% 2 5.41%
Mina Almasry 11 3.78% 1 2.70%
Andrew Lunn 8 2.75% 1 2.70%
Hadar Hen Zion 7 2.41% 1 2.70%
Florian Fainelli 7 2.41% 1 2.70%
Raju Lakkaraju 7 2.41% 1 2.70%
Ed Swierk 7 2.41% 1 2.70%
Eyal Perry 7 2.41% 1 2.70%
Daniel Zahka 6 2.06% 1 2.70%
Danielle Ratson 5 1.72% 2 5.41%
Gal Pressman 4 1.37% 1 2.70%
Oleksij Rempel 4 1.37% 1 2.70%
Vladimir Oltean 4 1.37% 1 2.70%
Jeff Garzik 3 1.03% 1 2.70%
Stuart Hodgson 2 0.69% 1 2.70%
Jakub Kiciński 1 0.34% 1 2.70%
Kory Maincent 1 0.34% 1 2.70%
Total 291 37

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef _ETHTOOL_COMMON_H
#define _ETHTOOL_COMMON_H

#include <linux/netdevice.h>
#include <linux/ethtool.h>

#define ETHTOOL_DEV_FEATURE_WORDS	DIV_ROUND_UP(NETDEV_FEATURE_COUNT, 32)

/* compose link mode index from speed, type and duplex */
#define ETHTOOL_LINK_MODE(speed, type, duplex) \
	ETHTOOL_LINK_MODE_ ## speed ## base ## type ## _ ## duplex ## _BIT

#define __SOF_TIMESTAMPING_CNT (const_ilog2(SOF_TIMESTAMPING_LAST) + 1)

struct link_mode_info {
	int				speed;
	u8				lanes;
	u8				duplex;
};

struct genl_info;

extern const char
netdev_features_strings[NETDEV_FEATURE_COUNT][ETH_GSTRING_LEN];
extern const char
rss_hash_func_strings[ETH_RSS_HASH_FUNCS_COUNT][ETH_GSTRING_LEN];
extern const char
tunable_strings[__ETHTOOL_TUNABLE_COUNT][ETH_GSTRING_LEN];
extern const char
phy_tunable_strings[__ETHTOOL_PHY_TUNABLE_COUNT][ETH_GSTRING_LEN];
extern const char link_mode_names[][ETH_GSTRING_LEN];
extern const struct link_mode_info link_mode_params[];
extern const char netif_msg_class_names[][ETH_GSTRING_LEN];
extern const char wol_mode_names[][ETH_GSTRING_LEN];
extern const char sof_timestamping_names[][ETH_GSTRING_LEN];
extern const char ts_tx_type_names[][ETH_GSTRING_LEN];
extern const char ts_rx_filter_names[][ETH_GSTRING_LEN];
extern const char udp_tunnel_type_names[][ETH_GSTRING_LEN];

int __ethtool_get_link(struct net_device *dev);

bool convert_legacy_settings_to_link_ksettings(
	struct ethtool_link_ksettings *link_ksettings,
	const struct ethtool_cmd *legacy_settings);
int ethtool_check_max_channel(struct net_device *dev,
			      struct ethtool_channels channels,
			      struct genl_info *info);
int ethtool_check_rss_ctx_busy(struct net_device *dev, u32 rss_context);
int __ethtool_get_ts_info(struct net_device *dev, struct kernel_ethtool_ts_info *info);

extern const struct ethtool_phy_ops *ethtool_phy_ops;
extern const struct ethtool_pse_ops *ethtool_pse_ops;

int ethtool_get_module_info_call(struct net_device *dev,
				 struct ethtool_modinfo *modinfo);
int ethtool_get_module_eeprom_call(struct net_device *dev,
				   struct ethtool_eeprom *ee, u8 *data);

bool __ethtool_dev_mm_supported(struct net_device *dev);

#endif /* _ETHTOOL_COMMON_H */