summaryrefslogtreecommitdiff
path: root/include/linux/netfilter/xt_connbytes.h
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2011-03-18 08:50:37 +0000
committerDavid S. Miller <davem@davemloft.net>2011-03-18 15:14:45 -0700
commitb51bdad63046d1d5a4807630cc8c02845cf67893 (patch)
tree98d739a27b27268306e65c558dbdc9e771f8d874 /include/linux/netfilter/xt_connbytes.h
parent6b1e960fdbd75dcd9bcc3ba5ff8898ff1ad30b6e (diff)
headers: use __aligned_xx types for userspace
Now that we finally have __aligned_xx exported to userspace, convert the headers that get exported over to the proper type. Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/netfilter/xt_connbytes.h')
-rw-r--r--include/linux/netfilter/xt_connbytes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/netfilter/xt_connbytes.h b/include/linux/netfilter/xt_connbytes.h
index 92fcbb0d193..f1d6c15bd9e 100644
--- a/include/linux/netfilter/xt_connbytes.h
+++ b/include/linux/netfilter/xt_connbytes.h
@@ -17,8 +17,8 @@ enum xt_connbytes_direction {
struct xt_connbytes_info {
struct {
- aligned_u64 from; /* count to be matched */
- aligned_u64 to; /* count to be matched */
+ __aligned_u64 from; /* count to be matched */
+ __aligned_u64 to; /* count to be matched */
} count;
__u8 what; /* ipt_connbytes_what */
__u8 direction; /* ipt_connbytes_direction */