Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 79286
b: refs/heads/master
c: d3e9948
h: refs/heads/master
v: v3
  • Loading branch information
Stephen Hemminger authored and David S. Miller committed Jan 28, 2008
1 parent 831e707 commit 395b3b0
Show file tree
Hide file tree
Showing 2 changed files with 4 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: 51314a17baabc710e5fb12975fe8983dedd5ac0d
refs/heads/master: d3e994830d35159320d0a98c36aa580410c29609
4 changes: 3 additions & 1 deletion trunk/net/sched/sch_sfq.c
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,9 @@ static int sfq_init(struct Qdisc *sch, struct rtattr *opt)
struct sfq_sched_data *q = qdisc_priv(sch);
int i;

setup_timer(&q->perturb_timer, sfq_perturbation, (unsigned long)sch);
q->perturb_timer.function = sfq_perturbation;
q->perturb_timer.data = (unsigned long)sch;;
init_timer_deferrable(&q->perturb_timer);

for (i=0; i<SFQ_HASH_DIVISOR; i++)
q->ht[i] = SFQ_DEPTH;
Expand Down

0 comments on commit 395b3b0

Please sign in to comment.