diff options
author | Geliang Tang <geliangtang@gmail.com> | 2017-03-24 22:14:36 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-03-24 14:42:52 -0700 |
commit | 3b1af93cf193ca4a94df5f01f480a9d820a194bb (patch) | |
tree | 45d13f8322a623acdebc49ca5c060867fae67a82 /net | |
parent | ff41c7fa64854cc95a472d43af82c17c043aa757 (diff) | |
download | linux-3b1af93cf193ca4a94df5f01f480a9d820a194bb.tar.gz linux-3b1af93cf193ca4a94df5f01f480a9d820a194bb.tar.bz2 linux-3b1af93cf193ca4a94df5f01f480a9d820a194bb.zip |
net_sched: use setup_deferrable_timer
Use setup_deferrable_timer() instead of init_timer_deferrable() to
simplify the code.
Signed-off-by: Geliang Tang <geliangtang@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/sched/cls_flow.c | 5 | ||||
-rw-r--r-- | net/sched/sch_sfq.c | 5 |
2 files changed, 4 insertions, 6 deletions
diff --git a/net/sched/cls_flow.c b/net/sched/cls_flow.c index 3d6b9286c203..ca193af8634a 100644 --- a/net/sched/cls_flow.c +++ b/net/sched/cls_flow.c @@ -508,9 +508,8 @@ static int flow_change(struct net *net, struct sk_buff *in_skb, get_random_bytes(&fnew->hashrnd, 4); } - fnew->perturb_timer.function = flow_perturbation; - fnew->perturb_timer.data = (unsigned long)fnew; - init_timer_deferrable(&fnew->perturb_timer); + setup_deferrable_timer(&fnew->perturb_timer, flow_perturbation, + (unsigned long)fnew); tcf_exts_change(tp, &fnew->exts, &e); tcf_em_tree_change(tp, &fnew->ematches, &t); diff --git a/net/sched/sch_sfq.c b/net/sched/sch_sfq.c index 42e8c8615e65..b00e02c139de 100644 --- a/net/sched/sch_sfq.c +++ b/net/sched/sch_sfq.c @@ -714,9 +714,8 @@ static int sfq_init(struct Qdisc *sch, struct nlattr *opt) struct sfq_sched_data *q = qdisc_priv(sch); int i; - q->perturb_timer.function = sfq_perturbation; - q->perturb_timer.data = (unsigned long)sch; - init_timer_deferrable(&q->perturb_timer); + setup_deferrable_timer(&q->perturb_timer, sfq_perturbation, + (unsigned long)sch); for (i = 0; i < SFQ_MAX_DEPTH + 1; i++) { q->dep[i].next = i + SFQ_MAX_FLOWS; |