mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 14:42:24 +00:00
pkt_sched: sch_qfq: do not allow virtual time to jump if an aggregate is in service
By definition of (the algorithm of) QFQ+, the system virtual time must be pushed up only if there is no 'eligible' aggregate, i.e. no aggregate that would have started to be served also in the ideal system emulated by QFQ+. QFQ+ serves only eligible aggregates, hence the aggregate currently in service is eligible. As a consequence, to decide whether there is no eligible aggregate, QFQ+ must also check whether there is no aggregate in service. Signed-off-by: Paolo Valente <paolo.valente@unimore.it> Reviewed-by: Fabio Checconi <fchecconi@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
a0143efa96
commit
40dd2d5461
@ -1279,7 +1279,8 @@ static void qfq_schedule_agg(struct qfq_sched *q, struct qfq_aggregate *agg)
|
||||
/* group was surely ineligible, remove */
|
||||
__clear_bit(grp->index, &q->bitmaps[IR]);
|
||||
__clear_bit(grp->index, &q->bitmaps[IB]);
|
||||
} else if (!q->bitmaps[ER] && qfq_gt(roundedS, q->V))
|
||||
} else if (!q->bitmaps[ER] && qfq_gt(roundedS, q->V) &&
|
||||
q->in_serv_agg == NULL)
|
||||
q->V = roundedS;
|
||||
|
||||
grp->S = roundedS;
|
||||
|
Loading…
Reference in New Issue
Block a user