sctp: fix the name of struct sctp_shutdown_chunk_t

This patch is to fix the name of struct sctp_shutdown_chunk_t
, replace with struct sctp_initack_chunk in the places where
it's using it.

It is also to fix some indent problem.

Signed-off-by: Xin Long <lucien.xin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Xin Long 2017-08-03 15:42:10 +08:00 committed by David S. Miller
parent e61e4055b1
commit ac23e68133
2 changed files with 9 additions and 9 deletions

View File

@ -420,7 +420,7 @@ struct sctp_shutdownhdr {
__be32 cum_tsn_ack; __be32 cum_tsn_ack;
}; };
struct sctp_shutdown_chunk_t { struct sctp_shutdown_chunk {
struct sctp_chunkhdr chunk_hdr; struct sctp_chunkhdr chunk_hdr;
struct sctp_shutdownhdr shutdown_hdr; struct sctp_shutdownhdr shutdown_hdr;
}; };

View File

@ -2665,8 +2665,7 @@ sctp_disposition_t sctp_sf_do_9_2_shutdown(struct net *net,
return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands); return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands);
/* Make sure that the SHUTDOWN chunk has a valid length. */ /* Make sure that the SHUTDOWN chunk has a valid length. */
if (!sctp_chunk_length_valid(chunk, if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_shutdown_chunk)))
sizeof(struct sctp_shutdown_chunk_t)))
return sctp_sf_violation_chunklen(net, ep, asoc, type, arg, return sctp_sf_violation_chunklen(net, ep, asoc, type, arg,
commands); commands);
@ -2753,8 +2752,7 @@ sctp_disposition_t sctp_sf_do_9_2_shut_ctsn(struct net *net,
return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands); return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands);
/* Make sure that the SHUTDOWN chunk has a valid length. */ /* Make sure that the SHUTDOWN chunk has a valid length. */
if (!sctp_chunk_length_valid(chunk, if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_shutdown_chunk)))
sizeof(struct sctp_shutdown_chunk_t)))
return sctp_sf_violation_chunklen(net, ep, asoc, type, arg, return sctp_sf_violation_chunklen(net, ep, asoc, type, arg,
commands); commands);
@ -5419,12 +5417,14 @@ sctp_disposition_t sctp_sf_do_9_2_shutdown_ack(
*/ */
if (chunk) { if (chunk) {
if (!sctp_vtag_verify(chunk, asoc)) if (!sctp_vtag_verify(chunk, asoc))
return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands); return sctp_sf_pdiscard(net, ep, asoc, type, arg,
commands);
/* Make sure that the SHUTDOWN chunk has a valid length. */ /* Make sure that the SHUTDOWN chunk has a valid length. */
if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_shutdown_chunk_t))) if (!sctp_chunk_length_valid(
return sctp_sf_violation_chunklen(net, ep, asoc, type, arg, chunk, sizeof(struct sctp_shutdown_chunk)))
commands); return sctp_sf_violation_chunklen(net, ep, asoc, type,
arg, commands);
} }
/* If it has no more outstanding DATA chunks, the SHUTDOWN receiver /* If it has no more outstanding DATA chunks, the SHUTDOWN receiver