Lines Matching refs:tws_queue_depth
49 int tws_queue_depth = TWS_MAX_REQS; variable
407 for ( i=0; i< tws_queue_depth; i++) { in tws_detach()
516 if ( tws_queue_depth > TWS_MAX_REQS ) in tws_init()
517 tws_queue_depth = TWS_MAX_REQS; in tws_init()
518 if (tws_queue_depth < TWS_RESERVED_REQS+1) in tws_init()
519 tws_queue_depth = TWS_RESERVED_REQS+1; in tws_init()
524 dma_mem_size = (sizeof(struct tws_command_packet) * tws_queue_depth) + in tws_init()
597 sc->reqs = malloc(sizeof(struct tws_request) * tws_queue_depth, M_TWS, in tws_init()
599 sc->sense_bufs = malloc(sizeof(struct tws_sense) * tws_queue_depth, M_TWS, in tws_init()
675 for ( i=0; i< tws_queue_depth; i++) in tws_init_reqs()
892 TUNABLE_INT("hw.tws.queue_depth", &tws_queue_depth);