Merge branch 'rusty-cpumask-parisc' into parisc
[sfrench/cifs-2.6.git] / include / linux / netfilter / nf_conntrack_tcp.h
index a049df4f2236360e2aae61bf3da3e38bf35b6963..3066789b972a08a23e6cd882c51d18e254c9be9a 100644 (file)
@@ -2,6 +2,8 @@
 #define _NF_CONNTRACK_TCP_H
 /* TCP tracking. */
 
+#include <linux/types.h>
+
 /* This is exposed to userspace (ctnetlink) */
 enum tcp_conntrack {
        TCP_CONNTRACK_NONE,
@@ -34,8 +36,8 @@ enum tcp_conntrack {
 #define IP_CT_TCP_FLAG_DATA_UNACKNOWLEDGED     0x10
 
 struct nf_ct_tcp_flags {
-       u_int8_t flags;
-       u_int8_t mask;
+       __u8 flags;
+       __u8 mask;
 };
 
 #ifdef __KERNEL__