Home
last modified time | relevance | path

Searched refs:soute (Results 1 – 3 of 3) sorted by relevance

/linux-5.19.10/net/sctp/
Dstream_sched_rr.c38 struct sctp_stream_out_ext *soute) in sctp_sched_rr_unsched() argument
40 if (stream->rr_next == soute) in sctp_sched_rr_unsched()
44 list_del_init(&soute->rr_list); in sctp_sched_rr_unsched()
52 struct sctp_stream_out_ext *soute) in sctp_sched_rr_sched() argument
54 if (!list_empty(&soute->rr_list)) in sctp_sched_rr_sched()
59 list_add_tail(&soute->rr_list, &stream->rr_list); in sctp_sched_rr_sched()
62 stream->rr_next = soute; in sctp_sched_rr_sched()
114 struct sctp_stream_out_ext *soute; in sctp_sched_rr_dequeue() local
123 soute = stream->out_curr->ext; in sctp_sched_rr_dequeue()
125 soute = stream->rr_next; in sctp_sched_rr_dequeue()
[all …]
Dstream_sched_prio.c90 static bool sctp_sched_prio_unsched(struct sctp_stream_out_ext *soute) in sctp_sched_prio_unsched() argument
94 if (!list_empty(&soute->prio_list)) { in sctp_sched_prio_unsched()
95 struct sctp_stream_priorities *prio_head = soute->prio_head; in sctp_sched_prio_unsched()
100 if (prio_head->next == soute) in sctp_sched_prio_unsched()
104 list_del_init(&soute->prio_list); in sctp_sched_prio_unsched()
118 struct sctp_stream_out_ext *soute) in sctp_sched_prio_sched() argument
122 prio_head = soute->prio_head; in sctp_sched_prio_sched()
125 if (!list_empty(&soute->prio_list)) in sctp_sched_prio_sched()
133 list_add(&soute->prio_list, prio_head->next->prio_list.prev); in sctp_sched_prio_sched()
137 list_add(&soute->prio_list, &prio_head->active); in sctp_sched_prio_sched()
[all …]
Dstream.c155 struct sctp_stream_out_ext *soute; in sctp_stream_init_ext() local
158 soute = kzalloc(sizeof(*soute), GFP_KERNEL); in sctp_stream_init_ext()
159 if (!soute) in sctp_stream_init_ext()
161 SCTP_SO(stream, sid)->ext = soute; in sctp_stream_init_ext()