Lines Matching refs:doneq
199 /* Bypass command when on a doneq, cmd_complete() will handle */
1361 * @doneq: Queue of commands harvested from the RRQ.
1368 static int process_hrrq(struct hwq *hwq, struct list_head *doneq, int budget)
1398 list_add_tail(&cmd->queue, doneq);
1423 * @doneq: Queue of completed commands.
1427 static void process_cmd_doneq(struct list_head *doneq)
1431 WARN_ON(list_empty(doneq));
1433 list_for_each_entry_safe(cmd, tmp, doneq, queue)
1448 LIST_HEAD(doneq);
1453 num_entries = process_hrrq(hwq, &doneq, budget);
1459 process_cmd_doneq(&doneq);
1475 LIST_HEAD(doneq);
1492 num_entries = process_hrrq(hwq, &doneq, -1);
1498 process_cmd_doneq(&doneq);