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

Commit 746bc215 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_MAX_BURST sockopt



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

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

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

	if (params.assoc_id == SCTP_FUTURE_ASSOC ||
	    params.assoc_id == SCTP_ALL_ASSOC)
		sp->max_burst = params.assoc_value;