From: Julio Faracco Date: Tue, 1 Oct 2019 14:39:04 +0000 (-0300) Subject: net: core: dev: replace state xoff flag comparison by netif_xmit_stopped method X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=5be5515a8ea198de6eb204a0ff25faf98b8ff719;p=linux.git net: core: dev: replace state xoff flag comparison by netif_xmit_stopped method Function netif_schedule_queue() has a hardcoded comparison between queue state and any xoff flag. This comparison does the same thing as method netif_xmit_stopped(). In terms of code clarity, it is better. See other methods like: generic_xdp_tx() and dev_direct_xmit(). Signed-off-by: Julio Faracco Signed-off-by: David S. Miller --- diff --git a/net/core/dev.c b/net/core/dev.c index bf3ed413abafe..21a9c2987cbba 100644 --- a/net/core/dev.c +++ b/net/core/dev.c @@ -2771,7 +2771,7 @@ static struct dev_kfree_skb_cb *get_kfree_skb_cb(const struct sk_buff *skb) void netif_schedule_queue(struct netdev_queue *txq) { rcu_read_lock(); - if (!(txq->state & QUEUE_STATE_ANY_XOFF)) { + if (!netif_xmit_stopped(txq)) { struct Qdisc *q = rcu_dereference(txq->qdisc); __netif_schedule(q);