aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/netns
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2010-04-13 01:03:21 -0400
committerDavid S. Miller <davem@davemloft.net>2010-04-13 17:49:33 -0400
commit862465f2e7e90975e7bf0ecfbb171dd3adedd950 (patch)
tree281c43f90130cc23eb581c702afaf4ab226dbff5 /include/net/netns
parentd658f8a0e63b6476148162aa7a3ffffc58dcad52 (diff)
ipv4: ipmr: convert struct mfc_cache to struct list_head
Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/netns')
-rw-r--r--include/net/netns/ipv4.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/netns/ipv4.h b/include/net/netns/ipv4.h
index b15e518f952a..5d06429968d5 100644
--- a/include/net/netns/ipv4.h
+++ b/include/net/netns/ipv4.h
@@ -61,8 +61,8 @@ struct netns_ipv4 {
61#ifdef CONFIG_IP_MROUTE 61#ifdef CONFIG_IP_MROUTE
62 struct sock *mroute_sk; 62 struct sock *mroute_sk;
63 struct timer_list ipmr_expire_timer; 63 struct timer_list ipmr_expire_timer;
64 struct mfc_cache *mfc_unres_queue; 64 struct list_head mfc_unres_queue;
65 struct mfc_cache **mfc_cache_array; 65 struct list_head *mfc_cache_array;
66 struct vif_device *vif_table; 66 struct vif_device *vif_table;
67 int maxvif; 67 int maxvif;
68 atomic_t cache_resolve_queue_len; 68 atomic_t cache_resolve_queue_len;