vlan: Use new bridge ioctl()
Legacy ioctl() through SIOCDEVPRIVATE are deprecated. Follow the approach taken by bridge-utils and make use of new bridge ioctl's whenever possible. For example, using legacy ioctl() breaks dynamic VLAN mode on 32-bit Linux systems running 64-bit kernels. Signed-off-by: Sergey Matyukevich <sergey.matyukevich.os@quantenna.com>
This commit is contained in:
parent
cc58a35735
commit
fb60dbdcec
3 changed files with 50 additions and 15 deletions
|
@ -9,6 +9,21 @@
|
|||
#ifndef LINUX_BRIDGE_H
|
||||
#define LINUX_BRIDGE_H
|
||||
|
||||
/* This ioctl is defined in linux/sockios.h */
|
||||
|
||||
#ifndef SIOCBRADDBR
|
||||
#define SIOCBRADDBR 0x89a0
|
||||
#endif
|
||||
#ifndef SIOCBRDELBR
|
||||
#define SIOCBRDELBR 0x89a1
|
||||
#endif
|
||||
#ifndef SIOCBRADDIF
|
||||
#define SIOCBRADDIF 0x89a2
|
||||
#endif
|
||||
#ifndef SIOCBRDELIF
|
||||
#define SIOCBRDELIF 0x89a3
|
||||
#endif
|
||||
|
||||
/* This interface is defined in linux/if_bridge.h */
|
||||
|
||||
#define BRCTL_GET_VERSION 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue