Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 323083
b: refs/heads/master
c: 7126195
h: refs/heads/master
i:
  323081: 6bf17af
  323079: 55cfd48
v: v3
  • Loading branch information
Paolo Valente authored and David S. Miller committed Sep 19, 2012
1 parent d497967 commit 68d7134
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 15c041759bfcd9ab0a4e43f1c16e2644977d0467
refs/heads/master: 71261956973ba9e0637848a5adb4a5819b4bae83
5 changes: 4 additions & 1 deletion trunk/net/sched/sch_qfq.c
Original file line number Diff line number Diff line change
Expand Up @@ -865,7 +865,10 @@ static void qfq_update_start(struct qfq_sched *q, struct qfq_class *cl)
if (mask) {
struct qfq_group *next = qfq_ffs(q, mask);
if (qfq_gt(roundedF, next->F)) {
cl->S = next->F;
if (qfq_gt(limit, next->F))
cl->S = next->F;
else /* preserve timestamp correctness */
cl->S = limit;
return;
}
}
Expand Down

0 comments on commit 68d7134

Please sign in to comment.