Lines Matching defs:queue

75 	"Adapter queue depth when throttled due to I/O timeout. Default: 16");
87 MODULE_PARM_DESC(rdpq_enable, "Allocate reply queue in chunks for large queue depth enable/disable Default: enable(1)");
91 MODULE_PARM_DESC(dual_qdepth_disable, "Disable dual queue depth feature. Default: 0");
1987 * set device queue depth to can_queue
1988 * set device queue depth to fw assisted qd
2037 * set device queue depth
2247 * megasas_check_and_restore_queue_depth - Check if queue depth needs to be
2797 "reset queue\n",
3197 /* we never use READ queue, so can't cheat blk-mq */
3205 * The poll queue(s) doesn't have an IRQ (and hence IRQ
3534 * calling wake_up() on the wait queue.
3555 * wakes up all functions waiting on the same wait queue.
3855 "on the internal reset queue,"
3863 "detected on the internal queue, issue again.\n",
3896 * Move the internal reset pending commands to a deferred queue.
3899 * pending queue. This queue would be flushed after successful
3919 "on the defer queue as internal\n",
5489 * Prepare a init frame. Note the init frame points to queue info
5492 * queue info structure
5590 * Allocate memory for reply queue. Length of reply queue should
5594 * values in this circular reply queue. This circular queue is a fairly
5595 * typical producer-consumer queue. FW is the producer (of completed
5605 dev_printk(KERN_DEBUG, &instance->pdev->dev, "Out of DMA mem for reply queue\n");
5836 unsigned int queue, cpu, low_latency_index_start;
5840 for (queue = low_latency_index_start; queue < instance->msix_vectors; queue++) {
5841 mask = pci_irq_get_affinity(instance->pdev, queue);
5846 instance->reply_map[cpu] = queue;
5851 queue = low_latency_index_start;
5853 instance->reply_map[cpu] = queue;
5854 if (queue == (instance->msix_vectors - 1))
5855 queue = low_latency_index_start;
5857 queue++;
5930 * msix_vectors is always within a range of FW supported reply queue.
6163 * reply queue mode is enabled.
6166 * reply queue mode is enabled.
6222 * For rest of fusion adapters, 1 additional reply queue will be
6228 * MFI adapters supports single MSI-x so single reply queue
7753 /* cancel the delayed work if this work still in queue */
7990 /* cancel the delayed work if this work still in queue*/
8136 * This function adds the calling process to a driver global queue. When an
8137 * event occurs, SIGIO will be sent to all processes in this queue.