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

Commit cbb45c6c 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_DEFAULT_PRINFO sockopt



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

Fixes: 3a583059 ("sctp: use SCTP_FUTURE_ASSOC and add SCTP_CURRENT_ASSOC for SCTP_DEFAULT_PRINFO sockopt")
Signed-off-by: default avatarXin Long <lucien.xin@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 200f3a3b
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -4196,6 +4196,9 @@ static int sctp_setsockopt_default_prinfo(struct sock *sk,
		goto out;
	}

	if (sctp_style(sk, TCP))
		info.pr_assoc_id = SCTP_FUTURE_ASSOC;

	if (info.pr_assoc_id == SCTP_FUTURE_ASSOC ||
	    info.pr_assoc_id == SCTP_ALL_ASSOC) {
		SCTP_PR_SET_POLICY(sp->default_flags, info.pr_policy);