diff options
author | Patrick McHardy <kaber@trash.net> | 2010-04-13 01:03:21 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-04-13 17:49:33 -0400 |
commit | 862465f2e7e90975e7bf0ecfbb171dd3adedd950 (patch) | |
tree | 281c43f90130cc23eb581c702afaf4ab226dbff5 /include/linux/mroute.h | |
parent | d658f8a0e63b6476148162aa7a3ffffc58dcad52 (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/linux/mroute.h')
-rw-r--r-- | include/linux/mroute.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mroute.h b/include/linux/mroute.h index de7780a6dd32..7ff6c77d6008 100644 --- a/include/linux/mroute.h +++ b/include/linux/mroute.h | |||
@@ -191,7 +191,7 @@ struct vif_device { | |||
191 | #define VIFF_STATIC 0x8000 | 191 | #define VIFF_STATIC 0x8000 |
192 | 192 | ||
193 | struct mfc_cache { | 193 | struct mfc_cache { |
194 | struct mfc_cache *next; /* Next entry on cache line */ | 194 | struct list_head list; |
195 | __be32 mfc_mcastgrp; /* Group the entry belongs to */ | 195 | __be32 mfc_mcastgrp; /* Group the entry belongs to */ |
196 | __be32 mfc_origin; /* Source of packet */ | 196 | __be32 mfc_origin; /* Source of packet */ |
197 | vifi_t mfc_parent; /* Source interface */ | 197 | vifi_t mfc_parent; /* Source interface */ |