net-sched: Fix actions referencing When an action is added several times with the same exact index it gets deleted on every even-numbered attempt. This fixes that issue. Signed-off-by: Jamal Hadi Salim --- commit 82ca26fa474171326de9851a2f547c490f8e7276 tree 04ebfd9dcb15d463a0e49740940f0c8e86916a25 parent bb7564f1e081c18dae905c8fc871269f4a81ba99 author Jamal Hadi Salim Thu, 07 Aug 2008 05:37:51 -0400 committer Jamal Hadi Salim Thu, 07 Aug 2008 05:37:51 -0400 net/sched/act_api.c | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/net/sched/act_api.c b/net/sched/act_api.c index d308c19..26c7e1f 100644 --- a/net/sched/act_api.c +++ b/net/sched/act_api.c @@ -205,10 +205,9 @@ struct tcf_common *tcf_hash_check(u32 index, struct tc_action *a, int bind, { struct tcf_common *p = NULL; if (index && (p = tcf_hash_lookup(index, hinfo)) != NULL) { - if (bind) { + if (bind) p->tcfc_bindcnt++; - p->tcfc_refcnt++; - } + p->tcfc_refcnt++; a->priv = p; } return p;