diff options
author | WANG Cong <xiyou.wangcong@gmail.com> | 2014-09-25 13:26:37 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-09-28 17:29:01 -0400 |
commit | 18d0264f630e200772bf236ac5747c47e908501e (patch) | |
tree | 1881985374a2411bf9262e1e5977c8f4efd39849 /net/sched/cls_fw.c | |
parent | 5804283d7cb1da46485950d545dd7869137dcda5 (diff) |
net_sched: remove the first parameter from tcf_exts_destroy()
Cc: Jamal Hadi Salim <jhs@mojatatu.com>
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
Acked-by: Jamal Hadi Salim <hadi@mojatatu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/cls_fw.c')
-rw-r--r-- | net/sched/cls_fw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/sched/cls_fw.c b/net/sched/cls_fw.c index 2650285620ee..da805aeeb65c 100644 --- a/net/sched/cls_fw.c +++ b/net/sched/cls_fw.c | |||
@@ -126,7 +126,7 @@ static void fw_delete_filter(struct rcu_head *head) | |||
126 | struct tcf_proto *tp = f->tp; | 126 | struct tcf_proto *tp = f->tp; |
127 | 127 | ||
128 | tcf_unbind_filter(tp, &f->res); | 128 | tcf_unbind_filter(tp, &f->res); |
129 | tcf_exts_destroy(tp, &f->exts); | 129 | tcf_exts_destroy(&f->exts); |
130 | kfree(f); | 130 | kfree(f); |
131 | } | 131 | } |
132 | 132 | ||
@@ -223,7 +223,7 @@ fw_change_attrs(struct net *net, struct tcf_proto *tp, struct fw_filter *f, | |||
223 | 223 | ||
224 | return 0; | 224 | return 0; |
225 | errout: | 225 | errout: |
226 | tcf_exts_destroy(tp, &e); | 226 | tcf_exts_destroy(&e); |
227 | return err; | 227 | return err; |
228 | } | 228 | } |
229 | 229 | ||