Searched refs:outq (Results 1 – 11 of 11) sorted by relevance
| /linux/tools/testing/selftests/drivers/net/hw/ |
| H A D | tso.py | 22 outq = fcntl.ioctl(sock.fileno(), termios.TIOCOUTQ, one) 23 outq = struct.unpack("I", outq)[0] 24 if outq == 0: 27 ksft_eq(outq, 0)
|
| /linux/net/sctp/ |
| H A D | stream_sched.c | 68 ch = list_entry(stream->out_curr->ext->outq.next, in sctp_sched_fcfs_dequeue() 144 memset_after(soute, 0, outq); in sctp_sched_free_sched() 269 INIT_LIST_HEAD(&ext->outq); in sctp_sched_init_sid()
|
| H A D | stream_sched_rr.c | 125 ch = list_entry(soute->outq.next, struct sctp_chunk, stream_list); in sctp_sched_rr_dequeue() 145 if (list_empty(&soute->outq)) in sctp_sched_rr_dequeue_done()
|
| H A D | stream_sched_fc.c | 126 ch = list_entry(soute->outq.next, struct sctp_chunk, stream_list); in sctp_sched_fc_dequeue() 156 if (list_empty(&soute->outq)) { in sctp_sched_fc_dequeue_done()
|
| H A D | stream_sched_prio.c | 249 ch = list_entry(soute->outq.next, struct sctp_chunk, stream_list); in sctp_sched_prio_dequeue() 272 if (list_empty(&soute->outq)) in sctp_sched_prio_dequeue_done()
|
| H A D | stream.c | 29 struct sctp_outq *outq; in sctp_stream_shrink_out() local 32 outq = &asoc->outqueue; in sctp_stream_shrink_out() 34 list_for_each_entry_safe(ch, temp, &outq->out_chunk_list, list) { in sctp_stream_shrink_out() 40 sctp_sched_dequeue_common(outq, ch); in sctp_stream_shrink_out() 258 !list_empty(&SCTP_SO(stream, sid)->ext->outq)) in sctp_stream_outq_is_empty()
|
| H A D | outqueue.c | 70 list_add(&ch->stream_list, &oute->outq); in sctp_outq_head_data() 91 list_add_tail(&ch->stream_list, &oute->outq); in sctp_outq_tail_data()
|
| /linux/tools/testing/selftests/drivers/net/ |
| H A D | psp.py | 29 outq = fcntl.ioctl(s.fileno(), termios.TIOCOUTQ, one) 30 return struct.unpack("I", outq)[0] 90 outq = _get_outq(s) 91 report = f'sent: {i * len(data) + n} remote len: {rlen} outq: {outq}' 109 outq = 0 111 outq = _get_outq(s) 112 if not force_wait and outq == exp_len: 115 ksft_eq(outq, exp_len)
|
| /linux/drivers/hid/ |
| H A D | hid-wiimote.h | 113 struct wiimote_buf outq[WIIMOTE_BUFSIZE]; member
|
| H A D | hid-wiimote-core.c | 55 wdata->queue.outq[wdata->queue.tail].data, in wiimote_queue_worker() 56 wdata->queue.outq[wdata->queue.tail].size); in wiimote_queue_worker() 95 memcpy(wdata->queue.outq[wdata->queue.head].data, buffer, count); in wiimote_queue() 96 wdata->queue.outq[wdata->queue.head].size = count; in wiimote_queue()
|
| /linux/include/net/sctp/ |
| H A D | structs.h | 1390 struct list_head outq; /* chunks enqueued by this stream */ member
|