Searched refs:enqueue (Results 1 - 25 of 102) sorted by relevance

12345

/linux-master/net/sched/
H A Dsch_blackhole.c31 .enqueue = blackhole_enqueue,
H A Dsch_fifo.c186 .enqueue = pfifo_enqueue,
201 .enqueue = bfifo_enqueue,
216 .enqueue = pfifo_tail_enqueue,
H A Dsch_cbs.c81 int (*enqueue)(struct sk_buff *skb, struct Qdisc *sch, member in struct:cbs_sched_data
95 err = child->ops->enqueue(skb, child, to_free);
136 return q->enqueue(skb, sch, to_free);
260 q->enqueue = cbs_enqueue_soft;
303 q->enqueue = cbs_enqueue_offload;
425 q->enqueue = cbs_enqueue_soft;
539 .enqueue = cbs_enqueue,
H A Dsch_pie.c89 bool enqueue = false; local
98 enqueue = true;
105 enqueue = true;
108 /* we can enqueue the packet */
109 if (enqueue) {
110 /* Set enqueue time only when dq_rate_estimator is disabled. */
548 .enqueue = pie_qdisc_enqueue,
H A Dsch_fq_pie.c29 * - Drops during enqueue only.
137 u8 enqueue = false; local
166 enqueue = true;
174 enqueue = true;
176 if (enqueue) {
177 /* Set enqueue time only when dq_rate_estimator is disabled. */
556 .enqueue = fq_pie_qdisc_enqueue,
H A Dsch_plug.c208 .enqueue = plug_enqueue,
/linux-master/include/net/sctp/
H A Dstream_sched.h33 void (*enqueue)(struct sctp_outq *q, struct sctp_datamsg *msg); member in struct:sctp_sched_ops
/linux-master/drivers/usb/mtu3/
H A Dmtu3_qmu.c149 ring->enqueue = gpd;
205 if (ring->enqueue < ring->end)
206 ring->enqueue++;
208 ring->enqueue = ring->start;
210 return ring->enqueue;
227 struct qmu_gpd *enq = ring->enqueue;
230 if (ring->enqueue < ring->end)
248 struct qmu_gpd *gpd = ring->enqueue;
291 struct qmu_gpd *gpd = ring->enqueue;
524 __func__, epnum, gpd, gpd_current, ring->enqueue);
[all...]
/linux-master/drivers/usb/cdns3/
H A Dcdns3-debug.h128 trb = &priv_ep->trb_pool[priv_ep->enqueue];
131 priv_ep->enqueue, trb,
H A Dcdnsp-ring.c21 * 1. A ring is empty if enqueue == dequeue. This means there will always be at
24 * 2. When incrementing an enqueue or dequeue pointer, if the next TRB is a
29 * 3. A ring is full if enqueue++ (for the definition of increment above)
35 * 2. When a producer increments an enqueue pointer and encounters a toggle bit
39 * 1. Check if ring is full before you enqueue.
41 * Update enqueue pointer between each write (which may update the ring
127 * effect the ring dequeue or enqueue pointers.
185 * @more_trbs_coming: Will you enqueue more TRBs before ringing the doorbell.
194 chain = le32_to_cpu(ring->enqueue->generic.field[3]) & TRB_CHAIN;
197 if (!cdnsp_trb_is_link(ring->enqueue))
[all...]
H A Dcdns3-trace.h466 __field(u8, enqueue)
478 __entry->enqueue = priv_ep->enqueue;
486 __entry->maxburst, __entry->enqueue,
528 __entry->enqueue_idx = priv_req->priv_ep->enqueue;
/linux-master/drivers/staging/rtl8723bs/include/
H A Drtw_cmd.h588 extern u8 rtw_setstakey_cmd(struct adapter *padapter, struct sta_info *sta, u8 unicast_key, bool enqueue);
589 extern u8 rtw_clearstakey_cmd(struct adapter *padapter, struct sta_info *sta, u8 enqueue);
592 u8 rtw_disassoc_cmd(struct adapter *padapter, u32 deauth_timeout_ms, bool enqueue);
593 extern u8 rtw_setopmode_cmd(struct adapter *padapter, enum ndis_802_11_network_infrastructure networktype, bool enqueue);
606 u8 rtw_lps_ctrl_wk_cmd(struct adapter *padapter, u8 lps_ctrl_type, u8 enqueue);
/linux-master/drivers/staging/most/i2c/
H A Di2c.c112 * enqueue - called from MOST core to enqueue a buffer for data transfer
122 static int enqueue(struct most_interface *most_iface, function
318 dev->most_iface.enqueue = enqueue;
/linux-master/net/sctp/
H A Dstream_sched_fc.c197 .enqueue = sctp_sched_fc_enqueue,
215 .enqueue = sctp_sched_fc_enqueue,
H A Dstream_sched.c100 .enqueue = sctp_sched_fcfs_enqueue,
183 n->enqueue(&asoc->outqueue, msg);
H A Dstream_sched_rr.c180 .enqueue = sctp_sched_rr_enqueue,
/linux-master/drivers/usb/gadget/udc/cdns2/
H A Dcdns2-debug.h116 trb = &trbs[ring->enqueue];
120 ring->enqueue, trb, &dma);
H A Dcdns2-trace.h475 __field(u8, enqueue)
484 __entry->enqueue = pep->ring.enqueue;
490 __entry->maxpacket_limit, __entry->enqueue,
538 __entry->enqueue_idx = priv_req->pep->ring.enqueue;
/linux-master/drivers/usb/host/
H A Dxhci-dbgcap.h174 xhci_trb_virt_to_dma((d)->ring_out->enq_seg, (d)->ring_out->enqueue)
176 xhci_trb_virt_to_dma((d)->ring_in->enq_seg, (d)->ring_in->enqueue)
H A Dxhci-ring.c19 * 1. A ring is empty if enqueue == dequeue. This means there will always be at
22 * 2. When incrementing an enqueue or dequeue pointer, if the next TRB is a
27 * 3. A ring is full if enqueue++ (for the definition of increment above)
33 * 2. When a producer increments an enqueue pointer and encounters a toggle bit
37 * 1. Check if ring is full before you enqueue.
39 * Update enqueue pointer between each write (which may update the ring
146 * effect the ring dequeue or enqueue pointers.
217 * @more_trbs_coming: Will you enqueue more TRBs before calling
227 chain = le32_to_cpu(ring->enqueue->generic.field[3]) & TRB_CHAIN;
229 if (last_trb_on_seg(ring->enq_seg, ring->enqueue)) {
[all...]
/linux-master/drivers/usb/early/
H A Dxhci-dbc.c206 ring->enqueue = seg->trbs;
394 trb = ring->enqueue;
400 ++(ring->enqueue);
401 if (ring->enqueue >= &ring->segment->trbs[TRBS_PER_SEGMENT - 1]) {
402 link_trb = ring->enqueue;
408 ring->enqueue = ring->segment->trbs;
487 trb = ring->enqueue;
H A Dxhci-dbc.h118 struct xdbc_trb *enqueue; member in struct:xdbc_ring
/linux-master/drivers/usb/dwc3/
H A Dtrace.h228 __field(u32, enqueue)
239 __entry->enqueue = dep->trb_enqueue;
243 __get_str(name), __entry->trb, __entry->enqueue,
/linux-master/include/linux/
H A Dmost.h155 * The HDM receives MBO for transfer from the core with the call to enqueue().
166 * the call of enqueue() and ends with the call of its complete() routine.
170 * it owns (due to a previous call to enqueue() by the core driver) before it
213 * @enqueue Delivers MBO to the HDM for processing.
243 int (*enqueue)(struct most_interface *iface, int channel_idx, member in struct:most_interface
303 * most_resume_enqueue - allow core to enqueue MBOs again
307 * This clears the enqueue halt flag and enqueues all MBOs currently
/linux-master/drivers/bluetooth/
H A Dhci_uart.h60 int (*enqueue)(struct hci_uart *hu, struct sk_buff *skb); member in struct:hci_uart_proto

Completed in 416 milliseconds

12345