Lines Matching refs:BUG_QUEUE

364         tp->tx_fcb_head[BUG_QUEUE] = (FCBlock *)smctr_malloc(dev,  in smctr_alloc_shared_memory()
365 sizeof(FCBlock) * tp->num_tx_fcbs[BUG_QUEUE]); in smctr_alloc_shared_memory()
374 tp->tx_bdb_head[BUG_QUEUE] = (BDBlock *)smctr_malloc(dev, in smctr_alloc_shared_memory()
375 sizeof(BDBlock) * tp->num_tx_bdbs[BUG_QUEUE]); in smctr_alloc_shared_memory()
404 tp->tx_buff_head[BUG_QUEUE] in smctr_alloc_shared_memory()
405 = (__u16 *)smctr_malloc(dev, tp->tx_buff_size[BUG_QUEUE]); in smctr_alloc_shared_memory()
406 tp->tx_buff_curr[BUG_QUEUE] = tp->tx_buff_head[BUG_QUEUE]; in smctr_alloc_shared_memory()
407 tp->tx_buff_end[BUG_QUEUE] = (__u16 *)smctr_malloc(dev, 0); in smctr_alloc_shared_memory()
1299 mem_used += sizeof(FCBlock) * tp->num_tx_fcbs[BUG_QUEUE]; in smctr_get_num_rx_bdbs()
1304 mem_used += sizeof(BDBlock) * tp->num_tx_bdbs[BUG_QUEUE]; in smctr_get_num_rx_bdbs()
1319 mem_used += tp->tx_buff_size[BUG_QUEUE]; in smctr_get_num_rx_bdbs()
1675 tp->num_tx_fcbs [BUG_QUEUE] = NUM_BUG_TX_FCBS; in smctr_init_card_real()
1676 tp->num_tx_bdbs [BUG_QUEUE] = NUM_BUG_TX_BDBS; in smctr_init_card_real()
1677 tp->tx_buff_size [BUG_QUEUE] = BUG_TX_BUFFER_MEMORY; in smctr_init_card_real()
1678 tp->tx_buff_used [BUG_QUEUE] = 0; in smctr_init_card_real()
1679 tp->tx_queue_status [BUG_QUEUE] = NOT_TRANSMITING; in smctr_init_card_real()
2129 if((err = smctr_tx_complete(dev, BUG_QUEUE)) != SUCCESS) in smctr_interrupt()
2154 tp->tx_queue_status[BUG_QUEUE] = NOT_TRANSMITING; in smctr_interrupt()
2155 if((err = smctr_tx_complete(dev, BUG_QUEUE)) != SUCCESS) in smctr_interrupt()
2157 … if((err = smctr_restart_tx_chain(dev, BUG_QUEUE)) != SUCCESS) in smctr_interrupt()
5406 if(queue == BUG_QUEUE) in smctr_tx_complete()