Searched refs:enqueue (Results 51 - 75 of 102) sorted by relevance

12345

/linux-master/include/net/
H A Dsch_generic.h74 int (*enqueue)(struct sk_buff *skb, member in struct:Qdisc
202 * guarantees wrt potential earlier enqueue() and below
294 int (*enqueue)(struct sk_buff *skb, member in struct:Qdisc_ops
852 return sch->enqueue(skb, sch, to_free);
/linux-master/drivers/staging/rtl8723bs/include/
H A Drtw_mlme.h447 extern signed int rtw_set_key(struct adapter *adapter, struct security_priv *psecuritypriv, signed int keyid, u8 set_tx, bool enqueue);
/linux-master/net/sched/
H A Dsch_prio.c411 .enqueue = prio_enqueue,
H A Dsch_choke.c491 .enqueue = choke_enqueue,
H A Dsch_etf.c494 .enqueue = etf_enqueue_timesortedlist,
H A Dsch_teql.c447 ops->enqueue = teql_enqueue;
H A Dsch_multiq.c388 .enqueue = multiq_enqueue,
H A Dsch_drr.c476 .enqueue = drr_enqueue,
H A Dsch_tbf.c601 .enqueue = tbf_enqueue,
H A Dsch_red.c540 .enqueue = red_enqueue,
H A Dsch_hhf.c701 .enqueue = hhf_enqueue,
H A Dsch_netem.c419 * the first packet to be corrupted, and re-enqueue the remaining frames
492 rootq->enqueue(skb2, rootq, to_free);
1286 .enqueue = netem_enqueue,
H A Dsch_api.c49 which is able to enqueue packets and to dequeue them (when
71 Every discipline has two major routines: enqueue and dequeue.
82 ---enqueue
84 enqueue returns 0, if packet was enqueued successfully.
141 if (qops->enqueue == NULL)
142 qops->enqueue = noop_qdisc_ops.enqueue;
/linux-master/drivers/net/ethernet/freescale/dpaa2/
H A Ddpaa2-xsk.c431 err = priv->enqueue(priv, fq, &fds[total_enqueued], 0,
H A Ddpaa2-eth.h43 /* Set the taildrop threshold (in bytes) to allow the enqueue of a large
362 /* Number of times to retry a frame enqueue before giving up.
554 int (*enqueue)(struct dpaa2_eth_priv *priv, member in struct:dpaa2_eth_priv
H A Ddpaa2-eth.c345 /* try to enqueue all the FDs until the max number of retries is hit */
350 err = priv->enqueue(priv, fq, &fds[total_enqueued],
373 // enqueue the array of XDP_TX frames
1492 err = priv->enqueue(priv, fq, &fd[total_enqueued],
2885 /* enqueue all the frame descriptors */
3606 priv->enqueue = dpaa2_eth_enqueue_qd;
3608 priv->enqueue = dpaa2_eth_enqueue_fq_multiple;
3645 /* We only use Tx FQIDs for FQID-based enqueue, so check
3669 priv->enqueue = dpaa2_eth_enqueue_fq_multiple;
3675 "Error reading Tx FQID, fallback to QDID-based enqueue\
[all...]
/linux-master/drivers/usb/mtu3/
H A Dmtu3_debugfs.c213 ring->enqueue, ring->dequeue);
/linux-master/drivers/bluetooth/
H A Dhci_bcsp.c764 .enqueue = bcsp_enqueue,
H A Dhci_ll.c805 .enqueue = ll_enqueue,
H A Dhci_nokia.c676 .enqueue = nokia_enqueue,
H A Dhci_ldisc.c286 hu->proto->enqueue(hu, skb);
/linux-master/drivers/usb/host/
H A Dxhci-debugfs.c170 dma = xhci_trb_virt_to_dma(ring->enq_seg, ring->enqueue);
230 {"enqueue", xhci_ring_enqueue_show, },
H A Dxhci-trace.h470 __entry->enq = xhci_trb_virt_to_dma(ring->enq_seg, ring->enqueue);
H A Dxhci-mem.c306 /* The ring is empty, so the enqueue pointer == dequeue pointer */
307 ring->enqueue = ring->first_seg->trbs;
309 ring->dequeue = ring->enqueue;
1034 * host to our enqueue pointer. This should only be called after a
1039 ep_ring->enqueue)
/linux-master/kernel/sched/
H A Drt.c876 int enqueue = 0; local
907 enqueue = 1;
925 enqueue = 1;
930 if (enqueue)
1382 * Don't enqueue the group if its throttled, or when empty.
1507 * dequeue followed by enqueue.

Completed in 692 milliseconds

12345