]> git.proxmox.com Git - mirror_iproute2.git/blob - include/linux/if_link.h
Merge branch 'master' into net-next
[mirror_iproute2.git] / include / linux / if_link.h
1 #ifndef _LINUX_IF_LINK_H
2 #define _LINUX_IF_LINK_H
3
4 #include <linux/types.h>
5 #include <linux/netlink.h>
6
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 */
18 __u32 collisions;
19
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 */
27
28 /* detailed tx_errors */
29 __u32 tx_aborted_errors;
30 __u32 tx_carrier_errors;
31 __u32 tx_fifo_errors;
32 __u32 tx_heartbeat_errors;
33 __u32 tx_window_errors;
34
35 /* for cslip etc */
36 __u32 rx_compressed;
37 __u32 tx_compressed;
38
39 __u32 rx_nohandler; /* dropped, no handler found */
40 };
41
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 */
53 __u64 collisions;
54
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 */
62
63 /* detailed tx_errors */
64 __u64 tx_aborted_errors;
65 __u64 tx_carrier_errors;
66 __u64 tx_fifo_errors;
67 __u64 tx_heartbeat_errors;
68 __u64 tx_window_errors;
69
70 /* for cslip etc */
71 __u64 rx_compressed;
72 __u64 tx_compressed;
73
74 __u64 rx_nohandler; /* dropped, no handler found */
75 };
76
77 /* The struct should be in sync with struct ifmap */
78 struct rtnl_link_ifmap {
79 __u64 mem_start;
80 __u64 mem_end;
81 __u64 base_addr;
82 __u16 irq;
83 __u8 dma;
84 __u8 port;
85 };
86
87 /*
88 * IFLA_AF_SPEC
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.
92 *
93 * Example:
94 * [IFLA_AF_SPEC] = {
95 * [AF_INET] = {
96 * [IFLA_INET_CONF] = ...,
97 * },
98 * [AF_INET6] = {
99 * [IFLA_INET6_FLAGS] = ...,
100 * [IFLA_INET6_CONF] = ...,
101 * }
102 * }
103 */
104
105 enum {
106 IFLA_UNSPEC,
107 IFLA_ADDRESS,
108 IFLA_BROADCAST,
109 IFLA_IFNAME,
110 IFLA_MTU,
111 IFLA_LINK,
112 IFLA_QDISC,
113 IFLA_STATS,
114 IFLA_COST,
115 #define IFLA_COST IFLA_COST
116 IFLA_PRIORITY,
117 #define IFLA_PRIORITY IFLA_PRIORITY
118 IFLA_MASTER,
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
124 IFLA_TXQLEN,
125 #define IFLA_TXQLEN IFLA_TXQLEN
126 IFLA_MAP,
127 #define IFLA_MAP IFLA_MAP
128 IFLA_WEIGHT,
129 #define IFLA_WEIGHT IFLA_WEIGHT
130 IFLA_OPERSTATE,
131 IFLA_LINKMODE,
132 IFLA_LINKINFO,
133 #define IFLA_LINKINFO IFLA_LINKINFO
134 IFLA_NET_NS_PID,
135 IFLA_IFALIAS,
136 IFLA_NUM_VF, /* Number of VFs if device is SR-IOV PF */
137 IFLA_VFINFO_LIST,
138 IFLA_STATS64,
139 IFLA_VF_PORTS,
140 IFLA_PORT_SELF,
141 IFLA_AF_SPEC,
142 IFLA_GROUP, /* Group the device belongs to */
143 IFLA_NET_NS_FD,
144 IFLA_EXT_MASK, /* Extended info mask, VFs, etc */
145 IFLA_PROMISCUITY, /* Promiscuity count: > 0 means acts PROMISC */
146 #define IFLA_PROMISCUITY IFLA_PROMISCUITY
147 IFLA_NUM_TX_QUEUES,
148 IFLA_NUM_RX_QUEUES,
149 IFLA_CARRIER,
150 IFLA_PHYS_PORT_ID,
151 IFLA_CARRIER_CHANGES,
152 IFLA_PHYS_SWITCH_ID,
153 IFLA_LINK_NETNSID,
154 IFLA_PHYS_PORT_NAME,
155 IFLA_PROTO_DOWN,
156 __IFLA_MAX
157 };
158
159
160 #define IFLA_MAX (__IFLA_MAX - 1)
161
162 /* backwards compatibility for userspace */
163 #define IFLA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifinfomsg))))
164 #define IFLA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ifinfomsg))
165
166 enum {
167 IFLA_INET_UNSPEC,
168 IFLA_INET_CONF,
169 __IFLA_INET_MAX,
170 };
171
172 #define IFLA_INET_MAX (__IFLA_INET_MAX - 1)
173
174 /* ifi_flags.
175
176 IFF_* flags.
177
178 The only change is:
179 IFF_LOOPBACK, IFF_BROADCAST and IFF_POINTOPOINT are
180 more not changeable by user. They describe link media
181 characteristics and set by device driver.
182
183 Comments:
184 - Combination IFF_BROADCAST|IFF_POINTOPOINT is invalid
185 - If neither of these three flags are set;
186 the interface is NBMA.
187
188 - IFF_MULTICAST does not mean anything special:
189 multicasts can be used on all not-NBMA links.
190 IFF_MULTICAST means that this media uses special encapsulation
191 for multicast frames. Apparently, all IFF_POINTOPOINT and
192 IFF_BROADCAST devices are able to use multicasts too.
193 */
194
195 /* IFLA_LINK.
196 For usual devices it is equal ifi_index.
197 If it is a "virtual interface" (f.e. tunnel), ifi_link
198 can point to real physical interface (f.e. for bandwidth calculations),
199 or maybe 0, what means, that real media is unknown (usual
200 for IPIP tunnels, when route to endpoint is allowed to change)
201 */
202
203 /* Subtype attributes for IFLA_PROTINFO */
204 enum {
205 IFLA_INET6_UNSPEC,
206 IFLA_INET6_FLAGS, /* link flags */
207 IFLA_INET6_CONF, /* sysctl parameters */
208 IFLA_INET6_STATS, /* statistics */
209 IFLA_INET6_MCAST, /* MC things. What of them? */
210 IFLA_INET6_CACHEINFO, /* time values and max reasm size */
211 IFLA_INET6_ICMP6STATS, /* statistics (icmpv6) */
212 IFLA_INET6_TOKEN, /* device token */
213 IFLA_INET6_ADDR_GEN_MODE, /* implicit address generator mode */
214 __IFLA_INET6_MAX
215 };
216
217 #define IFLA_INET6_MAX (__IFLA_INET6_MAX - 1)
218
219 enum in6_addr_gen_mode {
220 IN6_ADDR_GEN_MODE_EUI64,
221 IN6_ADDR_GEN_MODE_NONE,
222 IN6_ADDR_GEN_MODE_STABLE_PRIVACY,
223 IN6_ADDR_GEN_MODE_RANDOM,
224 };
225
226 /* Bridge section */
227
228 enum {
229 IFLA_BR_UNSPEC,
230 IFLA_BR_FORWARD_DELAY,
231 IFLA_BR_HELLO_TIME,
232 IFLA_BR_MAX_AGE,
233 IFLA_BR_AGEING_TIME,
234 IFLA_BR_STP_STATE,
235 IFLA_BR_PRIORITY,
236 IFLA_BR_VLAN_FILTERING,
237 IFLA_BR_VLAN_PROTOCOL,
238 IFLA_BR_GROUP_FWD_MASK,
239 IFLA_BR_ROOT_ID,
240 IFLA_BR_BRIDGE_ID,
241 IFLA_BR_ROOT_PORT,
242 IFLA_BR_ROOT_PATH_COST,
243 IFLA_BR_TOPOLOGY_CHANGE,
244 IFLA_BR_TOPOLOGY_CHANGE_DETECTED,
245 IFLA_BR_HELLO_TIMER,
246 IFLA_BR_TCN_TIMER,
247 IFLA_BR_TOPOLOGY_CHANGE_TIMER,
248 IFLA_BR_GC_TIMER,
249 IFLA_BR_GROUP_ADDR,
250 IFLA_BR_FDB_FLUSH,
251 IFLA_BR_MCAST_ROUTER,
252 IFLA_BR_MCAST_SNOOPING,
253 IFLA_BR_MCAST_QUERY_USE_IFADDR,
254 IFLA_BR_MCAST_QUERIER,
255 IFLA_BR_MCAST_HASH_ELASTICITY,
256 IFLA_BR_MCAST_HASH_MAX,
257 IFLA_BR_MCAST_LAST_MEMBER_CNT,
258 IFLA_BR_MCAST_STARTUP_QUERY_CNT,
259 IFLA_BR_MCAST_LAST_MEMBER_INTVL,
260 IFLA_BR_MCAST_MEMBERSHIP_INTVL,
261 IFLA_BR_MCAST_QUERIER_INTVL,
262 IFLA_BR_MCAST_QUERY_INTVL,
263 IFLA_BR_MCAST_QUERY_RESPONSE_INTVL,
264 IFLA_BR_MCAST_STARTUP_QUERY_INTVL,
265 IFLA_BR_NF_CALL_IPTABLES,
266 IFLA_BR_NF_CALL_IP6TABLES,
267 IFLA_BR_NF_CALL_ARPTABLES,
268 IFLA_BR_VLAN_DEFAULT_PVID,
269 __IFLA_BR_MAX,
270 };
271
272 #define IFLA_BR_MAX (__IFLA_BR_MAX - 1)
273
274 struct ifla_bridge_id {
275 __u8 prio[2];
276 __u8 addr[6]; /* ETH_ALEN */
277 };
278
279 enum {
280 BRIDGE_MODE_UNSPEC,
281 BRIDGE_MODE_HAIRPIN,
282 };
283
284 enum {
285 IFLA_BRPORT_UNSPEC,
286 IFLA_BRPORT_STATE, /* Spanning tree state */
287 IFLA_BRPORT_PRIORITY, /* " priority */
288 IFLA_BRPORT_COST, /* " cost */
289 IFLA_BRPORT_MODE, /* mode (hairpin) */
290 IFLA_BRPORT_GUARD, /* bpdu guard */
291 IFLA_BRPORT_PROTECT, /* root port protection */
292 IFLA_BRPORT_FAST_LEAVE, /* multicast fast leave */
293 IFLA_BRPORT_LEARNING, /* mac learning */
294 IFLA_BRPORT_UNICAST_FLOOD, /* flood unicast traffic */
295 IFLA_BRPORT_PROXYARP, /* proxy ARP */
296 IFLA_BRPORT_LEARNING_SYNC, /* mac learning sync from device */
297 IFLA_BRPORT_PROXYARP_WIFI, /* proxy ARP for Wi-Fi */
298 IFLA_BRPORT_ROOT_ID, /* designated root */
299 IFLA_BRPORT_BRIDGE_ID, /* designated bridge */
300 IFLA_BRPORT_DESIGNATED_PORT,
301 IFLA_BRPORT_DESIGNATED_COST,
302 IFLA_BRPORT_ID,
303 IFLA_BRPORT_NO,
304 IFLA_BRPORT_TOPOLOGY_CHANGE_ACK,
305 IFLA_BRPORT_CONFIG_PENDING,
306 IFLA_BRPORT_MESSAGE_AGE_TIMER,
307 IFLA_BRPORT_FORWARD_DELAY_TIMER,
308 IFLA_BRPORT_HOLD_TIMER,
309 IFLA_BRPORT_FLUSH,
310 IFLA_BRPORT_MULTICAST_ROUTER,
311 __IFLA_BRPORT_MAX
312 };
313 #define IFLA_BRPORT_MAX (__IFLA_BRPORT_MAX - 1)
314
315 struct ifla_cacheinfo {
316 __u32 max_reasm_len;
317 __u32 tstamp; /* ipv6InterfaceTable updated timestamp */
318 __u32 reachable_time;
319 __u32 retrans_time;
320 };
321
322 enum {
323 IFLA_INFO_UNSPEC,
324 IFLA_INFO_KIND,
325 IFLA_INFO_DATA,
326 IFLA_INFO_XSTATS,
327 IFLA_INFO_SLAVE_KIND,
328 IFLA_INFO_SLAVE_DATA,
329 __IFLA_INFO_MAX,
330 };
331
332 #define IFLA_INFO_MAX (__IFLA_INFO_MAX - 1)
333
334 /* VLAN section */
335
336 enum {
337 IFLA_VLAN_UNSPEC,
338 IFLA_VLAN_ID,
339 IFLA_VLAN_FLAGS,
340 IFLA_VLAN_EGRESS_QOS,
341 IFLA_VLAN_INGRESS_QOS,
342 IFLA_VLAN_PROTOCOL,
343 __IFLA_VLAN_MAX,
344 };
345
346 #define IFLA_VLAN_MAX (__IFLA_VLAN_MAX - 1)
347
348 struct ifla_vlan_flags {
349 __u32 flags;
350 __u32 mask;
351 };
352
353 enum {
354 IFLA_VLAN_QOS_UNSPEC,
355 IFLA_VLAN_QOS_MAPPING,
356 __IFLA_VLAN_QOS_MAX
357 };
358
359 #define IFLA_VLAN_QOS_MAX (__IFLA_VLAN_QOS_MAX - 1)
360
361 struct ifla_vlan_qos_mapping {
362 __u32 from;
363 __u32 to;
364 };
365
366 /* MACVLAN section */
367 enum {
368 IFLA_MACVLAN_UNSPEC,
369 IFLA_MACVLAN_MODE,
370 IFLA_MACVLAN_FLAGS,
371 IFLA_MACVLAN_MACADDR_MODE,
372 IFLA_MACVLAN_MACADDR,
373 IFLA_MACVLAN_MACADDR_DATA,
374 IFLA_MACVLAN_MACADDR_COUNT,
375 __IFLA_MACVLAN_MAX,
376 };
377
378 #define IFLA_MACVLAN_MAX (__IFLA_MACVLAN_MAX - 1)
379
380 enum macvlan_mode {
381 MACVLAN_MODE_PRIVATE = 1, /* don't talk to other macvlans */
382 MACVLAN_MODE_VEPA = 2, /* talk to other ports through ext bridge */
383 MACVLAN_MODE_BRIDGE = 4, /* talk to bridge ports directly */
384 MACVLAN_MODE_PASSTHRU = 8,/* take over the underlying device */
385 MACVLAN_MODE_SOURCE = 16,/* use source MAC address list to assign */
386 };
387
388 enum macvlan_macaddr_mode {
389 MACVLAN_MACADDR_ADD,
390 MACVLAN_MACADDR_DEL,
391 MACVLAN_MACADDR_FLUSH,
392 MACVLAN_MACADDR_SET,
393 };
394
395 #define MACVLAN_FLAG_NOPROMISC 1
396
397 /* VRF section */
398 enum {
399 IFLA_VRF_UNSPEC,
400 IFLA_VRF_TABLE,
401 __IFLA_VRF_MAX
402 };
403
404 #define IFLA_VRF_MAX (__IFLA_VRF_MAX - 1)
405
406 enum {
407 IFLA_VRF_PORT_UNSPEC,
408 IFLA_VRF_PORT_TABLE,
409 __IFLA_VRF_PORT_MAX
410 };
411
412 #define IFLA_VRF_PORT_MAX (__IFLA_VRF_PORT_MAX - 1)
413
414 /* IPVLAN section */
415 enum {
416 IFLA_IPVLAN_UNSPEC,
417 IFLA_IPVLAN_MODE,
418 __IFLA_IPVLAN_MAX
419 };
420
421 #define IFLA_IPVLAN_MAX (__IFLA_IPVLAN_MAX - 1)
422
423 enum ipvlan_mode {
424 IPVLAN_MODE_L2 = 0,
425 IPVLAN_MODE_L3,
426 IPVLAN_MODE_MAX
427 };
428
429 /* VXLAN section */
430 enum {
431 IFLA_VXLAN_UNSPEC,
432 IFLA_VXLAN_ID,
433 IFLA_VXLAN_GROUP, /* group or remote address */
434 IFLA_VXLAN_LINK,
435 IFLA_VXLAN_LOCAL,
436 IFLA_VXLAN_TTL,
437 IFLA_VXLAN_TOS,
438 IFLA_VXLAN_LEARNING,
439 IFLA_VXLAN_AGEING,
440 IFLA_VXLAN_LIMIT,
441 IFLA_VXLAN_PORT_RANGE, /* source port */
442 IFLA_VXLAN_PROXY,
443 IFLA_VXLAN_RSC,
444 IFLA_VXLAN_L2MISS,
445 IFLA_VXLAN_L3MISS,
446 IFLA_VXLAN_PORT, /* destination port */
447 IFLA_VXLAN_GROUP6,
448 IFLA_VXLAN_LOCAL6,
449 IFLA_VXLAN_UDP_CSUM,
450 IFLA_VXLAN_UDP_ZERO_CSUM6_TX,
451 IFLA_VXLAN_UDP_ZERO_CSUM6_RX,
452 IFLA_VXLAN_REMCSUM_TX,
453 IFLA_VXLAN_REMCSUM_RX,
454 IFLA_VXLAN_GBP,
455 IFLA_VXLAN_REMCSUM_NOPARTIAL,
456 IFLA_VXLAN_COLLECT_METADATA,
457 __IFLA_VXLAN_MAX
458 };
459 #define IFLA_VXLAN_MAX (__IFLA_VXLAN_MAX - 1)
460
461 struct ifla_vxlan_port_range {
462 __be16 low;
463 __be16 high;
464 };
465
466 /* GENEVE section */
467 enum {
468 IFLA_GENEVE_UNSPEC,
469 IFLA_GENEVE_ID,
470 IFLA_GENEVE_REMOTE,
471 IFLA_GENEVE_TTL,
472 IFLA_GENEVE_TOS,
473 IFLA_GENEVE_PORT, /* destination port */
474 IFLA_GENEVE_COLLECT_METADATA,
475 IFLA_GENEVE_REMOTE6,
476 IFLA_GENEVE_UDP_CSUM,
477 IFLA_GENEVE_UDP_ZERO_CSUM6_TX,
478 IFLA_GENEVE_UDP_ZERO_CSUM6_RX,
479 __IFLA_GENEVE_MAX
480 };
481 #define IFLA_GENEVE_MAX (__IFLA_GENEVE_MAX - 1)
482
483 /* Bonding section */
484
485 enum {
486 IFLA_BOND_UNSPEC,
487 IFLA_BOND_MODE,
488 IFLA_BOND_ACTIVE_SLAVE,
489 IFLA_BOND_MIIMON,
490 IFLA_BOND_UPDELAY,
491 IFLA_BOND_DOWNDELAY,
492 IFLA_BOND_USE_CARRIER,
493 IFLA_BOND_ARP_INTERVAL,
494 IFLA_BOND_ARP_IP_TARGET,
495 IFLA_BOND_ARP_VALIDATE,
496 IFLA_BOND_ARP_ALL_TARGETS,
497 IFLA_BOND_PRIMARY,
498 IFLA_BOND_PRIMARY_RESELECT,
499 IFLA_BOND_FAIL_OVER_MAC,
500 IFLA_BOND_XMIT_HASH_POLICY,
501 IFLA_BOND_RESEND_IGMP,
502 IFLA_BOND_NUM_PEER_NOTIF,
503 IFLA_BOND_ALL_SLAVES_ACTIVE,
504 IFLA_BOND_MIN_LINKS,
505 IFLA_BOND_LP_INTERVAL,
506 IFLA_BOND_PACKETS_PER_SLAVE,
507 IFLA_BOND_AD_LACP_RATE,
508 IFLA_BOND_AD_SELECT,
509 IFLA_BOND_AD_INFO,
510 IFLA_BOND_AD_ACTOR_SYS_PRIO,
511 IFLA_BOND_AD_USER_PORT_KEY,
512 IFLA_BOND_AD_ACTOR_SYSTEM,
513 IFLA_BOND_TLB_DYNAMIC_LB,
514 __IFLA_BOND_MAX,
515 };
516
517 #define IFLA_BOND_MAX (__IFLA_BOND_MAX - 1)
518
519 enum {
520 IFLA_BOND_AD_INFO_UNSPEC,
521 IFLA_BOND_AD_INFO_AGGREGATOR,
522 IFLA_BOND_AD_INFO_NUM_PORTS,
523 IFLA_BOND_AD_INFO_ACTOR_KEY,
524 IFLA_BOND_AD_INFO_PARTNER_KEY,
525 IFLA_BOND_AD_INFO_PARTNER_MAC,
526 __IFLA_BOND_AD_INFO_MAX,
527 };
528
529 #define IFLA_BOND_AD_INFO_MAX (__IFLA_BOND_AD_INFO_MAX - 1)
530
531 enum {
532 IFLA_BOND_SLAVE_UNSPEC,
533 IFLA_BOND_SLAVE_STATE,
534 IFLA_BOND_SLAVE_MII_STATUS,
535 IFLA_BOND_SLAVE_LINK_FAILURE_COUNT,
536 IFLA_BOND_SLAVE_PERM_HWADDR,
537 IFLA_BOND_SLAVE_QUEUE_ID,
538 IFLA_BOND_SLAVE_AD_AGGREGATOR_ID,
539 IFLA_BOND_SLAVE_AD_ACTOR_OPER_PORT_STATE,
540 IFLA_BOND_SLAVE_AD_PARTNER_OPER_PORT_STATE,
541 __IFLA_BOND_SLAVE_MAX,
542 };
543
544 #define IFLA_BOND_SLAVE_MAX (__IFLA_BOND_SLAVE_MAX - 1)
545
546 /* SR-IOV virtual function management section */
547
548 enum {
549 IFLA_VF_INFO_UNSPEC,
550 IFLA_VF_INFO,
551 __IFLA_VF_INFO_MAX,
552 };
553
554 #define IFLA_VF_INFO_MAX (__IFLA_VF_INFO_MAX - 1)
555
556 enum {
557 IFLA_VF_UNSPEC,
558 IFLA_VF_MAC, /* Hardware queue specific attributes */
559 IFLA_VF_VLAN,
560 IFLA_VF_TX_RATE, /* Max TX Bandwidth Allocation */
561 IFLA_VF_SPOOFCHK, /* Spoof Checking on/off switch */
562 IFLA_VF_LINK_STATE, /* link state enable/disable/auto switch */
563 IFLA_VF_RATE, /* Min and Max TX Bandwidth Allocation */
564 IFLA_VF_RSS_QUERY_EN, /* RSS Redirection Table and Hash Key query
565 * on/off switch
566 */
567 IFLA_VF_STATS, /* network device statistics */
568 IFLA_VF_TRUST, /* Trust VF */
569 __IFLA_VF_MAX,
570 };
571
572 #define IFLA_VF_MAX (__IFLA_VF_MAX - 1)
573
574 struct ifla_vf_mac {
575 __u32 vf;
576 __u8 mac[32]; /* MAX_ADDR_LEN */
577 };
578
579 struct ifla_vf_vlan {
580 __u32 vf;
581 __u32 vlan; /* 0 - 4095, 0 disables VLAN filter */
582 __u32 qos;
583 };
584
585 struct ifla_vf_tx_rate {
586 __u32 vf;
587 __u32 rate; /* Max TX bandwidth in Mbps, 0 disables throttling */
588 };
589
590 struct ifla_vf_rate {
591 __u32 vf;
592 __u32 min_tx_rate; /* Min Bandwidth in Mbps */
593 __u32 max_tx_rate; /* Max Bandwidth in Mbps */
594 };
595
596 struct ifla_vf_spoofchk {
597 __u32 vf;
598 __u32 setting;
599 };
600
601 enum {
602 IFLA_VF_LINK_STATE_AUTO, /* link state of the uplink */
603 IFLA_VF_LINK_STATE_ENABLE, /* link always up */
604 IFLA_VF_LINK_STATE_DISABLE, /* link always down */
605 __IFLA_VF_LINK_STATE_MAX,
606 };
607
608 struct ifla_vf_link_state {
609 __u32 vf;
610 __u32 link_state;
611 };
612
613 struct ifla_vf_rss_query_en {
614 __u32 vf;
615 __u32 setting;
616 };
617
618 enum {
619 IFLA_VF_STATS_RX_PACKETS,
620 IFLA_VF_STATS_TX_PACKETS,
621 IFLA_VF_STATS_RX_BYTES,
622 IFLA_VF_STATS_TX_BYTES,
623 IFLA_VF_STATS_BROADCAST,
624 IFLA_VF_STATS_MULTICAST,
625 __IFLA_VF_STATS_MAX,
626 };
627
628 #define IFLA_VF_STATS_MAX (__IFLA_VF_STATS_MAX - 1)
629
630 struct ifla_vf_trust {
631 __u32 vf;
632 __u32 setting;
633 };
634
635 /* VF ports management section
636 *
637 * Nested layout of set/get msg is:
638 *
639 * [IFLA_NUM_VF]
640 * [IFLA_VF_PORTS]
641 * [IFLA_VF_PORT]
642 * [IFLA_PORT_*], ...
643 * [IFLA_VF_PORT]
644 * [IFLA_PORT_*], ...
645 * ...
646 * [IFLA_PORT_SELF]
647 * [IFLA_PORT_*], ...
648 */
649
650 enum {
651 IFLA_VF_PORT_UNSPEC,
652 IFLA_VF_PORT, /* nest */
653 __IFLA_VF_PORT_MAX,
654 };
655
656 #define IFLA_VF_PORT_MAX (__IFLA_VF_PORT_MAX - 1)
657
658 enum {
659 IFLA_PORT_UNSPEC,
660 IFLA_PORT_VF, /* __u32 */
661 IFLA_PORT_PROFILE, /* string */
662 IFLA_PORT_VSI_TYPE, /* 802.1Qbg (pre-)standard VDP */
663 IFLA_PORT_INSTANCE_UUID, /* binary UUID */
664 IFLA_PORT_HOST_UUID, /* binary UUID */
665 IFLA_PORT_REQUEST, /* __u8 */
666 IFLA_PORT_RESPONSE, /* __u16, output only */
667 __IFLA_PORT_MAX,
668 };
669
670 #define IFLA_PORT_MAX (__IFLA_PORT_MAX - 1)
671
672 #define PORT_PROFILE_MAX 40
673 #define PORT_UUID_MAX 16
674 #define PORT_SELF_VF -1
675
676 enum {
677 PORT_REQUEST_PREASSOCIATE = 0,
678 PORT_REQUEST_PREASSOCIATE_RR,
679 PORT_REQUEST_ASSOCIATE,
680 PORT_REQUEST_DISASSOCIATE,
681 };
682
683 enum {
684 PORT_VDP_RESPONSE_SUCCESS = 0,
685 PORT_VDP_RESPONSE_INVALID_FORMAT,
686 PORT_VDP_RESPONSE_INSUFFICIENT_RESOURCES,
687 PORT_VDP_RESPONSE_UNUSED_VTID,
688 PORT_VDP_RESPONSE_VTID_VIOLATION,
689 PORT_VDP_RESPONSE_VTID_VERSION_VIOALTION,
690 PORT_VDP_RESPONSE_OUT_OF_SYNC,
691 /* 0x08-0xFF reserved for future VDP use */
692 PORT_PROFILE_RESPONSE_SUCCESS = 0x100,
693 PORT_PROFILE_RESPONSE_INPROGRESS,
694 PORT_PROFILE_RESPONSE_INVALID,
695 PORT_PROFILE_RESPONSE_BADSTATE,
696 PORT_PROFILE_RESPONSE_INSUFFICIENT_RESOURCES,
697 PORT_PROFILE_RESPONSE_ERROR,
698 };
699
700 struct ifla_port_vsi {
701 __u8 vsi_mgr_id;
702 __u8 vsi_type_id[3];
703 __u8 vsi_type_version;
704 __u8 pad[3];
705 };
706
707
708 /* IPoIB section */
709
710 enum {
711 IFLA_IPOIB_UNSPEC,
712 IFLA_IPOIB_PKEY,
713 IFLA_IPOIB_MODE,
714 IFLA_IPOIB_UMCAST,
715 __IFLA_IPOIB_MAX
716 };
717
718 enum {
719 IPOIB_MODE_DATAGRAM = 0, /* using unreliable datagram QPs */
720 IPOIB_MODE_CONNECTED = 1, /* using connected QPs */
721 };
722
723 #define IFLA_IPOIB_MAX (__IFLA_IPOIB_MAX - 1)
724
725
726 /* HSR section */
727
728 enum {
729 IFLA_HSR_UNSPEC,
730 IFLA_HSR_SLAVE1,
731 IFLA_HSR_SLAVE2,
732 IFLA_HSR_MULTICAST_SPEC, /* Last byte of supervision addr */
733 IFLA_HSR_SUPERVISION_ADDR, /* Supervision frame multicast addr */
734 IFLA_HSR_SEQ_NR,
735 __IFLA_HSR_MAX,
736 };
737
738 #define IFLA_HSR_MAX (__IFLA_HSR_MAX - 1)
739
740 #endif /* _LINUX_IF_LINK_H */