Lines Matching defs:allqueues
3271 struct ibmvnic_sub_crq_queue **allqueues;
3279 allqueues = kcalloc(total_queues, sizeof(*allqueues), GFP_KERNEL);
3280 if (!allqueues)
3284 allqueues[i] = init_sub_crq_queue(adapter);
3285 if (!allqueues[i]) {
3324 adapter->tx_scrq[i] = allqueues[i];
3335 adapter->rx_scrq[i] = allqueues[i + adapter->req_tx_queues];
3340 kfree(allqueues);
3348 release_sub_crq_queue(adapter, allqueues[i], 1);
3349 kfree(allqueues);