summaryrefslogtreecommitdiffstats
path: root/net/ipv4/netfilter
diff options
context:
space:
mode:
authorGustavo F. Padovan2010-07-21 12:59:58 +0200
committerDavid S. Miller2010-07-21 23:44:29 +0200
commit3f30fc1570626f11e8f3efe5ebd41fe96e847ed1 (patch)
tree3a626c1887597942cd21202124b5e293dee226d5 /net/ipv4/netfilter
parentirda: Use __packed annotation instead IRDA_PACKED macro (diff)
downloadkernel-qcow2-linux-3f30fc1570626f11e8f3efe5ebd41fe96e847ed1.tar.gz
kernel-qcow2-linux-3f30fc1570626f11e8f3efe5ebd41fe96e847ed1.tar.xz
kernel-qcow2-linux-3f30fc1570626f11e8f3efe5ebd41fe96e847ed1.zip
net: remove last uses of __attribute__((packed))
Network code uses the __packed macro instead of __attribute__((packed)). Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/netfilter')
-rw-r--r--net/ipv4/netfilter/ipt_CLUSTERIP.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/netfilter/ipt_CLUSTERIP.c b/net/ipv4/netfilter/ipt_CLUSTERIP.c
index 64d0875f5192..3a43cf36db87 100644
--- a/net/ipv4/netfilter/ipt_CLUSTERIP.c
+++ b/net/ipv4/netfilter/ipt_CLUSTERIP.c
@@ -469,7 +469,7 @@ struct arp_payload {
__be32 src_ip;
u_int8_t dst_hw[ETH_ALEN];
__be32 dst_ip;
-} __attribute__ ((packed));
+} __packed;
#ifdef DEBUG
static void arp_print(struct arp_payload *payload)