diff options
author | Phil Sutter <phil@nwl.cc> | 2015-08-18 10:30:38 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-08-18 11:55:06 -0700 |
commit | 4afbc0db720555f1bf0dd9f3e112819041231818 (patch) | |
tree | 9dff27b1bbd1bdb213765a129a70fd1beeb437b9 /net/ieee802154 | |
parent | ccecb2a47ceb0fc59b23b966cd63b5f19315b2a2 (diff) | |
download | linux-4afbc0db720555f1bf0dd9f3e112819041231818.tar.bz2 |
net: 6lowpan: convert to using IFF_NO_QUEUE
Signed-off-by: Phil Sutter <phil@nwl.cc>
Cc: Alexander Aring <alex.aring@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ieee802154')
-rw-r--r-- | net/ieee802154/6lowpan/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ieee802154/6lowpan/core.c b/net/ieee802154/6lowpan/core.c index 27c25ad935b4..953b1c49f5d1 100644 --- a/net/ieee802154/6lowpan/core.c +++ b/net/ieee802154/6lowpan/core.c @@ -90,7 +90,7 @@ static void lowpan_setup(struct net_device *dev) dev->hard_header_len = 2 + 1 + 20 + 14; dev->needed_tailroom = 2; /* FCS */ dev->mtu = IPV6_MIN_MTU; - dev->tx_queue_len = 0; + dev->priv_flags |= IFF_NO_QUEUE; dev->flags = IFF_BROADCAST | IFF_MULTICAST; dev->watchdog_timeo = 0; |