Lines Matching refs:can_queue
347 int can_queue; in fc_fcp_can_queue_ramp_up() local
362 can_queue = lport->host->can_queue << 1; in fc_fcp_can_queue_ramp_up()
363 if (can_queue >= si->max_can_queue) { in fc_fcp_can_queue_ramp_up()
364 can_queue = si->max_can_queue; in fc_fcp_can_queue_ramp_up()
367 lport->host->can_queue = can_queue; in fc_fcp_can_queue_ramp_up()
369 "can_queue to %d.\n", can_queue); in fc_fcp_can_queue_ramp_up()
389 int can_queue; in fc_fcp_can_queue_ramp_down() local
400 can_queue = lport->host->can_queue; in fc_fcp_can_queue_ramp_down()
401 can_queue >>= 1; in fc_fcp_can_queue_ramp_down()
402 if (!can_queue) in fc_fcp_can_queue_ramp_down()
403 can_queue = 1; in fc_fcp_can_queue_ramp_down()
404 lport->host->can_queue = can_queue; in fc_fcp_can_queue_ramp_down()
406 "Reducing can_queue to %d.\n", can_queue); in fc_fcp_can_queue_ramp_down()
2245 si->max_can_queue = lport->host->can_queue; in fc_fcp_init()