nf_bridge: remove holes in struct nf_bridge_info
authorEric Dumazet <edumazet@google.com>
Wed, 18 Apr 2012 23:19:25 +0000 (23:19 +0000)
committerDavid S. Miller <davem@davemloft.net>
Thu, 19 Apr 2012 19:18:50 +0000 (15:18 -0400)
Put use & mask on same location to avoid two holes on 64bit arches

Signed-off-by: Eric Dumazet <edumazet@google.com>
Acked-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/skbuff.h

index 775292a..f25795c 100644 (file)
@@ -117,11 +117,11 @@ struct nf_conntrack {
 
 #ifdef CONFIG_BRIDGE_NETFILTER
 struct nf_bridge_info {
-       atomic_t use;
-       struct net_device *physindev;
-       struct net_device *physoutdev;
-       unsigned int mask;
-       unsigned long data[32 / sizeof(unsigned long)];
+       atomic_t                use;
+       unsigned int            mask;
+       struct net_device       *physindev;
+       struct net_device       *physoutdev;
+       unsigned long           data[32 / sizeof(unsigned long)];
 };
 #endif