ldc_queue_alloc
ldc_queue_alloc(int nentries)
struct ldc_queue *ldc_queue_alloc(bus_dma_tag_t, int);
struct ldc_queue *ldc_queue_alloc(int);
lc->lc_txq = ldc_queue_alloc(sc->sc_dmatag, VDSK_TX_ENTRIES);
lc->lc_txq = ldc_queue_alloc(VDSK_TX_ENTRIES);
lc->lc_rxq = ldc_queue_alloc(sc->sc_dmatag, VDSK_RX_ENTRIES);
lc->lc_rxq = ldc_queue_alloc(VDSK_RX_ENTRIES);
lc->lc_txq = ldc_queue_alloc(VNET_TX_ENTRIES);
lc->lc_rxq = ldc_queue_alloc(VNET_RX_ENTRIES);