Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 1 | /**************************************************************************** |
| 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_ |
| 21 | enum vlan_ioctl_cmds { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 22 | ADD_VLAN_CMD, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 23 | DEL_VLAN_CMD, |
| 24 | SET_VLAN_INGRESS_PRIORITY_CMD, |
| 25 | SET_VLAN_EGRESS_PRIORITY_CMD, |
| 26 | GET_VLAN_INGRESS_PRIORITY_CMD, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 27 | GET_VLAN_EGRESS_PRIORITY_CMD, |
| 28 | SET_VLAN_NAME_TYPE_CMD, |
| 29 | SET_VLAN_FLAG_CMD, |
| 30 | GET_VLAN_REALDEV_NAME_CMD, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 31 | GET_VLAN_VID_CMD |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 32 | }; |
| 33 | enum vlan_flags { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 34 | VLAN_FLAG_REORDER_HDR = 0x1, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 35 | VLAN_FLAG_GVRP = 0x2, |
| 36 | VLAN_FLAG_LOOSE_BINDING = 0x4, |
| 37 | VLAN_FLAG_MVRP = 0x8, |
Christopher Ferris | aeddbcf | 2019-07-08 12:45:46 -0700 | [diff] [blame] | 38 | VLAN_FLAG_BRIDGE_BINDING = 0x10, |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 39 | }; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 40 | enum vlan_name_types { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 41 | VLAN_NAME_TYPE_PLUS_VID, |
| 42 | VLAN_NAME_TYPE_RAW_PLUS_VID, |
| 43 | VLAN_NAME_TYPE_PLUS_VID_NO_PAD, |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 44 | VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD, |
| 45 | VLAN_NAME_TYPE_HIGHEST |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 46 | }; |
| 47 | struct vlan_ioctl_args { |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 48 | int cmd; |
| 49 | char device1[24]; |
| 50 | union { |
| 51 | char device2[24]; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 52 | int VID; |
| 53 | unsigned int skb_priority; |
| 54 | unsigned int name_type; |
| 55 | unsigned int bind_type; |
Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 56 | unsigned int flag; |
| 57 | } u; |
| 58 | short vlan_qos; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 59 | }; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 60 | #endif |