Searched refs:queue (Results 401 - 425 of 1381) sorted by relevance

<<11121314151617181920>>

/linux-master/drivers/atm/
H A Didt77252.c95 struct sk_buff *, int queue);
100 static void add_rx_skb(struct idt77252_dev *, int queue,
582 sb_pool_add(struct idt77252_dev *card, struct sk_buff *skb, int queue) argument
584 struct sb_pool *pool = &card->sbpool[queue];
595 IDT77252_PRV_POOL(skb) = POOL_HANDLE(queue, index);
604 unsigned int queue, index; local
609 queue = POOL_QUEUE(handle);
610 if (queue > 3)
617 card->sbpool[queue].skb[index] = NULL;
623 unsigned int queue, inde local
1239 struct sk_buff *queue; local
1787 idt77252_fbq_full(struct idt77252_dev *card, int queue) argument
1793 push_rx_skb(struct idt77252_dev *card, struct sk_buff *skb, int queue) argument
1839 add_rx_skb(struct idt77252_dev *card, int queue, unsigned int size, unsigned int count) argument
[all...]
/linux-master/drivers/media/pci/saa7134/
H A Dsaa7134-core.c273 } else if (list_empty(&q->queue)) {
274 list_add_tail(&buf->entry, &q->queue);
276 next = list_entry(q->queue.next, struct saa7134_buf,
282 list_add_tail(&buf->entry, &q->queue);
309 if (!list_empty(&q->queue)) {
310 /* activate next one from queue */
311 buf = list_entry(q->queue.next, struct saa7134_buf, entry);
313 buf, q->queue.prev, q->queue.next);
315 if (!list_empty(&q->queue))
[all...]
/linux-master/drivers/usb/gadget/udc/
H A Dmax3420_udc.c151 struct list_head queue; member in struct:max3420_req
158 struct list_head queue; member in struct:max3420_ep
691 if (list_empty(&ep->queue))
694 req = list_first_entry(&ep->queue, struct max3420_req, queue);
732 list_del_init(&req->queue);
962 list_for_each_entry_safe(req, r, &ep->queue, queue) {
963 list_del_init(&req->queue);
1036 list_add_tail(&req->queue,
[all...]
H A Domap_udc.h134 struct list_head queue; member in struct:omap_req
141 struct list_head queue; member in struct:omap_ep
H A Dgr_udc.h152 struct list_head queue; member in struct:gr_ep
163 struct list_head queue; member in struct:gr_request
H A Dpxa25x_udc.h39 struct list_head queue; member in struct:pxa25x_ep
61 struct list_head queue; member in struct:pxa25x_request
H A Dnet2280.c335 * advance the queue; do it pio-style, by hand.
384 INIT_LIST_HEAD(&ep->queue);
460 INIT_LIST_HEAD(&ep->queue);
561 INIT_LIST_HEAD(&req->queue);
593 WARN_ON(!list_empty(&req->queue));
950 list_del_init(&req->queue);
966 /* don't modify queue heads during completion callback */
995 !list_empty(&req->queue)) {
1023 ep_vdbg(dev, "%s queue req %p, len %d buf %p\n",
1031 /* kickstart this i/o queue
[all...]
/linux-master/drivers/infiniband/hw/mana/
H A Dmain.c241 struct mana_ib_queue *queue)
246 queue->umem = NULL;
247 queue->id = INVALID_QUEUE_ID;
248 queue->gdma_region = GDMA_INVALID_DMA_REGION;
257 err = mana_ib_create_zero_offset_dma_region(mdev, umem, &queue->gdma_region);
262 queue->umem = umem;
264 ibdev_dbg(&mdev->ib_dev, "created dma region 0x%llx\n", queue->gdma_region);
272 void mana_ib_destroy_queue(struct mana_ib_dev *mdev, struct mana_ib_queue *queue) argument
277 mana_ib_gd_destroy_dma_region(mdev, queue->gdma_region);
278 ib_umem_release(queue
240 mana_ib_create_queue(struct mana_ib_dev *mdev, u64 addr, u32 size, struct mana_ib_queue *queue) argument
[all...]
/linux-master/drivers/net/wireless/ralink/rt2x00/
H A Drt2x00usb.h359 * rt2x00usb_kick_queue - Kick data queue
360 * @queue: Data queue to kick
362 * This will walk through all entries of the queue and push all pending
365 void rt2x00usb_kick_queue(struct data_queue *queue);
368 * rt2x00usb_flush_queue - Flush data queue
369 * @queue: Data queue to stop
372 * This will walk through all entries of the queue and will optionally
376 void rt2x00usb_flush_queue(struct data_queue *queue, boo
[all...]
/linux-master/drivers/pps/
H A Dkapi.c104 init_waitqueue_head(&pps->queue);
216 wake_up_interruptible_all(&pps->queue);
/linux-master/fs/notify/
H A Dnotification.c7 * Basic idea behind the notification queue: An fsnotify group (like inotify)
10 * event to the group notify queue. Since a single event might need to be on
12 * queue and instead add a small "event_holder" to each queue. This event_holder
14 * going to end up on one, and only one, notification queue we embed one
71 * Try to add an event to the notification queue.
72 * The group can later pull this event off the queue to deal with.
76 * 0 if the event was added to a queue
78 * 2 if the event was not queued - either the queue of events has overflown
109 goto queue;
[all...]
/linux-master/sound/oss/dmasound/
H A Ddmasound.h203 * Sound queue stuff, the heart of the driver
207 /* buffers allocated for this queue */
237 #define WAKE_UP(queue) (wake_up_interruptible(&queue))
/linux-master/drivers/input/rmi4/
H A Drmi_f54.c123 struct vb2_queue queue; member in struct:f54_data
706 /* initialize the queue */
708 f54->queue = rmi_f54_queue;
709 f54->queue.drv_priv = f54;
710 f54->queue.lock = &f54->lock;
711 f54->queue.dev = &fn->dev;
713 ret = vb2_queue_init(&f54->queue);
721 f54->vdev.queue = &f54->queue;
/linux-master/block/
H A Dblk-crypto-sysfs.c6 * crypto capabilities of devices via /sys/block/$disk/queue/crypto/.
127 * subdirectory in sysfs (/sys/block/$disk/queue/crypto/).
131 struct request_queue *q = disk->queue;
155 kobject_put(disk->queue->crypto_kobject);
/linux-master/drivers/usb/fotg210/
H A Dfotg210-udc.h214 struct list_head queue; member in struct:fotg210_request
221 struct list_head queue; member in struct:fotg210_ep
/linux-master/drivers/staging/media/tegra-video/
H A Dvi.h118 * @video_lock: protects the @format and @queue fields
152 * @queue: vb2 buffers queue
164 * @done_lock: protects the capture done queue list
184 /* protects the @format and @queue fields */
202 struct vb2_queue queue; member in struct:tegra_vi_channel
215 /* protects the capture done queue list */
239 * @queue: buffer list entry in the channel queued buffers list
247 struct list_head queue; member in struct:tegra_channel_buffer
H A Dvideo.c40 if (ev->type == V4L2_EVENT_SOURCE_CHANGE && vb2_is_streaming(&chan->queue))
41 vb2_queue_error(&chan->queue);
/linux-master/drivers/net/ethernet/sfc/falcon/
H A Dselftest.c130 * Interrupt and event queue testing
231 "channel %d event queue passed (with%s NAPI)\n",
240 "channel %d timed out waiting for event queue\n",
245 "during event queue test\n",
457 "TX queue %d could not transmit packet %d of "
458 "%d in %s loopback test\n", tx_queue->queue,
490 * skbs not already completed will be free'd when the queue is flushed */
508 "TX queue %d saw only %d out of an expected %d "
510 tx_queue->queue, tx_done, state->packet_count,
519 "TX queue
[all...]
/linux-master/drivers/net/wireless/mediatek/mt76/
H A Dmt792x_debugfs.c103 char *queue; member in struct:__anon1973
119 queue_map[i].queue, q->queued, q->head,
/linux-master/drivers/net/ethernet/ti/
H A Dam65-cpsw-qos.h101 int am65_cpsw_qos_ndo_tx_p0_set_maxrate(struct net_device *ndev, int queue, u32 rate_mbps);
121 int queue,
120 am65_cpsw_qos_ndo_tx_p0_set_maxrate(struct net_device *ndev, int queue, u32 rate_mbps) argument
/linux-master/tools/perf/util/
H A Dcs-etm.c129 * encode the etm queue number as the upper 16 bit and the channel as
405 * that were accumulated in the traceID queue. Since there can
407 * what traceID queue needs servicing.
435 static void cs_etm__clear_packet_queue(struct cs_etm_packet_queue *queue) argument
439 queue->head = 0;
440 queue->tail = 0;
441 queue->packet_count = 0;
443 queue->packet_buffer[i].isa = CS_ETM_ISA_UNKNOWN;
444 queue->packet_buffer[i].start_addr = CS_ETM_INVAL_ADDR;
445 queue
478 struct auxtrace_queue *queue; local
1104 cs_etm__setup_queue(struct cs_etm_auxtrace *etm, struct auxtrace_queue *queue, unsigned int queue_nr, bool formatted, int sample_cpu) argument
1349 struct auxtrace_queue *queue; local
2538 struct auxtrace_queue *queue = &etm->queues.queue_array[i]; local
2567 struct auxtrace_queue *queue; local
[all...]
/linux-master/drivers/net/ethernet/mellanox/mlx5/core/
H A Den_dim.c68 void *queue)
80 dim->priv = queue;
65 mlx5e_dim_enable(struct mlx5_core_dev *mdev, void (*work_fun)(struct work_struct *), int cpu, u8 cq_period_mode, struct mlx5_core_cq *mcq, void *queue) argument
/linux-master/drivers/net/ethernet/intel/ice/
H A Dice_tc_lib.h60 u16 queue; /* forward to queue */ member in struct:ice_tc_flower_action::__anon600::__anon602
61 /* To add filter in HW, absolute queue number in global
188 * For forward to queue, as long as dest_vsi is valid and it is of type
190 * NOTE: For forward to queue, correct dest_vsi is still set in tc_fltr based
191 * on destination queue specified.
213 struct ice_vsi *ice_locate_vsi_using_queue(struct ice_vsi *vsi, int queue);
/linux-master/drivers/media/platform/mediatek/vcodec/decoder/
H A Dmtk_vcodec_dec_drv.h93 * @get_cap_buffer: get capture buffer from capture queue
138 * @q_data: store information of input and output queue of the context
150 * @queue: waitqueue that can be used to wait for this context to finish
161 * @capture_fourcc: capture queue type in V4L2 pixel format
173 * @msg_queue: msg queue used to store lat buffer information.
197 wait_queue_head_t queue[MTK_VDEC_HW_MAX]; member in struct:mtk_vcodec_dec_ctx
245 * @decode_workqueue: decode work queue
253 * @core_workqueue: queue used for core hardware decode
326 wake_up_interruptible(&ctx->queue[hw_id]);
/linux-master/drivers/block/aoe/
H A Daoecmd.c52 /* io completion queue */
373 struct sk_buff_head queue; local
401 __skb_queue_head_init(&queue);
402 __skb_queue_tail(&queue, skb);
403 aoenet_xmit(&queue);
412 aoecmd_cfg_pkts(ushort aoemajor, unsigned char aoeminor, struct sk_buff_head *queue) argument
435 __skb_queue_tail(queue, skb);
454 struct sk_buff_head queue; local
491 __skb_queue_head_init(&queue);
492 __skb_queue_tail(&queue, sk
584 struct sk_buff_head queue; local
1359 struct sk_buff_head queue; local
1523 struct sk_buff_head queue; local
[all...]

Completed in 384 milliseconds

<<11121314151617181920>>