diff options
author | David S. Miller <davem@davemloft.net> | 2012-07-05 22:13:13 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-07-05 22:13:13 -0700 |
commit | f4530fa574df4d833506c53697ed1daa0d390bf4 (patch) | |
tree | 2a19ff4c8410d5aee18a78cddaeb765ed9aa95d6 /include/net/netns | |
parent | 700db99d0140e9da2a31e08ebd3e1b121691aa26 (diff) | |
download | blackbird-op-linux-f4530fa574df4d833506c53697ed1daa0d390bf4.tar.gz blackbird-op-linux-f4530fa574df4d833506c53697ed1daa0d390bf4.zip |
ipv4: Avoid overhead when no custom FIB rules are installed.
If the user hasn't actually installed any custom rules, or fiddled
with the default ones, don't go through the whole FIB rules layer.
It's just pure overhead.
Instead do what we do with CONFIG_IP_MULTIPLE_TABLES disabled, check
the individual tables by hand, one by one.
Also, move fib_num_tclassid_users into the ipv4 network namespace.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/netns')
-rw-r--r-- | include/net/netns/ipv4.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/net/netns/ipv4.h b/include/net/netns/ipv4.h index 227f0cd9d3f6..599e48fa97cb 100644 --- a/include/net/netns/ipv4.h +++ b/include/net/netns/ipv4.h @@ -11,6 +11,7 @@ struct ctl_table_header; struct ipv4_devconf; struct fib_rules_ops; struct hlist_head; +struct fib_table; struct sock; struct netns_ipv4 { @@ -24,6 +25,13 @@ struct netns_ipv4 { struct ipv4_devconf *devconf_dflt; #ifdef CONFIG_IP_MULTIPLE_TABLES struct fib_rules_ops *rules_ops; + bool fib_has_custom_rules; + struct fib_table *fib_local; + struct fib_table *fib_main; + struct fib_table *fib_default; +#endif +#ifdef CONFIG_IP_ROUTE_CLASSID + int fib_num_tclassid_users; #endif struct hlist_head *fib_table_hash; struct sock *fibnl; |