Lines Matching refs:can_queue
360 int can_queue; in fc_fcp_can_queue_ramp_up() local
375 can_queue = lport->host->can_queue << 1; in fc_fcp_can_queue_ramp_up()
376 if (can_queue >= si->max_can_queue) { in fc_fcp_can_queue_ramp_up()
377 can_queue = si->max_can_queue; in fc_fcp_can_queue_ramp_up()
380 lport->host->can_queue = can_queue; in fc_fcp_can_queue_ramp_up()
382 "can_queue to %d.\n", can_queue); in fc_fcp_can_queue_ramp_up()
402 int can_queue; in fc_fcp_can_queue_ramp_down() local
414 can_queue = lport->host->can_queue; in fc_fcp_can_queue_ramp_down()
415 can_queue >>= 1; in fc_fcp_can_queue_ramp_down()
416 if (!can_queue) in fc_fcp_can_queue_ramp_down()
417 can_queue = 1; in fc_fcp_can_queue_ramp_down()
418 lport->host->can_queue = can_queue; in fc_fcp_can_queue_ramp_down()
449 "reducing can_queue to %d.\n", lport->host->can_queue); in fc_fcp_frame_alloc()
1893 lport->host->can_queue); in fc_queuecommand()
2311 si->max_can_queue = lport->host->can_queue; in fc_fcp_init()