diff options
author | Luis de Bethencourt <luisbg@osg.samsung.com> | 2016-03-21 23:58:28 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-03-22 05:56:38 +0300 |
commit | 6d0e24cd07f7e97015d958299fda535e459d2c99 (patch) | |
tree | 1a1e410119532dfc4f59e812e0589c36dc887fe0 /include | |
parent | 537377d3b766b18b9fca41628d1a9cef690b69fe (diff) | |
download | linux-6d0e24cd07f7e97015d958299fda535e459d2c99.tar.xz |
net: add missing descriptions in net_device_priv_flags
The flags IFF_XMIT_DST_RELEASE_PERM, IFF_IPVLAN_MASTER and
IFF_IPVLAN_SLAVE are missing descriptions for the Documentation. Adding
them.
Signed-off-by: Luis de Bethencourt <luisbg@osg.samsung.com>
Suggested-by: Benjamin Poirier <benjamin.poirier@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/netdevice.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index f9eebd518545..fd07734fb277 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -1320,6 +1320,10 @@ struct net_device_ops { * @IFF_LIVE_ADDR_CHANGE: device supports hardware address * change when it's running * @IFF_MACVLAN: Macvlan device + * @IFF_XMIT_DST_RELEASE_PERM: IFF_XMIT_DST_RELEASE not taking into account + * underlying stacked devices + * @IFF_IPVLAN_MASTER: IPvlan master device + * @IFF_IPVLAN_SLAVE: IPvlan slave device * @IFF_L3MDEV_MASTER: device is an L3 master device * @IFF_NO_QUEUE: device can run without qdisc attached * @IFF_OPENVSWITCH: device is a Open vSwitch master |