diff options
author | Phil Sutter <phil@nwl.cc> | 2015-08-18 04:30:44 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-08-18 14:55:07 -0400 |
commit | cdf7370391d3a482ef2f2a8c73d16c6db3dbecf0 (patch) | |
tree | a15e1edcbb09fb9e44fe86aedc401dcaa106768d /net/batman-adv/soft-interface.c | |
parent | 3db6da1f07b4ee3c0657973f504a44d38b5c04a1 (diff) |
net: batman-adv: convert to using IFF_NO_QUEUE
Signed-off-by: Phil Sutter <phil@nwl.cc>
Cc: Marek Lindner <mareklindner@neomailbox.ch>
Cc: Simon Wunderlich <sw@simonwunderlich.de>
Cc: Antonio Quartulli <antonio@meshcoding.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/batman-adv/soft-interface.c')
-rw-r--r-- | net/batman-adv/soft-interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/batman-adv/soft-interface.c b/net/batman-adv/soft-interface.c index 51cda3a7c51d..49d3d3aa59cb 100644 --- a/net/batman-adv/soft-interface.c +++ b/net/batman-adv/soft-interface.c | |||
@@ -941,7 +941,7 @@ static void batadv_softif_init_early(struct net_device *dev) | |||
941 | dev->netdev_ops = &batadv_netdev_ops; | 941 | dev->netdev_ops = &batadv_netdev_ops; |
942 | dev->destructor = batadv_softif_free; | 942 | dev->destructor = batadv_softif_free; |
943 | dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER; | 943 | dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER; |
944 | dev->tx_queue_len = 0; | 944 | dev->priv_flags |= IFF_NO_QUEUE; |
945 | 945 | ||
946 | /* can't call min_mtu, because the needed variables | 946 | /* can't call min_mtu, because the needed variables |
947 | * have not been initialized yet | 947 | * have not been initialized yet |