aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/fib_frontend.c
diff options
context:
space:
mode:
authorAlexander Duyck <alexander.h.duyck@redhat.com>2014-12-31 10:55:29 -0800
committerDavid S. Miller <davem@davemloft.net>2014-12-31 18:25:53 -0500
commit8274a97aa4c694ad0d7b31b283a89dcca140e62b (patch)
treee97afff8ea3e1e16e99d8cefe98b373e886534f0 /net/ipv4/fib_frontend.c
parentgre: allow live address change (diff)
downloadlinux-dev-8274a97aa4c694ad0d7b31b283a89dcca140e62b.tar.xz
linux-dev-8274a97aa4c694ad0d7b31b283a89dcca140e62b.zip
fib_trie: Update usage stats to be percpu instead of global variables
The trie usage stats were currently being shared by all threads that were calling fib_table_lookup. As a result when multiple threads were performing lookups simultaneously the trie would begin to cache bounce between those threads. In order to prevent this I have updated the usage stats to use a set of percpu variables. By doing this we should be able to avoid the cache bouncing and still make use of these stats. Signed-off-by: Alexander Duyck <alexander.h.duyck@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--net/ipv4/fib_frontend.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/fib_frontend.c b/net/ipv4/fib_frontend.c
index 23104a3f2924..66890209208f 100644
--- a/net/ipv4/fib_frontend.c
+++ b/net/ipv4/fib_frontend.c
@@ -67,7 +67,7 @@ static int __net_init fib4_rules_init(struct net *net)
return 0;
fail:
- kfree(local_table);
+ fib_free_table(local_table);
return -ENOMEM;
}
#else