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/linux/mroute6.h | |
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/linux/mroute6.h')
-rw-r--r-- | include/linux/mroute6.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mroute6.h b/include/linux/mroute6.h index 04e2e54..94a0cb5 100644 --- a/include/linux/mroute6.h +++ b/include/linux/mroute6.h @@ -182,7 +182,7 @@ struct mif_device { #define VIFF_STATIC 0x8000 struct mfc6_cache { - struct mfc6_cache *next; /* Next entry on cache line */ + struct list_head list; struct in6_addr mf6c_mcastgrp; /* Group the entry belongs to */ struct in6_addr mf6c_origin; /* Source of packet */ mifi_t mf6c_parent; /* Source interface */ |