aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/ip_tunnels.h
diff options
context:
space:
mode:
authorJiri Benc <jbenc@redhat.com>2015-08-20 07:56:21 -0400
committerDavid S. Miller <davem@davemloft.net>2015-08-20 18:42:36 -0400
commit6b8847c5a2bafbbf92f4b779f87165093457ea68 (patch)
tree867a1d744aec795f1ea87191dcf6f350fc0d43d6 /include/net/ip_tunnels.h
parentac1cf3990c99802eae3aa735b35c94a2131eb9fe (diff)
ip_tunnels: use u8/u16/u32
The ip_tunnels.h include file uses mixture of __u16 and u16 (etc.) types. Unify it to the non-underscore variants. Signed-off-by: Jiri Benc <jbenc@redhat.com> Acked-by: Thomas Graf <tgraf@suug.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/ip_tunnels.h')
-rw-r--r--include/net/ip_tunnels.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/net/ip_tunnels.h b/include/net/ip_tunnels.h
index 81cf11c931e4..ca173f22f07f 100644
--- a/include/net/ip_tunnels.h
+++ b/include/net/ip_tunnels.h
@@ -32,8 +32,8 @@ struct ip_tunnel_key {
32 __be32 ipv4_src; 32 __be32 ipv4_src;
33 __be32 ipv4_dst; 33 __be32 ipv4_dst;
34 __be16 tun_flags; 34 __be16 tun_flags;
35 __u8 ipv4_tos; 35 u8 ipv4_tos;
36 __u8 ipv4_ttl; 36 u8 ipv4_ttl;
37 __be16 tp_src; 37 __be16 tp_src;
38 __be16 tp_dst; 38 __be16 tp_dst;
39}; 39};
@@ -64,8 +64,8 @@ struct ip_tunnel_6rd_parm {
64#endif 64#endif
65 65
66struct ip_tunnel_encap { 66struct ip_tunnel_encap {
67 __u16 type; 67 u16 type;
68 __u16 flags; 68 u16 flags;
69 __be16 sport; 69 __be16 sport;
70 __be16 dport; 70 __be16 dport;
71}; 71};
@@ -95,8 +95,8 @@ struct ip_tunnel {
95 * arrived */ 95 * arrived */
96 96
97 /* These four fields used only by GRE */ 97 /* These four fields used only by GRE */
98 __u32 i_seqno; /* The last seen seqno */ 98 u32 i_seqno; /* The last seen seqno */
99 __u32 o_seqno; /* The last output seqno */ 99 u32 o_seqno; /* The last output seqno */
100 int tun_hlen; /* Precalculated header length */ 100 int tun_hlen; /* Precalculated header length */
101 int mlink; 101 int mlink;
102 102
@@ -273,8 +273,8 @@ static inline u8 ip_tunnel_ecn_encap(u8 tos, const struct iphdr *iph,
273 273
274int iptunnel_pull_header(struct sk_buff *skb, int hdr_len, __be16 inner_proto); 274int iptunnel_pull_header(struct sk_buff *skb, int hdr_len, __be16 inner_proto);
275int iptunnel_xmit(struct sock *sk, struct rtable *rt, struct sk_buff *skb, 275int iptunnel_xmit(struct sock *sk, struct rtable *rt, struct sk_buff *skb,
276 __be32 src, __be32 dst, __u8 proto, 276 __be32 src, __be32 dst, u8 proto,
277 __u8 tos, __u8 ttl, __be16 df, bool xnet); 277 u8 tos, u8 ttl, __be16 df, bool xnet);
278 278
279struct sk_buff *iptunnel_handle_offloads(struct sk_buff *skb, bool gre_csum, 279struct sk_buff *iptunnel_handle_offloads(struct sk_buff *skb, bool gre_csum,
280 int gso_type_mask); 280 int gso_type_mask);