Commit 3ed37a6f authored by Joe Perches's avatar Joe Perches Committed by David S. Miller

net/ipv4/igmp.c: Remove unnecessary kmalloc casts

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 589be650
...@@ -1646,8 +1646,7 @@ static int sf_setstate(struct ip_mc_list *pmc) ...@@ -1646,8 +1646,7 @@ static int sf_setstate(struct ip_mc_list *pmc)
if (dpsf->sf_inaddr == psf->sf_inaddr) if (dpsf->sf_inaddr == psf->sf_inaddr)
break; break;
if (!dpsf) { if (!dpsf) {
dpsf = (struct ip_sf_list *) dpsf = kmalloc(sizeof(*dpsf), GFP_ATOMIC);
kmalloc(sizeof(*dpsf), GFP_ATOMIC);
if (!dpsf) if (!dpsf)
continue; continue;
*dpsf = *psf; *dpsf = *psf;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment