Thread (6 messages) flat view 6 messages, 4 authors, 2018-05-29

Re: [PATCH net] net: sched: check netif_xmit_frozen_or_stopped() in sch_direct_xmit()

From: Song Liu <hidden>
Date: 2018-05-29 16:51:24

On May 29, 2018, at 7:02 AM, David Miller [off-list ref] wrote:

From: Song Liu <redacted>
Date: Fri, 25 May 2018 11:11:44 -0700
quoted
Summary:

At the end of sch_direct_xmit(), we are in the else path of
!dev_xmit_complete(ret), which means ret == NETDEV_TX_OK. The following
condition will always fail and netif_xmit_frozen_or_stopped() is not
checked at all.

   if (ret && netif_xmit_frozen_or_stopped(txq))
        return false;

In this patch, this condition is fixed as:

   if (netif_xmit_frozen_or_stopped(txq))
        return false;

and further simplifies the code as:

   return !netif_xmit_frozen_or_stopped(txq);

Fixes: 29b86cdac00a ("net: sched: remove remaining uses for qdisc_qlen in xmit path")
Cc: John Fastabend <john.fastabend@gmail.com>
Cc: David S. Miller <davem@davemloft.net>
Signed-off-by: Song Liu <redacted>
I expect a new version of this patch which removes the test entirely.
The new version of it is here: http://patchwork.ozlabs.org/patch/921708/

Thanks,
Song
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help