mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-03 19:24:02 +08:00
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>
This commit is contained in:
parent
ac1cf3990c
commit
6b8847c5a2
@ -32,8 +32,8 @@ struct ip_tunnel_key {
|
|||||||
__be32 ipv4_src;
|
__be32 ipv4_src;
|
||||||
__be32 ipv4_dst;
|
__be32 ipv4_dst;
|
||||||
__be16 tun_flags;
|
__be16 tun_flags;
|
||||||
__u8 ipv4_tos;
|
u8 ipv4_tos;
|
||||||
__u8 ipv4_ttl;
|
u8 ipv4_ttl;
|
||||||
__be16 tp_src;
|
__be16 tp_src;
|
||||||
__be16 tp_dst;
|
__be16 tp_dst;
|
||||||
};
|
};
|
||||||
@ -64,8 +64,8 @@ struct ip_tunnel_6rd_parm {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
struct ip_tunnel_encap {
|
struct ip_tunnel_encap {
|
||||||
__u16 type;
|
u16 type;
|
||||||
__u16 flags;
|
u16 flags;
|
||||||
__be16 sport;
|
__be16 sport;
|
||||||
__be16 dport;
|
__be16 dport;
|
||||||
};
|
};
|
||||||
@ -95,8 +95,8 @@ struct ip_tunnel {
|
|||||||
* arrived */
|
* arrived */
|
||||||
|
|
||||||
/* These four fields used only by GRE */
|
/* These four fields used only by GRE */
|
||||||
__u32 i_seqno; /* The last seen seqno */
|
u32 i_seqno; /* The last seen seqno */
|
||||||
__u32 o_seqno; /* The last output seqno */
|
u32 o_seqno; /* The last output seqno */
|
||||||
int tun_hlen; /* Precalculated header length */
|
int tun_hlen; /* Precalculated header length */
|
||||||
int mlink;
|
int mlink;
|
||||||
|
|
||||||
@ -273,8 +273,8 @@ static inline u8 ip_tunnel_ecn_encap(u8 tos, const struct iphdr *iph,
|
|||||||
|
|
||||||
int iptunnel_pull_header(struct sk_buff *skb, int hdr_len, __be16 inner_proto);
|
int iptunnel_pull_header(struct sk_buff *skb, int hdr_len, __be16 inner_proto);
|
||||||
int iptunnel_xmit(struct sock *sk, struct rtable *rt, struct sk_buff *skb,
|
int iptunnel_xmit(struct sock *sk, struct rtable *rt, struct sk_buff *skb,
|
||||||
__be32 src, __be32 dst, __u8 proto,
|
__be32 src, __be32 dst, u8 proto,
|
||||||
__u8 tos, __u8 ttl, __be16 df, bool xnet);
|
u8 tos, u8 ttl, __be16 df, bool xnet);
|
||||||
|
|
||||||
struct sk_buff *iptunnel_handle_offloads(struct sk_buff *skb, bool gre_csum,
|
struct sk_buff *iptunnel_handle_offloads(struct sk_buff *skb, bool gre_csum,
|
||||||
int gso_type_mask);
|
int gso_type_mask);
|
||||||
|
Loading…
Reference in New Issue
Block a user