diff options
author | Xin Long <lucien.xin@gmail.com> | 2018-11-03 14:01:31 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-11-03 19:40:29 -0700 |
commit | 12480e3b16982c4026de10dd8155823219cd6391 (patch) | |
tree | 363a1c986216fdc4b29442ff0468a75765477410 /net/sctp/outqueue.c | |
parent | fd82d61ba142f0b83463e47064bf5460aac57b6e (diff) | |
download | blackbird-obmc-linux-12480e3b16982c4026de10dd8155823219cd6391.tar.gz blackbird-obmc-linux-12480e3b16982c4026de10dd8155823219cd6391.zip |
sctp: define SCTP_SS_DEFAULT for Stream schedulers
According to rfc8260#section-4.3.2, SCTP_SS_DEFAULT is required to
defined as SCTP_SS_FCFS or SCTP_SS_RR.
SCTP_SS_FCFS is used for SCTP_SS_DEFAULT's value in this patch.
Fixes: 5bbbbe32a431 ("sctp: introduce stream scheduler foundations")
Reported-by: Jianwen Ji <jiji@redhat.com>
Signed-off-by: Xin Long <lucien.xin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/outqueue.c')
-rw-r--r-- | net/sctp/outqueue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/outqueue.c b/net/sctp/outqueue.c index 9cb854b05342..c37e1c2dec9d 100644 --- a/net/sctp/outqueue.c +++ b/net/sctp/outqueue.c @@ -212,7 +212,7 @@ void sctp_outq_init(struct sctp_association *asoc, struct sctp_outq *q) INIT_LIST_HEAD(&q->retransmit); INIT_LIST_HEAD(&q->sacked); INIT_LIST_HEAD(&q->abandoned); - sctp_sched_set_sched(asoc, SCTP_SS_FCFS); + sctp_sched_set_sched(asoc, SCTP_SS_DEFAULT); } /* Free the outqueue structure and any related pending chunks. |