1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2 #ifndef _UAPI_LINUX_IF_LINK_H
3 #define _UAPI_LINUX_IF_LINK_H
5 #include <linux/types.h>
6 #include <linux/netlink.h>
8 /* This struct should be in sync with struct rtnl_link_stats64 */
9 struct rtnl_link_stats
{
10 __u32 rx_packets
; /* total packets received */
11 __u32 tx_packets
; /* total packets transmitted */
12 __u32 rx_bytes
; /* total bytes received */
13 __u32 tx_bytes
; /* total bytes transmitted */
14 __u32 rx_errors
; /* bad packets received */
15 __u32 tx_errors
; /* packet transmit problems */
16 __u32 rx_dropped
; /* no space in linux buffers */
17 __u32 tx_dropped
; /* no space available in linux */
18 __u32 multicast
; /* multicast packets received */
21 /* detailed rx_errors: */
22 __u32 rx_length_errors
;
23 __u32 rx_over_errors
; /* receiver ring buff overflow */
24 __u32 rx_crc_errors
; /* recved pkt with crc error */
25 __u32 rx_frame_errors
; /* recv'd frame alignment error */
26 __u32 rx_fifo_errors
; /* recv'r fifo overrun */
27 __u32 rx_missed_errors
; /* receiver missed packet */
29 /* detailed tx_errors */
30 __u32 tx_aborted_errors
;
31 __u32 tx_carrier_errors
;
33 __u32 tx_heartbeat_errors
;
34 __u32 tx_window_errors
;
40 __u32 rx_nohandler
; /* dropped, no handler found */
43 /* The main device statistics structure */
44 struct rtnl_link_stats64
{
45 __u64 rx_packets
; /* total packets received */
46 __u64 tx_packets
; /* total packets transmitted */
47 __u64 rx_bytes
; /* total bytes received */
48 __u64 tx_bytes
; /* total bytes transmitted */
49 __u64 rx_errors
; /* bad packets received */
50 __u64 tx_errors
; /* packet transmit problems */
51 __u64 rx_dropped
; /* no space in linux buffers */
52 __u64 tx_dropped
; /* no space available in linux */
53 __u64 multicast
; /* multicast packets received */
56 /* detailed rx_errors: */
57 __u64 rx_length_errors
;
58 __u64 rx_over_errors
; /* receiver ring buff overflow */
59 __u64 rx_crc_errors
; /* recved pkt with crc error */
60 __u64 rx_frame_errors
; /* recv'd frame alignment error */
61 __u64 rx_fifo_errors
; /* recv'r fifo overrun */
62 __u64 rx_missed_errors
; /* receiver missed packet */
64 /* detailed tx_errors */
65 __u64 tx_aborted_errors
;
66 __u64 tx_carrier_errors
;
68 __u64 tx_heartbeat_errors
;
69 __u64 tx_window_errors
;
75 __u64 rx_nohandler
; /* dropped, no handler found */
78 /* The struct should be in sync with struct ifmap */
79 struct rtnl_link_ifmap
{
90 * Contains nested attributes for address family specific attributes.
91 * Each address family may create a attribute with the address family
92 * number as type and create its own attribute structure in it.
97 * [IFLA_INET_CONF] = ...,
100 * [IFLA_INET6_FLAGS] = ...,
101 * [IFLA_INET6_CONF] = ...,
116 #define IFLA_COST IFLA_COST
118 #define IFLA_PRIORITY IFLA_PRIORITY
120 #define IFLA_MASTER IFLA_MASTER
121 IFLA_WIRELESS
, /* Wireless Extension event - see wireless.h */
122 #define IFLA_WIRELESS IFLA_WIRELESS
123 IFLA_PROTINFO
, /* Protocol specific information for a link */
124 #define IFLA_PROTINFO IFLA_PROTINFO
126 #define IFLA_TXQLEN IFLA_TXQLEN
128 #define IFLA_MAP IFLA_MAP
130 #define IFLA_WEIGHT IFLA_WEIGHT
134 #define IFLA_LINKINFO IFLA_LINKINFO
137 IFLA_NUM_VF
, /* Number of VFs if device is SR-IOV PF */
143 IFLA_GROUP
, /* Group the device belongs to */
145 IFLA_EXT_MASK
, /* Extended info mask, VFs, etc */
146 IFLA_PROMISCUITY
, /* Promiscuity count: > 0 means acts PROMISC */
147 #define IFLA_PROMISCUITY IFLA_PROMISCUITY
152 IFLA_CARRIER_CHANGES
,
164 IFLA_CARRIER_UP_COUNT
,
165 IFLA_CARRIER_DOWN_COUNT
,
170 #define IFLA_MAX (__IFLA_MAX - 1)
172 /* backwards compatibility for userspace */
174 #define IFLA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifinfomsg))))
175 #define IFLA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ifinfomsg))
184 #define IFLA_INET_MAX (__IFLA_INET_MAX - 1)
191 IFF_LOOPBACK, IFF_BROADCAST and IFF_POINTOPOINT are
192 more not changeable by user. They describe link media
193 characteristics and set by device driver.
196 - Combination IFF_BROADCAST|IFF_POINTOPOINT is invalid
197 - If neither of these three flags are set;
198 the interface is NBMA.
200 - IFF_MULTICAST does not mean anything special:
201 multicasts can be used on all not-NBMA links.
202 IFF_MULTICAST means that this media uses special encapsulation
203 for multicast frames. Apparently, all IFF_POINTOPOINT and
204 IFF_BROADCAST devices are able to use multicasts too.
208 For usual devices it is equal ifi_index.
209 If it is a "virtual interface" (f.e. tunnel), ifi_link
210 can point to real physical interface (f.e. for bandwidth calculations),
211 or maybe 0, what means, that real media is unknown (usual
212 for IPIP tunnels, when route to endpoint is allowed to change)
215 /* Subtype attributes for IFLA_PROTINFO */
218 IFLA_INET6_FLAGS
, /* link flags */
219 IFLA_INET6_CONF
, /* sysctl parameters */
220 IFLA_INET6_STATS
, /* statistics */
221 IFLA_INET6_MCAST
, /* MC things. What of them? */
222 IFLA_INET6_CACHEINFO
, /* time values and max reasm size */
223 IFLA_INET6_ICMP6STATS
, /* statistics (icmpv6) */
224 IFLA_INET6_TOKEN
, /* device token */
225 IFLA_INET6_ADDR_GEN_MODE
, /* implicit address generator mode */
229 #define IFLA_INET6_MAX (__IFLA_INET6_MAX - 1)
231 enum in6_addr_gen_mode
{
232 IN6_ADDR_GEN_MODE_EUI64
,
233 IN6_ADDR_GEN_MODE_NONE
,
234 IN6_ADDR_GEN_MODE_STABLE_PRIVACY
,
235 IN6_ADDR_GEN_MODE_RANDOM
,
242 IFLA_BR_FORWARD_DELAY
,
248 IFLA_BR_VLAN_FILTERING
,
249 IFLA_BR_VLAN_PROTOCOL
,
250 IFLA_BR_GROUP_FWD_MASK
,
254 IFLA_BR_ROOT_PATH_COST
,
255 IFLA_BR_TOPOLOGY_CHANGE
,
256 IFLA_BR_TOPOLOGY_CHANGE_DETECTED
,
259 IFLA_BR_TOPOLOGY_CHANGE_TIMER
,
263 IFLA_BR_MCAST_ROUTER
,
264 IFLA_BR_MCAST_SNOOPING
,
265 IFLA_BR_MCAST_QUERY_USE_IFADDR
,
266 IFLA_BR_MCAST_QUERIER
,
267 IFLA_BR_MCAST_HASH_ELASTICITY
,
268 IFLA_BR_MCAST_HASH_MAX
,
269 IFLA_BR_MCAST_LAST_MEMBER_CNT
,
270 IFLA_BR_MCAST_STARTUP_QUERY_CNT
,
271 IFLA_BR_MCAST_LAST_MEMBER_INTVL
,
272 IFLA_BR_MCAST_MEMBERSHIP_INTVL
,
273 IFLA_BR_MCAST_QUERIER_INTVL
,
274 IFLA_BR_MCAST_QUERY_INTVL
,
275 IFLA_BR_MCAST_QUERY_RESPONSE_INTVL
,
276 IFLA_BR_MCAST_STARTUP_QUERY_INTVL
,
277 IFLA_BR_NF_CALL_IPTABLES
,
278 IFLA_BR_NF_CALL_IP6TABLES
,
279 IFLA_BR_NF_CALL_ARPTABLES
,
280 IFLA_BR_VLAN_DEFAULT_PVID
,
282 IFLA_BR_VLAN_STATS_ENABLED
,
283 IFLA_BR_MCAST_STATS_ENABLED
,
284 IFLA_BR_MCAST_IGMP_VERSION
,
285 IFLA_BR_MCAST_MLD_VERSION
,
289 #define IFLA_BR_MAX (__IFLA_BR_MAX - 1)
291 struct ifla_bridge_id
{
293 __u8 addr
[6]; /* ETH_ALEN */
303 IFLA_BRPORT_STATE
, /* Spanning tree state */
304 IFLA_BRPORT_PRIORITY
, /* " priority */
305 IFLA_BRPORT_COST
, /* " cost */
306 IFLA_BRPORT_MODE
, /* mode (hairpin) */
307 IFLA_BRPORT_GUARD
, /* bpdu guard */
308 IFLA_BRPORT_PROTECT
, /* root port protection */
309 IFLA_BRPORT_FAST_LEAVE
, /* multicast fast leave */
310 IFLA_BRPORT_LEARNING
, /* mac learning */
311 IFLA_BRPORT_UNICAST_FLOOD
, /* flood unicast traffic */
312 IFLA_BRPORT_PROXYARP
, /* proxy ARP */
313 IFLA_BRPORT_LEARNING_SYNC
, /* mac learning sync from device */
314 IFLA_BRPORT_PROXYARP_WIFI
, /* proxy ARP for Wi-Fi */
315 IFLA_BRPORT_ROOT_ID
, /* designated root */
316 IFLA_BRPORT_BRIDGE_ID
, /* designated bridge */
317 IFLA_BRPORT_DESIGNATED_PORT
,
318 IFLA_BRPORT_DESIGNATED_COST
,
321 IFLA_BRPORT_TOPOLOGY_CHANGE_ACK
,
322 IFLA_BRPORT_CONFIG_PENDING
,
323 IFLA_BRPORT_MESSAGE_AGE_TIMER
,
324 IFLA_BRPORT_FORWARD_DELAY_TIMER
,
325 IFLA_BRPORT_HOLD_TIMER
,
327 IFLA_BRPORT_MULTICAST_ROUTER
,
329 IFLA_BRPORT_MCAST_FLOOD
,
330 IFLA_BRPORT_MCAST_TO_UCAST
,
331 IFLA_BRPORT_VLAN_TUNNEL
,
332 IFLA_BRPORT_BCAST_FLOOD
,
333 IFLA_BRPORT_GROUP_FWD_MASK
,
334 IFLA_BRPORT_NEIGH_SUPPRESS
,
337 #define IFLA_BRPORT_MAX (__IFLA_BRPORT_MAX - 1)
339 struct ifla_cacheinfo
{
341 __u32 tstamp
; /* ipv6InterfaceTable updated timestamp */
342 __u32 reachable_time
;
351 IFLA_INFO_SLAVE_KIND
,
352 IFLA_INFO_SLAVE_DATA
,
356 #define IFLA_INFO_MAX (__IFLA_INFO_MAX - 1)
364 IFLA_VLAN_EGRESS_QOS
,
365 IFLA_VLAN_INGRESS_QOS
,
370 #define IFLA_VLAN_MAX (__IFLA_VLAN_MAX - 1)
372 struct ifla_vlan_flags
{
378 IFLA_VLAN_QOS_UNSPEC
,
379 IFLA_VLAN_QOS_MAPPING
,
383 #define IFLA_VLAN_QOS_MAX (__IFLA_VLAN_QOS_MAX - 1)
385 struct ifla_vlan_qos_mapping
{
390 /* MACVLAN section */
395 IFLA_MACVLAN_MACADDR_MODE
,
396 IFLA_MACVLAN_MACADDR
,
397 IFLA_MACVLAN_MACADDR_DATA
,
398 IFLA_MACVLAN_MACADDR_COUNT
,
402 #define IFLA_MACVLAN_MAX (__IFLA_MACVLAN_MAX - 1)
405 MACVLAN_MODE_PRIVATE
= 1, /* don't talk to other macvlans */
406 MACVLAN_MODE_VEPA
= 2, /* talk to other ports through ext bridge */
407 MACVLAN_MODE_BRIDGE
= 4, /* talk to bridge ports directly */
408 MACVLAN_MODE_PASSTHRU
= 8,/* take over the underlying device */
409 MACVLAN_MODE_SOURCE
= 16,/* use source MAC address list to assign */
412 enum macvlan_macaddr_mode
{
415 MACVLAN_MACADDR_FLUSH
,
419 #define MACVLAN_FLAG_NOPROMISC 1
428 #define IFLA_VRF_MAX (__IFLA_VRF_MAX - 1)
431 IFLA_VRF_PORT_UNSPEC
,
436 #define IFLA_VRF_PORT_MAX (__IFLA_VRF_PORT_MAX - 1)
444 IFLA_MACSEC_CIPHER_SUITE
,
446 IFLA_MACSEC_ENCODING_SA
,
452 IFLA_MACSEC_REPLAY_PROTECT
,
453 IFLA_MACSEC_VALIDATION
,
458 #define IFLA_MACSEC_MAX (__IFLA_MACSEC_MAX - 1)
460 enum macsec_validation_type
{
461 MACSEC_VALIDATE_DISABLED
= 0,
462 MACSEC_VALIDATE_CHECK
= 1,
463 MACSEC_VALIDATE_STRICT
= 2,
464 __MACSEC_VALIDATE_END
,
465 MACSEC_VALIDATE_MAX
= __MACSEC_VALIDATE_END
- 1,
476 #define IFLA_IPVLAN_MAX (__IFLA_IPVLAN_MAX - 1)
485 #define IPVLAN_F_PRIVATE 0x01
486 #define IPVLAN_F_VEPA 0x02
492 IFLA_VXLAN_GROUP
, /* group or remote address */
500 IFLA_VXLAN_PORT_RANGE
, /* source port */
505 IFLA_VXLAN_PORT
, /* destination port */
509 IFLA_VXLAN_UDP_ZERO_CSUM6_TX
,
510 IFLA_VXLAN_UDP_ZERO_CSUM6_RX
,
511 IFLA_VXLAN_REMCSUM_TX
,
512 IFLA_VXLAN_REMCSUM_RX
,
514 IFLA_VXLAN_REMCSUM_NOPARTIAL
,
515 IFLA_VXLAN_COLLECT_METADATA
,
520 #define IFLA_VXLAN_MAX (__IFLA_VXLAN_MAX - 1)
522 struct ifla_vxlan_port_range
{
534 IFLA_GENEVE_PORT
, /* destination port */
535 IFLA_GENEVE_COLLECT_METADATA
,
537 IFLA_GENEVE_UDP_CSUM
,
538 IFLA_GENEVE_UDP_ZERO_CSUM6_TX
,
539 IFLA_GENEVE_UDP_ZERO_CSUM6_RX
,
543 #define IFLA_GENEVE_MAX (__IFLA_GENEVE_MAX - 1)
551 #define IFLA_PPP_MAX (__IFLA_PPP_MAX - 1)
564 IFLA_GTP_PDP_HASHSIZE
,
568 #define IFLA_GTP_MAX (__IFLA_GTP_MAX - 1)
570 /* Bonding section */
575 IFLA_BOND_ACTIVE_SLAVE
,
579 IFLA_BOND_USE_CARRIER
,
580 IFLA_BOND_ARP_INTERVAL
,
581 IFLA_BOND_ARP_IP_TARGET
,
582 IFLA_BOND_ARP_VALIDATE
,
583 IFLA_BOND_ARP_ALL_TARGETS
,
585 IFLA_BOND_PRIMARY_RESELECT
,
586 IFLA_BOND_FAIL_OVER_MAC
,
587 IFLA_BOND_XMIT_HASH_POLICY
,
588 IFLA_BOND_RESEND_IGMP
,
589 IFLA_BOND_NUM_PEER_NOTIF
,
590 IFLA_BOND_ALL_SLAVES_ACTIVE
,
592 IFLA_BOND_LP_INTERVAL
,
593 IFLA_BOND_PACKETS_PER_SLAVE
,
594 IFLA_BOND_AD_LACP_RATE
,
597 IFLA_BOND_AD_ACTOR_SYS_PRIO
,
598 IFLA_BOND_AD_USER_PORT_KEY
,
599 IFLA_BOND_AD_ACTOR_SYSTEM
,
600 IFLA_BOND_TLB_DYNAMIC_LB
,
604 #define IFLA_BOND_MAX (__IFLA_BOND_MAX - 1)
607 IFLA_BOND_AD_INFO_UNSPEC
,
608 IFLA_BOND_AD_INFO_AGGREGATOR
,
609 IFLA_BOND_AD_INFO_NUM_PORTS
,
610 IFLA_BOND_AD_INFO_ACTOR_KEY
,
611 IFLA_BOND_AD_INFO_PARTNER_KEY
,
612 IFLA_BOND_AD_INFO_PARTNER_MAC
,
613 __IFLA_BOND_AD_INFO_MAX
,
616 #define IFLA_BOND_AD_INFO_MAX (__IFLA_BOND_AD_INFO_MAX - 1)
619 IFLA_BOND_SLAVE_UNSPEC
,
620 IFLA_BOND_SLAVE_STATE
,
621 IFLA_BOND_SLAVE_MII_STATUS
,
622 IFLA_BOND_SLAVE_LINK_FAILURE_COUNT
,
623 IFLA_BOND_SLAVE_PERM_HWADDR
,
624 IFLA_BOND_SLAVE_QUEUE_ID
,
625 IFLA_BOND_SLAVE_AD_AGGREGATOR_ID
,
626 IFLA_BOND_SLAVE_AD_ACTOR_OPER_PORT_STATE
,
627 IFLA_BOND_SLAVE_AD_PARTNER_OPER_PORT_STATE
,
628 __IFLA_BOND_SLAVE_MAX
,
631 #define IFLA_BOND_SLAVE_MAX (__IFLA_BOND_SLAVE_MAX - 1)
633 /* SR-IOV virtual function management section */
641 #define IFLA_VF_INFO_MAX (__IFLA_VF_INFO_MAX - 1)
645 IFLA_VF_MAC
, /* Hardware queue specific attributes */
646 IFLA_VF_VLAN
, /* VLAN ID and QoS */
647 IFLA_VF_TX_RATE
, /* Max TX Bandwidth Allocation */
648 IFLA_VF_SPOOFCHK
, /* Spoof Checking on/off switch */
649 IFLA_VF_LINK_STATE
, /* link state enable/disable/auto switch */
650 IFLA_VF_RATE
, /* Min and Max TX Bandwidth Allocation */
651 IFLA_VF_RSS_QUERY_EN
, /* RSS Redirection Table and Hash Key query
654 IFLA_VF_STATS
, /* network device statistics */
655 IFLA_VF_TRUST
, /* Trust VF */
656 IFLA_VF_IB_NODE_GUID
, /* VF Infiniband node GUID */
657 IFLA_VF_IB_PORT_GUID
, /* VF Infiniband port GUID */
658 IFLA_VF_VLAN_LIST
, /* nested list of vlans, option for QinQ */
662 #define IFLA_VF_MAX (__IFLA_VF_MAX - 1)
666 __u8 mac
[32]; /* MAX_ADDR_LEN */
669 struct ifla_vf_vlan
{
671 __u32 vlan
; /* 0 - 4095, 0 disables VLAN filter */
676 IFLA_VF_VLAN_INFO_UNSPEC
,
677 IFLA_VF_VLAN_INFO
, /* VLAN ID, QoS and VLAN protocol */
678 __IFLA_VF_VLAN_INFO_MAX
,
681 #define IFLA_VF_VLAN_INFO_MAX (__IFLA_VF_VLAN_INFO_MAX - 1)
682 #define MAX_VLAN_LIST_LEN 1
684 struct ifla_vf_vlan_info
{
686 __u32 vlan
; /* 0 - 4095, 0 disables VLAN filter */
688 __be16 vlan_proto
; /* VLAN protocol either 802.1Q or 802.1ad */
691 struct ifla_vf_tx_rate
{
693 __u32 rate
; /* Max TX bandwidth in Mbps, 0 disables throttling */
696 struct ifla_vf_rate
{
698 __u32 min_tx_rate
; /* Min Bandwidth in Mbps */
699 __u32 max_tx_rate
; /* Max Bandwidth in Mbps */
702 struct ifla_vf_spoofchk
{
707 struct ifla_vf_guid
{
713 IFLA_VF_LINK_STATE_AUTO
, /* link state of the uplink */
714 IFLA_VF_LINK_STATE_ENABLE
, /* link always up */
715 IFLA_VF_LINK_STATE_DISABLE
, /* link always down */
716 __IFLA_VF_LINK_STATE_MAX
,
719 struct ifla_vf_link_state
{
724 struct ifla_vf_rss_query_en
{
730 IFLA_VF_STATS_RX_PACKETS
,
731 IFLA_VF_STATS_TX_PACKETS
,
732 IFLA_VF_STATS_RX_BYTES
,
733 IFLA_VF_STATS_TX_BYTES
,
734 IFLA_VF_STATS_BROADCAST
,
735 IFLA_VF_STATS_MULTICAST
,
737 IFLA_VF_STATS_RX_DROPPED
,
738 IFLA_VF_STATS_TX_DROPPED
,
742 #define IFLA_VF_STATS_MAX (__IFLA_VF_STATS_MAX - 1)
744 struct ifla_vf_trust
{
749 /* VF ports management section
751 * Nested layout of set/get msg is:
766 IFLA_VF_PORT
, /* nest */
770 #define IFLA_VF_PORT_MAX (__IFLA_VF_PORT_MAX - 1)
774 IFLA_PORT_VF
, /* __u32 */
775 IFLA_PORT_PROFILE
, /* string */
776 IFLA_PORT_VSI_TYPE
, /* 802.1Qbg (pre-)standard VDP */
777 IFLA_PORT_INSTANCE_UUID
, /* binary UUID */
778 IFLA_PORT_HOST_UUID
, /* binary UUID */
779 IFLA_PORT_REQUEST
, /* __u8 */
780 IFLA_PORT_RESPONSE
, /* __u16, output only */
784 #define IFLA_PORT_MAX (__IFLA_PORT_MAX - 1)
786 #define PORT_PROFILE_MAX 40
787 #define PORT_UUID_MAX 16
788 #define PORT_SELF_VF -1
791 PORT_REQUEST_PREASSOCIATE
= 0,
792 PORT_REQUEST_PREASSOCIATE_RR
,
793 PORT_REQUEST_ASSOCIATE
,
794 PORT_REQUEST_DISASSOCIATE
,
798 PORT_VDP_RESPONSE_SUCCESS
= 0,
799 PORT_VDP_RESPONSE_INVALID_FORMAT
,
800 PORT_VDP_RESPONSE_INSUFFICIENT_RESOURCES
,
801 PORT_VDP_RESPONSE_UNUSED_VTID
,
802 PORT_VDP_RESPONSE_VTID_VIOLATION
,
803 PORT_VDP_RESPONSE_VTID_VERSION_VIOALTION
,
804 PORT_VDP_RESPONSE_OUT_OF_SYNC
,
805 /* 0x08-0xFF reserved for future VDP use */
806 PORT_PROFILE_RESPONSE_SUCCESS
= 0x100,
807 PORT_PROFILE_RESPONSE_INPROGRESS
,
808 PORT_PROFILE_RESPONSE_INVALID
,
809 PORT_PROFILE_RESPONSE_BADSTATE
,
810 PORT_PROFILE_RESPONSE_INSUFFICIENT_RESOURCES
,
811 PORT_PROFILE_RESPONSE_ERROR
,
814 struct ifla_port_vsi
{
817 __u8 vsi_type_version
;
833 IPOIB_MODE_DATAGRAM
= 0, /* using unreliable datagram QPs */
834 IPOIB_MODE_CONNECTED
= 1, /* using connected QPs */
837 #define IFLA_IPOIB_MAX (__IFLA_IPOIB_MAX - 1)
846 IFLA_HSR_MULTICAST_SPEC
, /* Last byte of supervision addr */
847 IFLA_HSR_SUPERVISION_ADDR
, /* Supervision frame multicast addr */
849 IFLA_HSR_VERSION
, /* HSR version */
853 #define IFLA_HSR_MAX (__IFLA_HSR_MAX - 1)
857 struct if_stats_msg
{
865 /* A stats attribute can be netdev specific or a global stat.
866 * For netdev stats, lets use the prefix IFLA_STATS_LINK_*
869 IFLA_STATS_UNSPEC
, /* also used as 64bit pad attribute */
871 IFLA_STATS_LINK_XSTATS
,
872 IFLA_STATS_LINK_XSTATS_SLAVE
,
873 IFLA_STATS_LINK_OFFLOAD_XSTATS
,
878 #define IFLA_STATS_MAX (__IFLA_STATS_MAX - 1)
880 #define IFLA_STATS_FILTER_BIT(ATTR) (1 << (ATTR - 1))
882 /* These are embedded into IFLA_STATS_LINK_XSTATS:
883 * [IFLA_STATS_LINK_XSTATS]
884 * -> [LINK_XSTATS_TYPE_xxx]
885 * -> [rtnl link type specific attributes]
888 LINK_XSTATS_TYPE_UNSPEC
,
889 LINK_XSTATS_TYPE_BRIDGE
,
890 __LINK_XSTATS_TYPE_MAX
892 #define LINK_XSTATS_TYPE_MAX (__LINK_XSTATS_TYPE_MAX - 1)
894 /* These are stats embedded into IFLA_STATS_LINK_OFFLOAD_XSTATS */
896 IFLA_OFFLOAD_XSTATS_UNSPEC
,
897 IFLA_OFFLOAD_XSTATS_CPU_HIT
, /* struct rtnl_link_stats64 */
898 __IFLA_OFFLOAD_XSTATS_MAX
900 #define IFLA_OFFLOAD_XSTATS_MAX (__IFLA_OFFLOAD_XSTATS_MAX - 1)
904 #define XDP_FLAGS_UPDATE_IF_NOEXIST (1U << 0)
905 #define XDP_FLAGS_SKB_MODE (1U << 1)
906 #define XDP_FLAGS_DRV_MODE (1U << 2)
907 #define XDP_FLAGS_HW_MODE (1U << 3)
908 #define XDP_FLAGS_MODES (XDP_FLAGS_SKB_MODE | \
909 XDP_FLAGS_DRV_MODE | \
911 #define XDP_FLAGS_MASK (XDP_FLAGS_UPDATE_IF_NOEXIST | \
914 /* These are stored into IFLA_XDP_ATTACHED on dump. */
916 XDP_ATTACHED_NONE
= 0,
931 #define IFLA_XDP_MAX (__IFLA_XDP_MAX - 1)
935 IFLA_EVENT_REBOOT
, /* internal reset / reboot */
936 IFLA_EVENT_FEATURES
, /* change in offload features */
937 IFLA_EVENT_BONDING_FAILOVER
, /* change in active slave */
938 IFLA_EVENT_NOTIFY_PEERS
, /* re-sent grat. arp/ndisc */
939 IFLA_EVENT_IGMP_RESEND
, /* re-sent IGMP JOIN */
940 IFLA_EVENT_BONDING_OPTIONS
, /* change in bonding options */
943 #endif /* _UAPI_LINUX_IF_LINK_H */