aboutsummaryrefslogtreecommitdiffstats
path: root/net/sctp/sm_statefuns.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/sctp/sm_statefuns.c')
-rw-r--r--net/sctp/sm_statefuns.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/net/sctp/sm_statefuns.c b/net/sctp/sm_statefuns.c
index 47bc20d3a85b..c3f75e79bedc 100644
--- a/net/sctp/sm_statefuns.c
+++ b/net/sctp/sm_statefuns.c
@@ -3675,8 +3675,14 @@ sctp_disposition_t sctp_sf_do_asconf_ack(const struct sctp_endpoint *ep,
3675 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO)); 3675 SCTP_TO(SCTP_EVENT_TIMEOUT_T4_RTO));
3676 3676
3677 if (!sctp_process_asconf_ack((struct sctp_association *)asoc, 3677 if (!sctp_process_asconf_ack((struct sctp_association *)asoc,
3678 asconf_ack)) 3678 asconf_ack)) {
3679 /* Successfully processed ASCONF_ACK. We can
3680 * release the next asconf if we have one.
3681 */
3682 sctp_add_cmd_sf(commands, SCTP_CMD_SEND_NEXT_ASCONF,
3683 SCTP_NULL());
3679 return SCTP_DISPOSITION_CONSUME; 3684 return SCTP_DISPOSITION_CONSUME;
3685 }
3680 3686
3681 abort = sctp_make_abort(asoc, asconf_ack, 3687 abort = sctp_make_abort(asoc, asconf_ack,
3682 sizeof(sctp_errhdr_t)); 3688 sizeof(sctp_errhdr_t));