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>

authored by Mike Frysinger and committed by David S. Miller b51bdad6 6b1e960f

+15 -15
+8 -8
include/linux/if_ppp.h
··· 114 114 __u16 tunnel_id; /* redundant */ 115 115 __u16 session_id; /* if zero, get tunnel stats */ 116 116 __u32 using_ipsec:1; /* valid only for session_id == 0 */ 117 - aligned_u64 tx_packets; 118 - aligned_u64 tx_bytes; 119 - aligned_u64 tx_errors; 120 - aligned_u64 rx_packets; 121 - aligned_u64 rx_bytes; 122 - aligned_u64 rx_seq_discards; 123 - aligned_u64 rx_oos_packets; 124 - aligned_u64 rx_errors; 117 + __aligned_u64 tx_packets; 118 + __aligned_u64 tx_bytes; 119 + __aligned_u64 tx_errors; 120 + __aligned_u64 rx_packets; 121 + __aligned_u64 rx_bytes; 122 + __aligned_u64 rx_seq_discards; 123 + __aligned_u64 rx_oos_packets; 124 + __aligned_u64 rx_errors; 125 125 }; 126 126 127 127 #define ifr__name b.ifr_ifrn.ifrn_name
+2 -2
include/linux/netfilter/xt_connbytes.h
··· 17 17 18 18 struct xt_connbytes_info { 19 19 struct { 20 - aligned_u64 from; /* count to be matched */ 21 - aligned_u64 to; /* count to be matched */ 20 + __aligned_u64 from; /* count to be matched */ 21 + __aligned_u64 to; /* count to be matched */ 22 22 } count; 23 23 __u8 what; /* ipt_connbytes_what */ 24 24 __u8 direction; /* ipt_connbytes_direction */
+1 -1
include/linux/netfilter/xt_quota.h
··· 13 13 struct xt_quota_info { 14 14 __u32 flags; 15 15 __u32 pad; 16 - aligned_u64 quota; 16 + __aligned_u64 quota; 17 17 18 18 /* Used internally by the kernel */ 19 19 struct xt_quota_priv *master;