Home
last modified time | relevance | path

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

/openbmc/linux/net/sctp/
H A Dstream_sched_fc.c35 soute->fc_weight = weight; in sctp_sched_wfq_set()
44 *value = soute->fc_weight; in sctp_sched_wfq_get()
72 INIT_LIST_HEAD(&soute->fc_list); in sctp_sched_fc_init_sid()
73 soute->fc_length = 0; in sctp_sched_fc_init_sid()
74 soute->fc_weight = 1; in sctp_sched_fc_init_sid()
88 if (!list_empty(&soute->fc_list)) in sctp_sched_fc_sched()
123 soute = stream->out_curr->ext; in sctp_sched_fc_dequeue()
156 if (list_empty(&soute->outq)) { in sctp_sched_fc_dequeue_done()
157 list_del_init(&soute->fc_list); in sctp_sched_fc_dequeue_done()
161 pos = soute; in sctp_sched_fc_dequeue_done()
[all …]
H A Dstream_sched_rr.c40 if (stream->rr_next == soute) in sctp_sched_rr_unsched()
44 list_del_init(&soute->rr_list); in sctp_sched_rr_unsched()
54 if (!list_empty(&soute->rr_list)) in sctp_sched_rr_sched()
62 stream->rr_next = soute; in sctp_sched_rr_sched()
113 struct sctp_stream_out_ext *soute; in sctp_sched_rr_dequeue() local
122 soute = stream->out_curr->ext; in sctp_sched_rr_dequeue()
124 soute = stream->rr_next; in sctp_sched_rr_dequeue()
136 struct sctp_stream_out_ext *soute; in sctp_sched_rr_dequeue_done() local
145 if (list_empty(&soute->outq)) in sctp_sched_rr_dequeue_done()
152 struct sctp_stream_out_ext *soute; in sctp_sched_rr_sched_all() local
[all …]
H A Dstream_sched_prio.c113 if (prio_head->next == soute) in sctp_sched_prio_unsched()
117 list_del_init(&soute->prio_list); in sctp_sched_prio_unsched()
135 prio_head = soute->prio_head; in sctp_sched_prio_sched()
151 prio_head->next = soute; in sctp_sched_prio_sched()
171 old = soute->prio_head; in sctp_sched_prio_set()
180 soute->prio_head = prio_head; in sctp_sched_prio_set()
243 soute = stream->out_curr->ext; in sctp_sched_prio_dequeue()
247 soute = prio->next; in sctp_sched_prio_dequeue()
268 prio = soute->prio_head; in sctp_sched_prio_dequeue_done()
272 if (list_empty(&soute->outq)) in sctp_sched_prio_dequeue_done()
[all …]
H A Dstream_sched.c134 struct sctp_stream_out_ext *soute; in sctp_sched_free_sched() local
139 soute = SCTP_SO(stream, i)->ext; in sctp_sched_free_sched()
140 if (!soute) in sctp_sched_free_sched()
144 memset_after(soute, 0, outq); in sctp_sched_free_sched()
H A Dstream.c166 struct sctp_stream_out_ext *soute; in sctp_stream_init_ext() local
169 soute = kzalloc(sizeof(*soute), GFP_KERNEL); in sctp_stream_init_ext()
170 if (!soute) in sctp_stream_init_ext()
172 SCTP_SO(stream, sid)->ext = soute; in sctp_stream_init_ext()