Lines Matching refs:can_queue
372 int can_queue; in fc_fcp_can_queue_ramp_up() local
387 can_queue = lport->host->can_queue << 1; in fc_fcp_can_queue_ramp_up()
388 if (can_queue >= si->max_can_queue) { in fc_fcp_can_queue_ramp_up()
389 can_queue = si->max_can_queue; in fc_fcp_can_queue_ramp_up()
392 lport->host->can_queue = can_queue; in fc_fcp_can_queue_ramp_up()
394 "can_queue to %d.\n", can_queue); in fc_fcp_can_queue_ramp_up()
414 int can_queue; in fc_fcp_can_queue_ramp_down() local
426 can_queue = lport->host->can_queue; in fc_fcp_can_queue_ramp_down()
427 can_queue >>= 1; in fc_fcp_can_queue_ramp_down()
428 if (!can_queue) in fc_fcp_can_queue_ramp_down()
429 can_queue = 1; in fc_fcp_can_queue_ramp_down()
430 lport->host->can_queue = can_queue; in fc_fcp_can_queue_ramp_down()
461 "reducing can_queue to %d.\n", lport->host->can_queue); in fc_fcp_frame_alloc()
1906 lport->host->can_queue); in fc_queuecommand()
2325 si->max_can_queue = lport->host->can_queue; in fc_fcp_init()