Skip to content

Commit 0db355d

Browse files
edumazetdavem330
authored andcommitted
ipv4/igmp: shrink struct ip_sf_list
Removing two 4 bytes holes allows to use kmalloc-32 kmem cache instead of kmalloc-64 on 64bit kernels. Signed-off-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent fc65100 commit 0db355d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/linux/igmp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ struct ip_mc_socklist {
6565

6666
struct ip_sf_list {
6767
struct ip_sf_list *sf_next;
68-
__be32 sf_inaddr;
6968
unsigned long sf_count[2]; /* include/exclude counts */
69+
__be32 sf_inaddr;
7070
unsigned char sf_gsresp; /* include in g & s response? */
7171
unsigned char sf_oldin; /* change state */
7272
unsigned char sf_crcount; /* retrans. left to send */

0 commit comments

Comments
 (0)