diff options
author | Patrick McHardy <kaber@trash.net> | 2010-05-11 14:40:51 +0200 |
---|---|---|
committer | Patrick McHardy <kaber@trash.net> | 2010-05-11 14:40:51 +0200 |
commit | f30a77842129b5656360cc1f5db48a3fcfb64528 (patch) | |
tree | 3a01eac73fd0e86d3c7a976ab6bccca9878cd35c /include/net | |
parent | b5aa30b19121de49021fba57aa1f6e4c787fcf67 (diff) | |
download | op-kernel-dev-f30a77842129b5656360cc1f5db48a3fcfb64528.zip op-kernel-dev-f30a77842129b5656360cc1f5db48a3fcfb64528.tar.gz |
ipv6: ip6mr: convert struct mfc_cache to struct list_head
Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/netns/ipv6.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/netns/ipv6.h b/include/net/netns/ipv6.h index 43d842a..9cb3b5f 100644 --- a/include/net/netns/ipv6.h +++ b/include/net/netns/ipv6.h @@ -61,8 +61,8 @@ struct netns_ipv6 { #ifdef CONFIG_IPV6_MROUTE struct sock *mroute6_sk; struct timer_list ipmr_expire_timer; - struct mfc6_cache *mfc6_unres_queue; - struct mfc6_cache **mfc6_cache_array; + struct list_head mfc6_unres_queue; + struct list_head *mfc6_cache_array; struct mif_device *vif6_table; int maxvif; atomic_t cache_resolve_queue_len; |