blob: 85a3239c8096c6ee0d2b8154db468b46efe1e590 [file] [log] [blame]
Ben Cheng655a7c02013-10-16 16:09:24 -07001/****************************************************************************
2 ****************************************************************************
3 ***
4 *** This header was automatically generated from a Linux kernel header
5 *** of the same name, to make information necessary for userspace to
6 *** call into the kernel available to libc. It contains only constants,
7 *** structures, and macros generated from the original header, and thus,
8 *** contains no copyrightable information.
9 ***
10 *** To edit the content of this header, modify the corresponding
11 *** source file (e.g. under external/kernel-headers/original/) then
12 *** run bionic/libc/kernel/tools/update_all.py
13 ***
14 *** Any manual change here will be lost the next time this script will
15 *** be run. You've been warned!
16 ***
17 ****************************************************************************
18 ****************************************************************************/
19#ifndef _UAPI_LINUX_IF_VLAN_H_
20#define _UAPI_LINUX_IF_VLAN_H_
21enum vlan_ioctl_cmds {
Tao Baod7db5942015-01-28 10:07:51 -080022 ADD_VLAN_CMD,
Ben Cheng655a7c02013-10-16 16:09:24 -070023/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -080024 DEL_VLAN_CMD,
25 SET_VLAN_INGRESS_PRIORITY_CMD,
26 SET_VLAN_EGRESS_PRIORITY_CMD,
27 GET_VLAN_INGRESS_PRIORITY_CMD,
Ben Cheng655a7c02013-10-16 16:09:24 -070028/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -080029 GET_VLAN_EGRESS_PRIORITY_CMD,
30 SET_VLAN_NAME_TYPE_CMD,
31 SET_VLAN_FLAG_CMD,
32 GET_VLAN_REALDEV_NAME_CMD,
Ben Cheng655a7c02013-10-16 16:09:24 -070033/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -080034 GET_VLAN_VID_CMD
Ben Cheng655a7c02013-10-16 16:09:24 -070035};
36enum vlan_flags {
Tao Baod7db5942015-01-28 10:07:51 -080037 VLAN_FLAG_REORDER_HDR = 0x1,
Ben Cheng655a7c02013-10-16 16:09:24 -070038/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -080039 VLAN_FLAG_GVRP = 0x2,
40 VLAN_FLAG_LOOSE_BINDING = 0x4,
41 VLAN_FLAG_MVRP = 0x8,
Ben Cheng655a7c02013-10-16 16:09:24 -070042};
43/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
44enum vlan_name_types {
Tao Baod7db5942015-01-28 10:07:51 -080045 VLAN_NAME_TYPE_PLUS_VID,
46 VLAN_NAME_TYPE_RAW_PLUS_VID,
47 VLAN_NAME_TYPE_PLUS_VID_NO_PAD,
Ben Cheng655a7c02013-10-16 16:09:24 -070048/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -080049 VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD,
50 VLAN_NAME_TYPE_HIGHEST
Ben Cheng655a7c02013-10-16 16:09:24 -070051};
52struct vlan_ioctl_args {
53/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -080054 int cmd;
55 char device1[24];
56 union {
57 char device2[24];
Ben Cheng655a7c02013-10-16 16:09:24 -070058/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -080059 int VID;
60 unsigned int skb_priority;
61 unsigned int name_type;
62 unsigned int bind_type;
Ben Cheng655a7c02013-10-16 16:09:24 -070063/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -080064 unsigned int flag;
65 } u;
66 short vlan_qos;
Ben Cheng655a7c02013-10-16 16:09:24 -070067};
68/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
69#endif