aboutsummaryrefslogtreecommitdiffstats
path: root/include/net
diff options
context:
space:
mode:
authorStephen Hemminger <shemminger@vyatta.com>2008-07-22 14:33:45 -0700
committerDavid S. Miller <davem@davemloft.net>2008-07-22 14:33:45 -0700
commit417f28bb340725544c36b35465444d2fd57232b8 (patch)
tree8a38097b4ea34a2877ecfdb95f37ad2864f5754d /include/net
parentipv6: make struct ipv6_devconf static (diff)
downloadlinux-dev-417f28bb340725544c36b35465444d2fd57232b8.tar.xz
linux-dev-417f28bb340725544c36b35465444d2fd57232b8.zip
netns: dont alloc ipv6 fib timer list
FIB timer list is a trivial size structure, avoid indirection and just put it in existing ns. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r--include/net/netns/ipv6.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/netns/ipv6.h b/include/net/netns/ipv6.h
index 5bacd838e88b..2932721180c0 100644
--- a/include/net/netns/ipv6.h
+++ b/include/net/netns/ipv6.h
@@ -39,7 +39,7 @@ struct netns_ipv6 {
#endif
struct rt6_info *ip6_null_entry;
struct rt6_statistics *rt6_stats;
- struct timer_list *ip6_fib_timer;
+ struct timer_list ip6_fib_timer;
struct hlist_head *fib_table_hash;
struct fib6_table *fib6_main_tbl;
struct dst_ops *ip6_dst_ops;