aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/netdevice.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index f7a6ef2fae3a..d131755516ca 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -1262,6 +1262,7 @@ struct net_device_ops {
1262 * @IFF_LIVE_ADDR_CHANGE: device supports hardware address 1262 * @IFF_LIVE_ADDR_CHANGE: device supports hardware address
1263 * change when it's running 1263 * change when it's running
1264 * @IFF_MACVLAN: Macvlan device 1264 * @IFF_MACVLAN: Macvlan device
1265 * @IFF_NO_QUEUE: device can run without qdisc attached
1265 */ 1266 */
1266enum netdev_priv_flags { 1267enum netdev_priv_flags {
1267 IFF_802_1Q_VLAN = 1<<0, 1268 IFF_802_1Q_VLAN = 1<<0,
@@ -1290,6 +1291,7 @@ enum netdev_priv_flags {
1290 IFF_IPVLAN_MASTER = 1<<23, 1291 IFF_IPVLAN_MASTER = 1<<23,
1291 IFF_IPVLAN_SLAVE = 1<<24, 1292 IFF_IPVLAN_SLAVE = 1<<24,
1292 IFF_VRF_MASTER = 1<<25, 1293 IFF_VRF_MASTER = 1<<25,
1294 IFF_NO_QUEUE = 1<<26,
1293}; 1295};
1294 1296
1295#define IFF_802_1Q_VLAN IFF_802_1Q_VLAN 1297#define IFF_802_1Q_VLAN IFF_802_1Q_VLAN
@@ -1318,6 +1320,7 @@ enum netdev_priv_flags {
1318#define IFF_IPVLAN_MASTER IFF_IPVLAN_MASTER 1320#define IFF_IPVLAN_MASTER IFF_IPVLAN_MASTER
1319#define IFF_IPVLAN_SLAVE IFF_IPVLAN_SLAVE 1321#define IFF_IPVLAN_SLAVE IFF_IPVLAN_SLAVE
1320#define IFF_VRF_MASTER IFF_VRF_MASTER 1322#define IFF_VRF_MASTER IFF_VRF_MASTER
1323#define IFF_NO_QUEUE IFF_NO_QUEUE
1321 1324
1322/** 1325/**
1323 * struct net_device - The DEVICE structure. 1326 * struct net_device - The DEVICE structure.