diff options
author | Xin Long <lucien.xin@gmail.com> | 2017-10-28 14:43:57 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-10-29 12:03:24 +0300 |
commit | 978aa0474115f3f5848949f2efce4def0766a5cb (patch) | |
tree | ec5e71a59013f698474666a8d748c4ddc11d68d4 /include/uapi/linux/sctp.h | |
parent | f6fc6bc0b8e0bb13a210bd7386ffdcb1a5f30ef1 (diff) | |
download | linux-978aa0474115f3f5848949f2efce4def0766a5cb.tar.xz |
sctp: fix some type cast warnings introduced since very beginning
These warnings were found by running 'make C=2 M=net/sctp/'.
They are there since very beginning.
Note after this patch, there still one warning left in
sctp_outq_flush():
sctp_chunk_fail(chunk, SCTP_ERROR_INV_STRM)
Since it has been moved to sctp_stream_outq_migrate on net-next,
to avoid the extra job when merging net-next to net, I will post
the fix for it after the merging is done.
Reported-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: Xin Long <lucien.xin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/uapi/linux/sctp.h')
-rw-r--r-- | include/uapi/linux/sctp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/uapi/linux/sctp.h b/include/uapi/linux/sctp.h index 6217ff8500a1..84fc2914b7fb 100644 --- a/include/uapi/linux/sctp.h +++ b/include/uapi/linux/sctp.h @@ -376,7 +376,7 @@ struct sctp_remote_error { __u16 sre_type; __u16 sre_flags; __u32 sre_length; - __u16 sre_error; + __be16 sre_error; sctp_assoc_t sre_assoc_id; __u8 sre_data[0]; }; |