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");
1977 * set device queue depth to can_queue
1978 * set device queue depth to fw assisted qd
2027 * set device queue depth
2237 * megasas_check_and_restore_queue_depth - Check if queue depth needs to be
2787 "reset queue\n",
3498 * calling wake_up() on the wait queue.
3519 * wakes up all functions waiting on the same wait queue.
3821 "on the internal reset queue,"
3829 "detected on the internal queue, issue again.\n",
3862 * Move the internal reset pending commands to a deferred queue.
3865 * pending queue. This queue would be flushed after successful
3885 "on the defer queue as internal\n",
5458 * Prepare a init frame. Note the init frame points to queue info
5461 * queue info structure
5559 * Allocate memory for reply queue. Length of reply queue should
5563 * values in this circular reply queue. This circular queue is a fairly
5564 * typical producer-consumer queue. FW is the producer (of completed
5574 dev_printk(KERN_DEBUG, &instance->pdev->dev, "Out of DMA mem for reply queue\n");
5805 unsigned int queue, cpu, low_latency_index_start;
5809 for (queue = low_latency_index_start; queue < instance->msix_vectors; queue++) {
5810 mask = pci_irq_get_affinity(instance->pdev, queue);
5815 instance->reply_map[cpu] = queue;
5820 queue = low_latency_index_start;
5822 instance->reply_map[cpu] = queue;
5823 if (queue == (instance->msix_vectors - 1))
5824 queue = low_latency_index_start;
5826 queue++;
6107 * reply queue mode is enabled.
6110 * reply queue mode is enabled.
6166 * For rest of fusion adapters, 1 additional reply queue will be
6172 * MFI adapters supports single MSI-x so single reply queue
7698 /* cancel the delayed work if this work still in queue */
7960 /* cancel the delayed work if this work still in queue*/
8106 * This function adds the calling process to a driver global queue. When an
8107 * event occurs, SIGIO will be sent to all processes in this queue.