sctp: remove the typedef sctp_sack_chunk_t
authorXin Long <lucien.xin@gmail.com>
Sun, 23 Jul 2017 01:34:33 +0000 (09:34 +0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 24 Jul 2017 23:01:20 +0000 (16:01 -0700)
This patch is to remove the typedef sctp_sack_chunk_t, and
replace with struct sctp_sack_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>
include/linux/sctp.h
net/sctp/chunk.c
net/sctp/sm_statefuns.c

index a2e43129d11a062686820f9496d4503e33e5771a..48f6560dd880199e72ae36bf4d70f0a655d25b03 100644 (file)
@@ -381,10 +381,10 @@ struct sctp_sackhdr {
        union sctp_sack_variable variable[0];
 };
 
-typedef struct sctp_sack_chunk {
+struct sctp_sack_chunk {
        struct sctp_chunkhdr chunk_hdr;
        struct sctp_sackhdr sack_hdr;
-} sctp_sack_chunk_t;
+};
 
 
 /* RFC 2960.  Section 3.3.5 Heartbeat Request (HEARTBEAT) (4):
index 1323d41e68b82e9cb826dbc3112709db3e0166c9..681b181e7ae3905b53500fd6c05666b362f382ee 100644 (file)
@@ -221,7 +221,7 @@ struct sctp_datamsg *sctp_datamsg_from_user(struct sctp_association *asoc,
            asoc->outqueue.out_qlen == 0 &&
            list_empty(&asoc->outqueue.retransmit) &&
            msg_len > max_data)
-               first_len -= SCTP_PAD4(sizeof(sctp_sack_chunk_t));
+               first_len -= SCTP_PAD4(sizeof(struct sctp_sack_chunk));
 
        /* Encourage Cookie-ECHO bundling. */
        if (asoc->state < SCTP_STATE_COOKIE_ECHOED)
index c09dfe6ebac29119c97f3d1b9512b7460914fca2..08ebe8cd96c73b40d4fd8f0e6d5d027c1f4a5933 100644 (file)
@@ -3194,7 +3194,7 @@ sctp_disposition_t sctp_sf_eat_sack_6_2(struct net *net,
                return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands);
 
        /* Make sure that the SACK chunk has a valid length. */
-       if (!sctp_chunk_length_valid(chunk, sizeof(sctp_sack_chunk_t)))
+       if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_sack_chunk)))
                return sctp_sf_violation_chunklen(net, ep, asoc, type, arg,
                                                  commands);
 
@@ -4515,7 +4515,7 @@ nomem:
  * Handle a protocol violation when the chunk length is invalid.
  * "Invalid" length is identified as smaller than the minimal length a
  * given chunk can be.  For example, a SACK chunk has invalid length
- * if its length is set to be smaller than the size of sctp_sack_chunk_t.
+ * if its length is set to be smaller than the size of struct sctp_sack_chunk.
  *
  * We inform the other end by sending an ABORT with a Protocol Violation
  * error code.