1 #ifndef _UAPI_LINUX_IF_LINK_H
2 #define _UAPI_LINUX_IF_LINK_H
4 #include <linux/types.h>
5 #include <linux/netlink.h>
7 /* This struct should be in sync with struct rtnl_link_stats64 */
8 struct rtnl_link_stats {
9 __u32 rx_packets; /* total packets received */
10 __u32 tx_packets; /* total packets transmitted */
11 __u32 rx_bytes; /* total bytes received */
12 __u32 tx_bytes; /* total bytes transmitted */
13 __u32 rx_errors; /* bad packets received */
14 __u32 tx_errors; /* packet transmit problems */
15 __u32 rx_dropped; /* no space in linux buffers */
16 __u32 tx_dropped; /* no space available in linux */
17 __u32 multicast; /* multicast packets received */
20 /* detailed rx_errors: */
21 __u32 rx_length_errors;
22 __u32 rx_over_errors; /* receiver ring buff overflow */
23 __u32 rx_crc_errors; /* recved pkt with crc error */
24 __u32 rx_frame_errors; /* recv'd frame alignment error */
25 __u32 rx_fifo_errors; /* recv'r fifo overrun */
26 __u32 rx_missed_errors; /* receiver missed packet */
28 /* detailed tx_errors */
29 __u32 tx_aborted_errors;
30 __u32 tx_carrier_errors;
32 __u32 tx_heartbeat_errors;
33 __u32 tx_window_errors;
39 __u32 rx_nohandler; /* dropped, no handler found */
42 /* The main device statistics structure */
43 struct rtnl_link_stats64 {
44 __u64 rx_packets; /* total packets received */
45 __u64 tx_packets; /* total packets transmitted */
46 __u64 rx_bytes; /* total bytes received */
47 __u64 tx_bytes; /* total bytes transmitted */
48 __u64 rx_errors; /* bad packets received */
49 __u64 tx_errors; /* packet transmit problems */
50 __u64 rx_dropped; /* no space in linux buffers */
51 __u64 tx_dropped; /* no space available in linux */
52 __u64 multicast; /* multicast packets received */
55 /* detailed rx_errors: */
56 __u64 rx_length_errors;
57 __u64 rx_over_errors; /* receiver ring buff overflow */
58 __u64 rx_crc_errors; /* recved pkt with crc error */
59 __u64 rx_frame_errors; /* recv'd frame alignment error */
60 __u64 rx_fifo_errors; /* recv'r fifo overrun */
61 __u64 rx_missed_errors; /* receiver missed packet */
63 /* detailed tx_errors */
64 __u64 tx_aborted_errors;
65 __u64 tx_carrier_errors;
67 __u64 tx_heartbeat_errors;
68 __u64 tx_window_errors;
74 __u64 rx_nohandler; /* dropped, no handler found */
77 /* The struct should be in sync with struct ifmap */
78 struct rtnl_link_ifmap {
89 * Contains nested attributes for address family specific attributes.
90 * Each address family may create a attribute with the address family
91 * number as type and create its own attribute structure in it.
96 * [IFLA_INET_CONF] = ...,
99 * [IFLA_INET6_FLAGS] = ...,
100 * [IFLA_INET6_CONF] = ...,
115 #define IFLA_COST IFLA_COST
117 #define IFLA_PRIORITY IFLA_PRIORITY
119 #define IFLA_MASTER IFLA_MASTER
120 IFLA_WIRELESS, /* Wireless Extension event - see wireless.h */
121 #define IFLA_WIRELESS IFLA_WIRELESS
122 IFLA_PROTINFO, /* Protocol specific information for a link */
123 #define IFLA_PROTINFO IFLA_PROTINFO
125 #define IFLA_TXQLEN IFLA_TXQLEN
127 #define IFLA_MAP IFLA_MAP
129 #define IFLA_WEIGHT IFLA_WEIGHT
133 #define IFLA_LINKINFO IFLA_LINKINFO
136 IFLA_NUM_VF, /* Number of VFs if device is SR-IOV PF */
142 IFLA_GROUP, /* Group the device belongs to */
144 IFLA_EXT_MASK, /* Extended info mask, VFs, etc */
145 IFLA_PROMISCUITY, /* Promiscuity count: > 0 means acts PROMISC */
146 #define IFLA_PROMISCUITY IFLA_PROMISCUITY
151 IFLA_CARRIER_CHANGES,
164 #define IFLA_MAX (__IFLA_MAX - 1)
166 /* backwards compatibility for userspace */
168 #define IFLA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifinfomsg))))
169 #define IFLA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ifinfomsg))
178 #define IFLA_INET_MAX (__IFLA_INET_MAX - 1)
185 IFF_LOOPBACK, IFF_BROADCAST and IFF_POINTOPOINT are
186 more not changeable by user. They describe link media
187 characteristics and set by device driver.
190 - Combination IFF_BROADCAST|IFF_POINTOPOINT is invalid
191 - If neither of these three flags are set;
192 the interface is NBMA.
194 - IFF_MULTICAST does not mean anything special:
195 multicasts can be used on all not-NBMA links.
196 IFF_MULTICAST means that this media uses special encapsulation
197 for multicast frames. Apparently, all IFF_POINTOPOINT and
198 IFF_BROADCAST devices are able to use multicasts too.
202 For usual devices it is equal ifi_index.
203 If it is a "virtual interface" (f.e. tunnel), ifi_link
204 can point to real physical interface (f.e. for bandwidth calculations),
205 or maybe 0, what means, that real media is unknown (usual
206 for IPIP tunnels, when route to endpoint is allowed to change)
209 /* Subtype attributes for IFLA_PROTINFO */
212 IFLA_INET6_FLAGS, /* link flags */
213 IFLA_INET6_CONF, /* sysctl parameters */
214 IFLA_INET6_STATS, /* statistics */
215 IFLA_INET6_MCAST, /* MC things. What of them? */
216 IFLA_INET6_CACHEINFO, /* time values and max reasm size */
217 IFLA_INET6_ICMP6STATS, /* statistics (icmpv6) */
218 IFLA_INET6_TOKEN, /* device token */
219 IFLA_INET6_ADDR_GEN_MODE, /* implicit address generator mode */
223 #define IFLA_INET6_MAX (__IFLA_INET6_MAX - 1)
225 enum in6_addr_gen_mode {
226 IN6_ADDR_GEN_MODE_EUI64,
227 IN6_ADDR_GEN_MODE_NONE,
228 IN6_ADDR_GEN_MODE_STABLE_PRIVACY,
229 IN6_ADDR_GEN_MODE_RANDOM,
236 IFLA_BR_FORWARD_DELAY,
242 IFLA_BR_VLAN_FILTERING,
243 IFLA_BR_VLAN_PROTOCOL,
244 IFLA_BR_GROUP_FWD_MASK,
248 IFLA_BR_ROOT_PATH_COST,
249 IFLA_BR_TOPOLOGY_CHANGE,
250 IFLA_BR_TOPOLOGY_CHANGE_DETECTED,
253 IFLA_BR_TOPOLOGY_CHANGE_TIMER,
257 IFLA_BR_MCAST_ROUTER,
258 IFLA_BR_MCAST_SNOOPING,
259 IFLA_BR_MCAST_QUERY_USE_IFADDR,
260 IFLA_BR_MCAST_QUERIER,
261 IFLA_BR_MCAST_HASH_ELASTICITY,
262 IFLA_BR_MCAST_HASH_MAX,
263 IFLA_BR_MCAST_LAST_MEMBER_CNT,
264 IFLA_BR_MCAST_STARTUP_QUERY_CNT,
265 IFLA_BR_MCAST_LAST_MEMBER_INTVL,
266 IFLA_BR_MCAST_MEMBERSHIP_INTVL,
267 IFLA_BR_MCAST_QUERIER_INTVL,
268 IFLA_BR_MCAST_QUERY_INTVL,
269 IFLA_BR_MCAST_QUERY_RESPONSE_INTVL,
270 IFLA_BR_MCAST_STARTUP_QUERY_INTVL,
271 IFLA_BR_NF_CALL_IPTABLES,
272 IFLA_BR_NF_CALL_IP6TABLES,
273 IFLA_BR_NF_CALL_ARPTABLES,
274 IFLA_BR_VLAN_DEFAULT_PVID,
276 IFLA_BR_VLAN_STATS_ENABLED,
277 IFLA_BR_MCAST_STATS_ENABLED,
278 IFLA_BR_MCAST_IGMP_VERSION,
279 IFLA_BR_MCAST_MLD_VERSION,
283 #define IFLA_BR_MAX (__IFLA_BR_MAX - 1)
285 struct ifla_bridge_id {
287 __u8 addr[6]; /* ETH_ALEN */
297 IFLA_BRPORT_STATE, /* Spanning tree state */
298 IFLA_BRPORT_PRIORITY, /* " priority */
299 IFLA_BRPORT_COST, /* " cost */
300 IFLA_BRPORT_MODE, /* mode (hairpin) */
301 IFLA_BRPORT_GUARD, /* bpdu guard */
302 IFLA_BRPORT_PROTECT, /* root port protection */
303 IFLA_BRPORT_FAST_LEAVE, /* multicast fast leave */
304 IFLA_BRPORT_LEARNING, /* mac learning */
305 IFLA_BRPORT_UNICAST_FLOOD, /* flood unicast traffic */
306 IFLA_BRPORT_PROXYARP, /* proxy ARP */
307 IFLA_BRPORT_LEARNING_SYNC, /* mac learning sync from device */
308 IFLA_BRPORT_PROXYARP_WIFI, /* proxy ARP for Wi-Fi */
309 IFLA_BRPORT_ROOT_ID, /* designated root */
310 IFLA_BRPORT_BRIDGE_ID, /* designated bridge */
311 IFLA_BRPORT_DESIGNATED_PORT,
312 IFLA_BRPORT_DESIGNATED_COST,
315 IFLA_BRPORT_TOPOLOGY_CHANGE_ACK,
316 IFLA_BRPORT_CONFIG_PENDING,
317 IFLA_BRPORT_MESSAGE_AGE_TIMER,
318 IFLA_BRPORT_FORWARD_DELAY_TIMER,
319 IFLA_BRPORT_HOLD_TIMER,
321 IFLA_BRPORT_MULTICAST_ROUTER,
323 IFLA_BRPORT_MCAST_FLOOD,
326 #define IFLA_BRPORT_MAX (__IFLA_BRPORT_MAX - 1)
328 struct ifla_cacheinfo {
330 __u32 tstamp; /* ipv6InterfaceTable updated timestamp */
331 __u32 reachable_time;
340 IFLA_INFO_SLAVE_KIND,
341 IFLA_INFO_SLAVE_DATA,
345 #define IFLA_INFO_MAX (__IFLA_INFO_MAX - 1)
353 IFLA_VLAN_EGRESS_QOS,
354 IFLA_VLAN_INGRESS_QOS,
359 #define IFLA_VLAN_MAX (__IFLA_VLAN_MAX - 1)
361 struct ifla_vlan_flags {
367 IFLA_VLAN_QOS_UNSPEC,
368 IFLA_VLAN_QOS_MAPPING,
372 #define IFLA_VLAN_QOS_MAX (__IFLA_VLAN_QOS_MAX - 1)
374 struct ifla_vlan_qos_mapping {
379 /* MACVLAN section */
384 IFLA_MACVLAN_MACADDR_MODE,
385 IFLA_MACVLAN_MACADDR,
386 IFLA_MACVLAN_MACADDR_DATA,
387 IFLA_MACVLAN_MACADDR_COUNT,
391 #define IFLA_MACVLAN_MAX (__IFLA_MACVLAN_MAX - 1)
394 MACVLAN_MODE_PRIVATE = 1, /* don't talk to other macvlans */
395 MACVLAN_MODE_VEPA = 2, /* talk to other ports through ext bridge */
396 MACVLAN_MODE_BRIDGE = 4, /* talk to bridge ports directly */
397 MACVLAN_MODE_PASSTHRU = 8,/* take over the underlying device */
398 MACVLAN_MODE_SOURCE = 16,/* use source MAC address list to assign */
401 enum macvlan_macaddr_mode {
404 MACVLAN_MACADDR_FLUSH,
408 #define MACVLAN_FLAG_NOPROMISC 1
417 #define IFLA_VRF_MAX (__IFLA_VRF_MAX - 1)
420 IFLA_VRF_PORT_UNSPEC,
425 #define IFLA_VRF_PORT_MAX (__IFLA_VRF_PORT_MAX - 1)
433 IFLA_MACSEC_CIPHER_SUITE,
435 IFLA_MACSEC_ENCODING_SA,
441 IFLA_MACSEC_REPLAY_PROTECT,
442 IFLA_MACSEC_VALIDATION,
447 #define IFLA_MACSEC_MAX (__IFLA_MACSEC_MAX - 1)
449 enum macsec_validation_type {
450 MACSEC_VALIDATE_DISABLED = 0,
451 MACSEC_VALIDATE_CHECK = 1,
452 MACSEC_VALIDATE_STRICT = 2,
453 __MACSEC_VALIDATE_END,
454 MACSEC_VALIDATE_MAX = __MACSEC_VALIDATE_END - 1,
464 #define IFLA_IPVLAN_MAX (__IFLA_IPVLAN_MAX - 1)
477 IFLA_VXLAN_GROUP, /* group or remote address */
485 IFLA_VXLAN_PORT_RANGE, /* source port */
490 IFLA_VXLAN_PORT, /* destination port */
494 IFLA_VXLAN_UDP_ZERO_CSUM6_TX,
495 IFLA_VXLAN_UDP_ZERO_CSUM6_RX,
496 IFLA_VXLAN_REMCSUM_TX,
497 IFLA_VXLAN_REMCSUM_RX,
499 IFLA_VXLAN_REMCSUM_NOPARTIAL,
500 IFLA_VXLAN_COLLECT_METADATA,
505 #define IFLA_VXLAN_MAX (__IFLA_VXLAN_MAX - 1)
507 struct ifla_vxlan_port_range {
519 IFLA_GENEVE_PORT, /* destination port */
520 IFLA_GENEVE_COLLECT_METADATA,
522 IFLA_GENEVE_UDP_CSUM,
523 IFLA_GENEVE_UDP_ZERO_CSUM6_TX,
524 IFLA_GENEVE_UDP_ZERO_CSUM6_RX,
528 #define IFLA_GENEVE_MAX (__IFLA_GENEVE_MAX - 1)
536 #define IFLA_PPP_MAX (__IFLA_PPP_MAX - 1)
543 IFLA_GTP_PDP_HASHSIZE,
546 #define IFLA_GTP_MAX (__IFLA_GTP_MAX - 1)
548 /* Bonding section */
553 IFLA_BOND_ACTIVE_SLAVE,
557 IFLA_BOND_USE_CARRIER,
558 IFLA_BOND_ARP_INTERVAL,
559 IFLA_BOND_ARP_IP_TARGET,
560 IFLA_BOND_ARP_VALIDATE,
561 IFLA_BOND_ARP_ALL_TARGETS,
563 IFLA_BOND_PRIMARY_RESELECT,
564 IFLA_BOND_FAIL_OVER_MAC,
565 IFLA_BOND_XMIT_HASH_POLICY,
566 IFLA_BOND_RESEND_IGMP,
567 IFLA_BOND_NUM_PEER_NOTIF,
568 IFLA_BOND_ALL_SLAVES_ACTIVE,
570 IFLA_BOND_LP_INTERVAL,
571 IFLA_BOND_PACKETS_PER_SLAVE,
572 IFLA_BOND_AD_LACP_RATE,
575 IFLA_BOND_AD_ACTOR_SYS_PRIO,
576 IFLA_BOND_AD_USER_PORT_KEY,
577 IFLA_BOND_AD_ACTOR_SYSTEM,
578 IFLA_BOND_TLB_DYNAMIC_LB,
582 #define IFLA_BOND_MAX (__IFLA_BOND_MAX - 1)
585 IFLA_BOND_AD_INFO_UNSPEC,
586 IFLA_BOND_AD_INFO_AGGREGATOR,
587 IFLA_BOND_AD_INFO_NUM_PORTS,
588 IFLA_BOND_AD_INFO_ACTOR_KEY,
589 IFLA_BOND_AD_INFO_PARTNER_KEY,
590 IFLA_BOND_AD_INFO_PARTNER_MAC,
591 __IFLA_BOND_AD_INFO_MAX,
594 #define IFLA_BOND_AD_INFO_MAX (__IFLA_BOND_AD_INFO_MAX - 1)
597 IFLA_BOND_SLAVE_UNSPEC,
598 IFLA_BOND_SLAVE_STATE,
599 IFLA_BOND_SLAVE_MII_STATUS,
600 IFLA_BOND_SLAVE_LINK_FAILURE_COUNT,
601 IFLA_BOND_SLAVE_PERM_HWADDR,
602 IFLA_BOND_SLAVE_QUEUE_ID,
603 IFLA_BOND_SLAVE_AD_AGGREGATOR_ID,
604 IFLA_BOND_SLAVE_AD_ACTOR_OPER_PORT_STATE,
605 IFLA_BOND_SLAVE_AD_PARTNER_OPER_PORT_STATE,
606 __IFLA_BOND_SLAVE_MAX,
609 #define IFLA_BOND_SLAVE_MAX (__IFLA_BOND_SLAVE_MAX - 1)
611 /* SR-IOV virtual function management section */
619 #define IFLA_VF_INFO_MAX (__IFLA_VF_INFO_MAX - 1)
623 IFLA_VF_MAC, /* Hardware queue specific attributes */
624 IFLA_VF_VLAN, /* VLAN ID and QoS */
625 IFLA_VF_TX_RATE, /* Max TX Bandwidth Allocation */
626 IFLA_VF_SPOOFCHK, /* Spoof Checking on/off switch */
627 IFLA_VF_LINK_STATE, /* link state enable/disable/auto switch */
628 IFLA_VF_RATE, /* Min and Max TX Bandwidth Allocation */
629 IFLA_VF_RSS_QUERY_EN, /* RSS Redirection Table and Hash Key query
632 IFLA_VF_STATS, /* network device statistics */
633 IFLA_VF_TRUST, /* Trust VF */
634 IFLA_VF_IB_NODE_GUID, /* VF Infiniband node GUID */
635 IFLA_VF_IB_PORT_GUID, /* VF Infiniband port GUID */
636 IFLA_VF_VLAN_LIST, /* nested list of vlans, option for QinQ */
640 #define IFLA_VF_MAX (__IFLA_VF_MAX - 1)
644 __u8 mac[32]; /* MAX_ADDR_LEN */
647 struct ifla_vf_vlan {
649 __u32 vlan; /* 0 - 4095, 0 disables VLAN filter */
654 IFLA_VF_VLAN_INFO_UNSPEC,
655 IFLA_VF_VLAN_INFO, /* VLAN ID, QoS and VLAN protocol */
656 __IFLA_VF_VLAN_INFO_MAX,
659 #define IFLA_VF_VLAN_INFO_MAX (__IFLA_VF_VLAN_INFO_MAX - 1)
660 #define MAX_VLAN_LIST_LEN 1
662 struct ifla_vf_vlan_info {
664 __u32 vlan; /* 0 - 4095, 0 disables VLAN filter */
666 __be16 vlan_proto; /* VLAN protocol either 802.1Q or 802.1ad */
669 struct ifla_vf_tx_rate {
671 __u32 rate; /* Max TX bandwidth in Mbps, 0 disables throttling */
674 struct ifla_vf_rate {
676 __u32 min_tx_rate; /* Min Bandwidth in Mbps */
677 __u32 max_tx_rate; /* Max Bandwidth in Mbps */
680 struct ifla_vf_spoofchk {
685 struct ifla_vf_guid {
691 IFLA_VF_LINK_STATE_AUTO, /* link state of the uplink */
692 IFLA_VF_LINK_STATE_ENABLE, /* link always up */
693 IFLA_VF_LINK_STATE_DISABLE, /* link always down */
694 __IFLA_VF_LINK_STATE_MAX,
697 struct ifla_vf_link_state {
702 struct ifla_vf_rss_query_en {
708 IFLA_VF_STATS_RX_PACKETS,
709 IFLA_VF_STATS_TX_PACKETS,
710 IFLA_VF_STATS_RX_BYTES,
711 IFLA_VF_STATS_TX_BYTES,
712 IFLA_VF_STATS_BROADCAST,
713 IFLA_VF_STATS_MULTICAST,
718 #define IFLA_VF_STATS_MAX (__IFLA_VF_STATS_MAX - 1)
720 struct ifla_vf_trust {
725 /* VF ports management section
727 * Nested layout of set/get msg is:
742 IFLA_VF_PORT, /* nest */
746 #define IFLA_VF_PORT_MAX (__IFLA_VF_PORT_MAX - 1)
750 IFLA_PORT_VF, /* __u32 */
751 IFLA_PORT_PROFILE, /* string */
752 IFLA_PORT_VSI_TYPE, /* 802.1Qbg (pre-)standard VDP */
753 IFLA_PORT_INSTANCE_UUID, /* binary UUID */
754 IFLA_PORT_HOST_UUID, /* binary UUID */
755 IFLA_PORT_REQUEST, /* __u8 */
756 IFLA_PORT_RESPONSE, /* __u16, output only */
760 #define IFLA_PORT_MAX (__IFLA_PORT_MAX - 1)
762 #define PORT_PROFILE_MAX 40
763 #define PORT_UUID_MAX 16
764 #define PORT_SELF_VF -1
767 PORT_REQUEST_PREASSOCIATE = 0,
768 PORT_REQUEST_PREASSOCIATE_RR,
769 PORT_REQUEST_ASSOCIATE,
770 PORT_REQUEST_DISASSOCIATE,
774 PORT_VDP_RESPONSE_SUCCESS = 0,
775 PORT_VDP_RESPONSE_INVALID_FORMAT,
776 PORT_VDP_RESPONSE_INSUFFICIENT_RESOURCES,
777 PORT_VDP_RESPONSE_UNUSED_VTID,
778 PORT_VDP_RESPONSE_VTID_VIOLATION,
779 PORT_VDP_RESPONSE_VTID_VERSION_VIOALTION,
780 PORT_VDP_RESPONSE_OUT_OF_SYNC,
781 /* 0x08-0xFF reserved for future VDP use */
782 PORT_PROFILE_RESPONSE_SUCCESS = 0x100,
783 PORT_PROFILE_RESPONSE_INPROGRESS,
784 PORT_PROFILE_RESPONSE_INVALID,
785 PORT_PROFILE_RESPONSE_BADSTATE,
786 PORT_PROFILE_RESPONSE_INSUFFICIENT_RESOURCES,
787 PORT_PROFILE_RESPONSE_ERROR,
790 struct ifla_port_vsi {
793 __u8 vsi_type_version;
809 IPOIB_MODE_DATAGRAM = 0, /* using unreliable datagram QPs */
810 IPOIB_MODE_CONNECTED = 1, /* using connected QPs */
813 #define IFLA_IPOIB_MAX (__IFLA_IPOIB_MAX - 1)
822 IFLA_HSR_MULTICAST_SPEC, /* Last byte of supervision addr */
823 IFLA_HSR_SUPERVISION_ADDR, /* Supervision frame multicast addr */
825 IFLA_HSR_VERSION, /* HSR version */
829 #define IFLA_HSR_MAX (__IFLA_HSR_MAX - 1)
833 struct if_stats_msg {
841 /* A stats attribute can be netdev specific or a global stat.
842 * For netdev stats, lets use the prefix IFLA_STATS_LINK_*
845 IFLA_STATS_UNSPEC, /* also used as 64bit pad attribute */
847 IFLA_STATS_LINK_XSTATS,
848 IFLA_STATS_LINK_XSTATS_SLAVE,
849 IFLA_STATS_LINK_OFFLOAD_XSTATS,
853 #define IFLA_STATS_MAX (__IFLA_STATS_MAX - 1)
855 #define IFLA_STATS_FILTER_BIT(ATTR) (1 << (ATTR - 1))
857 /* These are embedded into IFLA_STATS_LINK_XSTATS:
858 * [IFLA_STATS_LINK_XSTATS]
859 * -> [LINK_XSTATS_TYPE_xxx]
860 * -> [rtnl link type specific attributes]
863 LINK_XSTATS_TYPE_UNSPEC,
864 LINK_XSTATS_TYPE_BRIDGE,
865 __LINK_XSTATS_TYPE_MAX
867 #define LINK_XSTATS_TYPE_MAX (__LINK_XSTATS_TYPE_MAX - 1)
869 /* These are stats embedded into IFLA_STATS_LINK_OFFLOAD_XSTATS */
871 IFLA_OFFLOAD_XSTATS_UNSPEC,
872 IFLA_OFFLOAD_XSTATS_CPU_HIT, /* struct rtnl_link_stats64 */
873 __IFLA_OFFLOAD_XSTATS_MAX
875 #define IFLA_OFFLOAD_XSTATS_MAX (__IFLA_OFFLOAD_XSTATS_MAX - 1)
879 #define XDP_FLAGS_UPDATE_IF_NOEXIST (1U << 0)
880 #define XDP_FLAGS_MASK (XDP_FLAGS_UPDATE_IF_NOEXIST)
890 #define IFLA_XDP_MAX (__IFLA_XDP_MAX - 1)
892 #endif /* _UAPI_LINUX_IF_LINK_H */