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