mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-10 07:50:04 +00:00
net: sched: taprio: Fix taprio_dequeue()
In case we don't have 'guard' or 'budget' to transmit the skb, we should continue traversing the qdisc list since the remaining guard/budget might be enough to transmit a skb from other children qdiscs. Fixes: 5a781ccbd19e (“tc: Add support for configuring the taprio scheduler”) Signed-off-by: Andre Guedes <andre.guedes@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
2684d1b75f
commit
6e734c82be
@ -188,12 +188,12 @@ static struct sk_buff *taprio_dequeue(struct Qdisc *sch)
|
|||||||
*/
|
*/
|
||||||
if (gate_mask != TAPRIO_ALL_GATES_OPEN &&
|
if (gate_mask != TAPRIO_ALL_GATES_OPEN &&
|
||||||
ktime_after(guard, entry->close_time))
|
ktime_after(guard, entry->close_time))
|
||||||
return NULL;
|
continue;
|
||||||
|
|
||||||
/* ... and no budget. */
|
/* ... and no budget. */
|
||||||
if (gate_mask != TAPRIO_ALL_GATES_OPEN &&
|
if (gate_mask != TAPRIO_ALL_GATES_OPEN &&
|
||||||
atomic_sub_return(len, &entry->budget) < 0)
|
atomic_sub_return(len, &entry->budget) < 0)
|
||||||
return NULL;
|
continue;
|
||||||
|
|
||||||
skb = child->ops->dequeue(child);
|
skb = child->ops->dequeue(child);
|
||||||
if (unlikely(!skb))
|
if (unlikely(!skb))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user