Lines Matching refs:can_queue
371 int can_queue; in fc_fcp_can_queue_ramp_up() local
386 can_queue = lport->host->can_queue << 1; in fc_fcp_can_queue_ramp_up()
387 if (can_queue >= si->max_can_queue) { in fc_fcp_can_queue_ramp_up()
388 can_queue = si->max_can_queue; in fc_fcp_can_queue_ramp_up()
391 lport->host->can_queue = can_queue; in fc_fcp_can_queue_ramp_up()
393 "can_queue to %d.\n", can_queue); in fc_fcp_can_queue_ramp_up()
413 int can_queue; in fc_fcp_can_queue_ramp_down() local
425 can_queue = lport->host->can_queue; in fc_fcp_can_queue_ramp_down()
426 can_queue >>= 1; in fc_fcp_can_queue_ramp_down()
427 if (!can_queue) in fc_fcp_can_queue_ramp_down()
428 can_queue = 1; in fc_fcp_can_queue_ramp_down()
429 lport->host->can_queue = can_queue; in fc_fcp_can_queue_ramp_down()
460 "reducing can_queue to %d.\n", lport->host->can_queue); in fc_fcp_frame_alloc()
1905 lport->host->can_queue); in fc_queuecommand()
2324 si->max_can_queue = lport->host->can_queue; in fc_fcp_init()