diff options
author | Hannes Frederic Sowa <hannes@stressinduktion.org> | 2016-06-11 20:41:38 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-06-14 15:25:35 -0400 |
commit | 5119bd16815d3f0364390a1369392dcc036790e7 (patch) | |
tree | 52975eff34a74d8ba38eb4ddc178e203f54b3bb9 /net | |
parent | dcb94b88c09ce82a80e188d49bcffdc83ba215a6 (diff) | |
download | linux-5119bd16815d3f0364390a1369392dcc036790e7.tar.gz linux-5119bd16815d3f0364390a1369392dcc036790e7.tar.bz2 linux-5119bd16815d3f0364390a1369392dcc036790e7.zip |
ipv6: tcp: fix endianness annotation in tcp_v6_send_response
Cc: Florent Fourcot <florent.fourcot@enst-bretagne.fr>
Fixes: 1d13a96c74fc ("ipv6: tcp: fix flowlabel value in ACK messages send from TIME_WAIT")
Signed-off-by: Hannes Frederic Sowa <hannes@stressinduktion.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv6/tcp_ipv6.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv6/tcp_ipv6.c b/net/ipv6/tcp_ipv6.c index f36c2d076fce..2255d2bf5f6b 100644 --- a/net/ipv6/tcp_ipv6.c +++ b/net/ipv6/tcp_ipv6.c @@ -738,7 +738,7 @@ static const struct tcp_request_sock_ops tcp_request_sock_ipv6_ops = { static void tcp_v6_send_response(const struct sock *sk, struct sk_buff *skb, u32 seq, u32 ack, u32 win, u32 tsval, u32 tsecr, int oif, struct tcp_md5sig_key *key, int rst, - u8 tclass, u32 label) + u8 tclass, __be32 label) { const struct tcphdr *th = tcp_hdr(skb); struct tcphdr *t1; @@ -911,7 +911,7 @@ out: static void tcp_v6_send_ack(const struct sock *sk, struct sk_buff *skb, u32 seq, u32 ack, u32 win, u32 tsval, u32 tsecr, int oif, struct tcp_md5sig_key *key, u8 tclass, - u32 label) + __be32 label) { tcp_v6_send_response(sk, skb, seq, ack, win, tsval, tsecr, oif, key, 0, tclass, label); |