diff options
| author | Yan Zheng <yanzheng@21cn.com> | 2005-10-05 15:08:13 -0400 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2005-10-05 15:08:13 -0400 |
| commit | fab10fe37ad8dc4388fc444c89ef5aefe906354f (patch) | |
| tree | cca67691a4a5cf5c08c3baccdceb3197dd2ac9b5 | |
| parent | 83fa3400ebcba307a60909824a251be984eb9567 (diff) | |
[MCAST] ipv6: Fix address size in grec_size
Signed-Off-By: Yan Zheng <yanzheng@21cn.com>
Acked-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Acked-by: David L Stevens <dlstevens@us.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
| -rw-r--r-- | net/ipv6/mcast.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/mcast.c b/net/ipv6/mcast.c index 519899fb11d5..39a96c768102 100644 --- a/net/ipv6/mcast.c +++ b/net/ipv6/mcast.c | |||
| @@ -1393,7 +1393,7 @@ static void mld_sendpack(struct sk_buff *skb) | |||
| 1393 | 1393 | ||
| 1394 | static int grec_size(struct ifmcaddr6 *pmc, int type, int gdel, int sdel) | 1394 | static int grec_size(struct ifmcaddr6 *pmc, int type, int gdel, int sdel) |
| 1395 | { | 1395 | { |
| 1396 | return sizeof(struct mld2_grec) + 4*mld_scount(pmc,type,gdel,sdel); | 1396 | return sizeof(struct mld2_grec) + 16 * mld_scount(pmc,type,gdel,sdel); |
| 1397 | } | 1397 | } |
| 1398 | 1398 | ||
| 1399 | static struct sk_buff *add_grhead(struct sk_buff *skb, struct ifmcaddr6 *pmc, | 1399 | static struct sk_buff *add_grhead(struct sk_buff *skb, struct ifmcaddr6 *pmc, |
