diff options
author | Xin Long <lucien.xin@gmail.com> | 2017-06-30 05:52:20 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-07-01 18:08:42 +0200 |
commit | 9f8d31471548d9b74609335f9a3c75c7b664c8b4 (patch) | |
tree | 1fbc8c5b81f2d438a65c587c135a85097b3918a2 /include/net/sctp/constants.h | |
parent | sctp: remove the typedef sctp_datahdr_t (diff) | |
download | linux-9f8d31471548d9b74609335f9a3c75c7b664c8b4.tar.xz linux-9f8d31471548d9b74609335f9a3c75c7b664c8b4.zip |
sctp: remove the typedef sctp_data_chunk_t
This patch is to remove the typedef sctp_data_chunk_t, and replace
with struct sctp_data_chunk in the places where it's using this
typedef.
Signed-off-by: Xin Long <lucien.xin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/sctp/constants.h')
-rw-r--r-- | include/net/sctp/constants.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/sctp/constants.h b/include/net/sctp/constants.h index 02e867bc4b43..9b18044c551e 100644 --- a/include/net/sctp/constants.h +++ b/include/net/sctp/constants.h @@ -152,7 +152,7 @@ SCTP_SUBTYPE_CONSTRUCTOR(PRIMITIVE, sctp_event_primitive_t, primitive) /* Calculate the actual data size in a data chunk */ #define SCTP_DATA_SNDSIZE(c) ((int)((unsigned long)(c->chunk_end)\ - (unsigned long)(c->chunk_hdr)\ - - sizeof(sctp_data_chunk_t))) + - sizeof(struct sctp_data_chunk))) /* Internal error codes */ typedef enum { |