Lines Matching defs:SDEBUG_CANQUEUE
214 /* SDEBUG_CANQUEUE is the maximum number of commands that can be queued
219 * but cannot exceed SDEBUG_CANQUEUE .
222 #define SDEBUG_CANQUEUE (SDEBUG_CANQUEUE_WORDS * BITS_PER_LONG)
223 #define DEF_CMD_PER_LUN SDEBUG_CANQUEUE
754 static int sdebug_max_queue = SDEBUG_CANQUEUE; /* per submit queue */
6381 (n <= SDEBUG_CANQUEUE) &&
6891 if ((sdebug_max_queue > SDEBUG_CANQUEUE) || (sdebug_max_queue < 1)) {
6892 pr_err("max_queue must be in range [1, %d]\n", SDEBUG_CANQUEUE);
6896 if ((sdebug_host_max_queue > SDEBUG_CANQUEUE) ||
6899 SDEBUG_CANQUEUE);
7312 if (qdepth > SDEBUG_CANQUEUE) {
7313 qdepth = SDEBUG_CANQUEUE;
7315 qdepth, SDEBUG_CANQUEUE);
7695 .can_queue = SDEBUG_CANQUEUE,