Lines Matching refs:can_queue
354 int can_queue; in fc_fcp_can_queue_ramp_up() local
369 can_queue = lport->host->can_queue << 1; in fc_fcp_can_queue_ramp_up()
370 if (can_queue >= si->max_can_queue) { in fc_fcp_can_queue_ramp_up()
371 can_queue = si->max_can_queue; in fc_fcp_can_queue_ramp_up()
374 lport->host->can_queue = can_queue; in fc_fcp_can_queue_ramp_up()
376 "can_queue to %d.\n", can_queue); in fc_fcp_can_queue_ramp_up()
396 int can_queue; in fc_fcp_can_queue_ramp_down() local
408 can_queue = lport->host->can_queue; in fc_fcp_can_queue_ramp_down()
409 can_queue >>= 1; in fc_fcp_can_queue_ramp_down()
410 if (!can_queue) in fc_fcp_can_queue_ramp_down()
411 can_queue = 1; in fc_fcp_can_queue_ramp_down()
412 lport->host->can_queue = can_queue; in fc_fcp_can_queue_ramp_down()
442 "reducing can_queue to %d.\n", lport->host->can_queue); in fc_fcp_frame_alloc()
1882 lport->host->can_queue); in fc_queuecommand()
2298 si->max_can_queue = lport->host->can_queue; in fc_fcp_init()