netfilter: nf_tables: disallow updates of anonymous sets
[linux-2.6-block.git] / net / ethtool / common.h
CommitLineData
d44e1310
MK
1/* SPDX-License-Identifier: GPL-2.0-only */
2
3#ifndef _ETHTOOL_COMMON_H
4#define _ETHTOOL_COMMON_H
5
3d2b847f 6#include <linux/netdevice.h>
d44e1310
MK
7#include <linux/ethtool.h>
8
0524399d
MK
9#define ETHTOOL_DEV_FEATURE_WORDS DIV_ROUND_UP(NETDEV_FEATURE_COUNT, 32)
10
428c122f
MK
11/* compose link mode index from speed, type and duplex */
12#define ETHTOOL_LINK_MODE(speed, type, duplex) \
13 ETHTOOL_LINK_MODE_ ## speed ## base ## type ## _ ## duplex ## _BIT
14
f76510b4
MK
15#define __SOF_TIMESTAMPING_CNT (const_ilog2(SOF_TIMESTAMPING_LAST) + 1)
16
c8907043
DR
17struct link_mode_info {
18 int speed;
19 u8 lanes;
20 u8 duplex;
21};
22
d44e1310
MK
23extern const char
24netdev_features_strings[NETDEV_FEATURE_COUNT][ETH_GSTRING_LEN];
25extern const char
26rss_hash_func_strings[ETH_RSS_HASH_FUNCS_COUNT][ETH_GSTRING_LEN];
27extern const char
28tunable_strings[__ETHTOOL_TUNABLE_COUNT][ETH_GSTRING_LEN];
29extern const char
30phy_tunable_strings[__ETHTOOL_PHY_TUNABLE_COUNT][ETH_GSTRING_LEN];
428c122f 31extern const char link_mode_names[][ETH_GSTRING_LEN];
c8907043 32extern const struct link_mode_info link_mode_params[];
6a94b8cc 33extern const char netif_msg_class_names[][ETH_GSTRING_LEN];
51ea22b0 34extern const char wol_mode_names[][ETH_GSTRING_LEN];
f76510b4
MK
35extern const char sof_timestamping_names[][ETH_GSTRING_LEN];
36extern const char ts_tx_type_names[][ETH_GSTRING_LEN];
37extern const char ts_rx_filter_names[][ETH_GSTRING_LEN];
c7d759eb 38extern const char udp_tunnel_type_names[][ETH_GSTRING_LEN];
d44e1310 39
3d2b847f
MK
40int __ethtool_get_link(struct net_device *dev);
41
459e0b81
MK
42bool convert_legacy_settings_to_link_ksettings(
43 struct ethtool_link_ksettings *link_ksettings,
44 const struct ethtool_cmd *legacy_settings);
e19c591e 45int ethtool_get_max_rxfh_channel(struct net_device *dev, u32 *max);
47f3ecf4 46int ethtool_get_max_rxnfc_channel(struct net_device *dev, u64 *max);
5b071c59 47int __ethtool_get_ts_info(struct net_device *dev, struct ethtool_ts_info *info);
459e0b81 48
4895d780 49extern const struct ethtool_phy_ops *ethtool_phy_ops;
18ff0bcd 50extern const struct ethtool_pse_ops *ethtool_pse_ops;
4895d780 51
95dfc7ef
AL
52int ethtool_get_module_info_call(struct net_device *dev,
53 struct ethtool_modinfo *modinfo);
54int ethtool_get_module_eeprom_call(struct net_device *dev,
55 struct ethtool_eeprom *ee, u8 *data);
56
04692c90
VO
57bool __ethtool_dev_mm_supported(struct net_device *dev);
58
d44e1310 59#endif /* _ETHTOOL_COMMON_H */