Lines Matching defs:queue

24  *		Alan Cox	:	Transmit queue code does relevant
25 * stunts to keep the queue safe.
62 * the backlog queue.
67 * J Hadi Salim : - Backlog queue sampling
398 * Device drivers call our routines to queue packets here. We empty the
399 * queue in the local softnet handler.
2247 * start_xmit function of one device into the receive queue
2592 /* Need to add tx-queue to this CPU's/rx-queue's existing map */
2600 /* Need to allocate new map to store tx-queue on this CPU's/rx-queue's
2639 /* If queue belongs to subordinate dev use its map */
2665 /* allocate memory for queue storage */
2712 /* add tx-queue to CPU/rx-queue maps */
2770 /* update Tx queue numa node */
2779 /* removes tx-queue from unused CPUs/rx-queues */
2922 /* Provide a way for Tx queue to find the tc_to_txq map or
3816 * This is a work-conserving queue; there are no old skbs
4091 * I notice this method can also return errors from the queue disciplines,
4152 /* The device has no queue. Common case for software devices:
4191 net_crit_ratelimited("Virtual device %s asks to queue packet!\n",
4317 /* Should we steer this flow to a different hardware queue? */
4351 * CPU from the RPS map of the receiving queue for a given skb.
4370 "%s received packet on queue %u, but number "
4406 * we can look at the local (per receive queue) flow table
4413 * different from current CPU (one in the rx-queue flow
4417 * - The current CPU's queue tail has advanced beyond the
4456 * @rxq_index: RX queue index
4504 * If yes, queue it to our IPI list and return 1
4564 * enqueue_to_backlog is called to queue an skb to a per CPU backlog
4565 * queue (may be a remote CPU queue).
4593 * We can use non atomic operation since we own the queue lock
4625 "%s received packet on queue %u, but number "
8678 * dev_change_tx_queue_len - Change TX queue length of a netdevice
8680 * @new_len: new tx queue length
9826 /* XDP RX-queue setup */
9857 struct netdev_queue *queue, void *_unused)
9859 /* Initialize queue lock */
9860 spin_lock_init(&queue->_xmit_lock);
9861 netdev_set_xmit_lockdep_class(&queue->_xmit_lock, dev->type);
9862 queue->xmit_lock_owner = -1;
9863 netdev_queue_numa_node_write(queue, NUMA_NO_NODE);
9864 queue->dev = dev;
9866 dql_init(&queue->dql, HZ);
10208 * happens, we simply run the queue
10415 struct netdev_queue *queue = dev_ingress_queue(dev);
10418 if (queue)
10419 return queue;
10420 queue = kzalloc(sizeof(*queue), GFP_KERNEL);
10421 if (!queue)
10423 netdev_init_one_queue(dev, queue, NULL);
10424 RCU_INIT_POINTER(queue->qdisc, &noop_qdisc);
10425 queue->qdisc_sleeping = &noop_qdisc;
10426 rcu_assign_pointer(dev->ingress_queue, queue);
10428 return queue;
10459 * for each queue on the device.
10944 /* Append completion queue from offline CPU. */
10948 /* Append output queue from offline CPU. */