mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-13 22:56:27 +08:00
sctp: fix ignoring asoc_id for tcp-style sockets on SCTP_STREAM_SCHEDULER sockopt
A similar fix as Patch "sctp: fix ignoring asoc_id for tcp-style sockets on
SCTP_DEFAULT_SEND_PARAM sockopt" on SCTP_STREAM_SCHEDULER sockopt.
Fixes: 7efba10d6b
("sctp: add SCTP_FUTURE_ASOC and SCTP_CURRENT_ASSOC for SCTP_STREAM_SCHEDULER sockopt")
Signed-off-by: Xin Long <lucien.xin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
995186193f
commit
b59c19d9d9
@ -4409,6 +4409,9 @@ static int sctp_setsockopt_scheduler(struct sock *sk,
|
||||
if (asoc)
|
||||
return sctp_sched_set_sched(asoc, params.assoc_value);
|
||||
|
||||
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->default_ss = params.assoc_value;
|
||||
|
Loading…
Reference in New Issue
Block a user