diff options
author | WANG Cong <xiyou.wangcong@gmail.com> | 2015-10-01 14:37:43 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-10-05 09:30:34 -0400 |
commit | 215c90afb9ea633026273d81ac9c9ece2b1acd58 (patch) | |
tree | 50c453e639914a55cd2be9908733dba18b18451e /net/sched | |
parent | 6bd00b850635abb0044e06101761533c8beba79c (diff) |
act_mirred: always release tcf hash
Align with other tc actions.
Cc: Jamal Hadi Salim <jhs@mojatatu.com>
Signed-off-by: Cong Wang <cwang@twopensource.com>
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
Acked-by: Jamal Hadi Salim <jhs@mojatatu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched')
-rw-r--r-- | net/sched/act_mirred.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/sched/act_mirred.c b/net/sched/act_mirred.c index 3e7c51a8ca38..2efaf4ee6040 100644 --- a/net/sched/act_mirred.c +++ b/net/sched/act_mirred.c | |||
@@ -107,10 +107,10 @@ static int tcf_mirred_init(struct net *net, struct nlattr *nla, | |||
107 | } else { | 107 | } else { |
108 | if (bind) | 108 | if (bind) |
109 | return 0; | 109 | return 0; |
110 | if (!ovr) { | 110 | |
111 | tcf_hash_release(a, bind); | 111 | tcf_hash_release(a, bind); |
112 | if (!ovr) | ||
112 | return -EEXIST; | 113 | return -EEXIST; |
113 | } | ||
114 | } | 114 | } |
115 | m = to_mirred(a); | 115 | m = to_mirred(a); |
116 | 116 | ||