mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
[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>
This commit is contained in:
parent
83fa3400eb
commit
fab10fe37a
@ -1393,7 +1393,7 @@ static void mld_sendpack(struct sk_buff *skb)
|
||||
|
||||
static int grec_size(struct ifmcaddr6 *pmc, int type, int gdel, int sdel)
|
||||
{
|
||||
return sizeof(struct mld2_grec) + 4*mld_scount(pmc,type,gdel,sdel);
|
||||
return sizeof(struct mld2_grec) + 16 * mld_scount(pmc,type,gdel,sdel);
|
||||
}
|
||||
|
||||
static struct sk_buff *add_grhead(struct sk_buff *skb, struct ifmcaddr6 *pmc,
|
||||
|
Loading…
Reference in New Issue
Block a user