Home
last modified time | relevance | path

Searched refs:SCTP_SO (Results 1 – 9 of 9) sorted by relevance

/linux/net/sctp/
H A Dstream.c59 if (!SCTP_SO(stream, sid)->ext) in sctp_stream_free_ext()
64 kfree(SCTP_SO(stream, sid)->ext); in sctp_stream_free_ext()
65 SCTP_SO(stream, sid)->ext = NULL; in sctp_stream_free_ext()
87 SCTP_SO(new, i)->ext = SCTP_SO(stream, i)->ext; in sctp_stream_outq_migrate()
88 SCTP_SO(stream, i)->ext = NULL; in sctp_stream_outq_migrate()
154 SCTP_SO(stream, i)->state = SCTP_STREAM_OPEN; in sctp_stream_init()
172 SCTP_SO(stream, sid)->ext = soute; in sctp_stream_init_ext()
176 kfree(SCTP_SO(stream, sid)->ext); in sctp_stream_init_ext()
177 SCTP_SO(stream, sid)->ext = NULL; in sctp_stream_init_ext()
200 SCTP_SO(stream, i)->mid = 0; in sctp_stream_clear()
[all …]
H A Dstream_sched_prio.c76 if (!SCTP_SO(stream, i)->ext) in sctp_sched_prio_get_head()
79 p = SCTP_SO(stream, i)->ext->prio_head; in sctp_sched_prio_get_head()
166 struct sctp_stream_out *sout = SCTP_SO(stream, sid); in sctp_sched_prio_set()
191 *value = SCTP_SO(stream, sid)->ext->prio_head->prio; in sctp_sched_prio_get()
205 INIT_LIST_HEAD(&SCTP_SO(stream, sid)->ext->prio_list); in sctp_sched_prio_init_sid()
211 sctp_sched_prio_head_put(SCTP_SO(stream, sid)->ext->prio_head); in sctp_sched_prio_free_sid()
212 SCTP_SO(stream, sid)->ext->prio_head = NULL; in sctp_sched_prio_free_sid()
225 sctp_sched_prio_sched(stream, SCTP_SO(stream, sid)->ext); in sctp_sched_prio_enqueue()
267 soute = SCTP_SO(&q->asoc->stream, sid)->ext; in sctp_sched_prio_dequeue_done()
287 sout = SCTP_SO(stream, sid); in sctp_sched_prio_sched_all()
H A Dstream_sched_fc.c30 struct sctp_stream_out_ext *soute = SCTP_SO(stream, sid)->ext; in sctp_sched_wfq_set()
42 struct sctp_stream_out_ext *soute = SCTP_SO(stream, sid)->ext; in sctp_sched_wfq_get()
70 struct sctp_stream_out_ext *soute = SCTP_SO(stream, sid)->ext; in sctp_sched_fc_init_sid()
108 sctp_sched_fc_sched(stream, SCTP_SO(stream, sid)->ext); in sctp_sched_fc_enqueue()
140 soute = SCTP_SO(stream, sid)->ext; in sctp_sched_fc_dequeue_done()
144 pos = SCTP_SO(stream, i)->ext; in sctp_sched_fc_dequeue_done()
178 if (SCTP_SO(stream, sid)->ext) in sctp_sched_fc_sched_all()
179 sctp_sched_fc_sched(stream, SCTP_SO(stream, sid)->ext); in sctp_sched_fc_sched_all()
H A Dstream_sched.c139 soute = SCTP_SO(stream, i)->ext; in sctp_sched_free_sched()
170 if (!SCTP_SO(&asoc->stream, i)->ext) in sctp_sched_set_sched()
212 if (!SCTP_SO(&asoc->stream, sid)->ext) { in sctp_sched_set_value()
229 if (!SCTP_SO(&asoc->stream, sid)->ext) in sctp_sched_get_value()
247 sout = SCTP_SO(&q->asoc->stream, sid); in sctp_sched_dequeue_done()
267 struct sctp_stream_out_ext *ext = SCTP_SO(stream, sid)->ext; in sctp_sched_init_sid()
H A Dstream_sched_rr.c88 INIT_LIST_HEAD(&SCTP_SO(stream, sid)->ext->rr_list); in sctp_sched_rr_init_sid()
107 sctp_sched_rr_sched(stream, SCTP_SO(stream, sid)->ext); in sctp_sched_rr_enqueue()
141 soute = SCTP_SO(&q->asoc->stream, sid)->ext; in sctp_sched_rr_dequeue_done()
160 soute = SCTP_SO(stream, sid)->ext; in sctp_sched_rr_sched_all()
H A Dchunk.c315 SCTP_SO(&chunk->asoc->stream, in sctp_chunk_abandoned()
330 SCTP_SO(&chunk->asoc->stream, in sctp_chunk_abandoned()
H A Doutqueue.c69 oute = SCTP_SO(&q->asoc->stream, stream)->ext; in sctp_outq_head_data()
90 oute = SCTP_SO(&q->asoc->stream, stream)->ext; in sctp_outq_tail_data()
361 streamout = SCTP_SO(&asoc->stream, chk->sinfo.sinfo_stream); in sctp_prsctp_prune_sent()
403 sout = SCTP_SO(&asoc->stream, chk->sinfo.sinfo_stream); in sctp_prsctp_prune_unsent()
1086 __u8 stream_state = SCTP_SO(&ctx->asoc->stream, sid)->state; in sctp_outq_flush_data()
H A Dsocket.c1809 if (unlikely(!SCTP_SO(&asoc->stream, sinfo->sinfo_stream)->ext)) { in sctp_sendmsg_to_asoc()
7500 streamoute = SCTP_SO(&asoc->stream, params.sprstat_sid)->ext; in sctp_getsockopt_pr_streamstatus()
/linux/include/net/sctp/
H A Dstructs.h1499 #define SCTP_SO(s, i) sctp_stream_out((s), (i)) macro