Lines Matching defs:sid
35 __u16 sid = sctp_chunk_stream_no(ch);
37 if (sid < outcnt)
55 static void sctp_stream_free_ext(struct sctp_stream *stream, __u16 sid)
59 if (!SCTP_SO(stream, sid)->ext)
63 sched->free_sid(stream, sid);
64 kfree(SCTP_SO(stream, sid)->ext);
65 SCTP_SO(stream, sid)->ext = NULL;
164 int sctp_stream_init_ext(struct sctp_stream *stream, __u16 sid)
172 SCTP_SO(stream, sid)->ext = soute;
174 ret = sctp_sched_init_sid(stream, sid, GFP_KERNEL);
176 kfree(SCTP_SO(stream, sid)->ext);
177 SCTP_SO(stream, sid)->ext = NULL;
255 __u16 sid = ntohs(str_list[i]);
257 if (SCTP_SO(stream, sid)->ext &&
258 !list_empty(&SCTP_SO(stream, sid)->ext->outq))