From: Luiz Augusto von Dentz Date: Tue, 11 Apr 2017 19:20:58 +0000 (+0300) Subject: 6lowpan: Don't set IFF_NO_QUEUE X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=24dcbf662205;p=linux.git 6lowpan: Don't set IFF_NO_QUEUE There is no point in setting IFF_NO_QUEUE should already have taken care of setting it if tx_queue_len is not set, in fact this may actually disable queue for interfaces that require it and do set tx_queue_len. Signed-off-by: Luiz Augusto von Dentz Acked-by: Jukka Rissanen Signed-off-by: Marcel Holtmann --- diff --git a/net/6lowpan/core.c b/net/6lowpan/core.c index 5f9909a2b58c8..40d3d72beb538 100644 --- a/net/6lowpan/core.c +++ b/net/6lowpan/core.c @@ -35,7 +35,6 @@ int lowpan_register_netdevice(struct net_device *dev, dev->type = ARPHRD_6LOWPAN; dev->mtu = IPV6_MIN_MTU; - dev->priv_flags |= IFF_NO_QUEUE; lowpan_dev(dev)->lltype = lltype;