Lines Matching refs:can_queue
359 int can_queue; in fc_fcp_can_queue_ramp_up() local
374 can_queue = lport->host->can_queue << 1; in fc_fcp_can_queue_ramp_up()
375 if (can_queue >= si->max_can_queue) { in fc_fcp_can_queue_ramp_up()
376 can_queue = si->max_can_queue; in fc_fcp_can_queue_ramp_up()
379 lport->host->can_queue = can_queue; in fc_fcp_can_queue_ramp_up()
381 "can_queue to %d.\n", can_queue); in fc_fcp_can_queue_ramp_up()
401 int can_queue; in fc_fcp_can_queue_ramp_down() local
413 can_queue = lport->host->can_queue; in fc_fcp_can_queue_ramp_down()
414 can_queue >>= 1; in fc_fcp_can_queue_ramp_down()
415 if (!can_queue) in fc_fcp_can_queue_ramp_down()
416 can_queue = 1; in fc_fcp_can_queue_ramp_down()
417 lport->host->can_queue = can_queue; in fc_fcp_can_queue_ramp_down()
447 "reducing can_queue to %d.\n", lport->host->can_queue); in fc_fcp_frame_alloc()
1888 lport->host->can_queue); in fc_queuecommand()
2304 si->max_can_queue = lport->host->can_queue; in fc_fcp_init()