Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8e2614fc authored by Xin Long's avatar Xin Long Committed by David S. Miller
Browse files

sctp: fix ignoring asoc_id for tcp-style sockets on SCTP_DELAYED_SACK sockopt



A similar fix as Patch "sctp: fix ignoring asoc_id for tcp-style sockets on
SCTP_DEFAULT_SEND_PARAM sockopt" on SCTP_DELAYED_SACK sockopt.

Fixes: 9c5829e1 ("sctp: use SCTP_FUTURE_ASSOC and add SCTP_CURRENT_ASSOC for SCTP_DELAYED_SACK sockopt")
Signed-off-by: default avatarXin Long <lucien.xin@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 1354e72f
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -2920,6 +2920,9 @@ static int sctp_setsockopt_delayed_ack(struct sock *sk,
		return 0;
	}

	if (sctp_style(sk, TCP))
		params.sack_assoc_id = SCTP_FUTURE_ASSOC;

	if (params.sack_assoc_id == SCTP_FUTURE_ASSOC ||
	    params.sack_assoc_id == SCTP_ALL_ASSOC) {
		if (params.sack_delay) {