mbox series

[net-next,v2,0/5] Taprio qdisc fixes

Message ID 20190423194424.3155-1-andre.guedes@intel.com
Headers show
Series Taprio qdisc fixes | expand

Message

Andre Guedes April 23, 2019, 7:44 p.m. UTC
Hi all,

I'm re-sending this series, now with the "net-next" prefix in the subject.

The only change from the previous version is in patch 3. As suggested by Cong
Wang, it removes the !entry check within should_restart_cycle() since it is
already checked by the caller. As a side effect, that function becomes a dummy
wrapper on list_is_last() so we simply remove it and call list_is_last()
instead.

Best regards,

Andre

Andre Guedes (5):
  net: sched: taprio: Remove pointless variable assigment
  net: sched: taprio: Refactor taprio_get_start_time()
  net: sched: taprio: Remove should_restart_cycle()
  net: sched: taprio: Fix taprio_peek()
  net: sched: taprio: Fix taprio_dequeue()

 net/sched/sch_taprio.c | 56 +++++++++++++++++++++---------------------
 1 file changed, 28 insertions(+), 28 deletions(-)

Comments

David Miller April 24, 2019, 2:52 a.m. UTC | #1
From: Andre Guedes <andre.guedes@intel.com>
Date: Tue, 23 Apr 2019 12:44:19 -0700

> I'm re-sending this series, now with the "net-next" prefix in the subject.
> 
> The only change from the previous version is in patch 3. As suggested by Cong
> Wang, it removes the !entry check within should_restart_cycle() since it is
> already checked by the caller. As a side effect, that function becomes a dummy
> wrapper on list_is_last() so we simply remove it and call list_is_last()
> instead.

Series applied, thanks.