diff options
| author | Yan, Zheng <zheng.z.yan@intel.com> | 2011-10-17 11:20:28 -0400 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2011-10-19 19:17:41 -0400 |
| commit | afaef734e5f0004916d07ecf7d86292cdd00d59b (patch) | |
| tree | 9ea614b4a5d7457f56fe0b776aef70f3a137cd79 /net | |
| parent | 1b23a3e3d1b969e285c57a2d38f3739283ecfb80 (diff) | |
fib_rules: fix unresolved_rules counting
we should decrease ops->unresolved_rules when deleting a unresolved rule.
Signed-off-by: Zheng Yan <zheng.z.yan@intel.com>
Acked-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
| -rw-r--r-- | net/core/fib_rules.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/net/core/fib_rules.c b/net/core/fib_rules.c index 3231b468bb72..27071ee2a4e1 100644 --- a/net/core/fib_rules.c +++ b/net/core/fib_rules.c | |||
| @@ -475,8 +475,11 @@ static int fib_nl_delrule(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg) | |||
| 475 | 475 | ||
| 476 | list_del_rcu(&rule->list); | 476 | list_del_rcu(&rule->list); |
| 477 | 477 | ||
| 478 | if (rule->action == FR_ACT_GOTO) | 478 | if (rule->action == FR_ACT_GOTO) { |
| 479 | ops->nr_goto_rules--; | 479 | ops->nr_goto_rules--; |
| 480 | if (rtnl_dereference(rule->ctarget) == NULL) | ||
| 481 | ops->unresolved_rules--; | ||
| 482 | } | ||
| 480 | 483 | ||
| 481 | /* | 484 | /* |
| 482 | * Check if this rule is a target to any of them. If so, | 485 | * Check if this rule is a target to any of them. If so, |
