Home
last modified time | relevance | path

Searched refs:trbs (Results 1 – 1 of 1) sorted by relevance

/illumos-gate/usr/src/uts/common/io/usb/hcd/xhci/
H A Dxhci_dma.c292 uint_t trbs, int usb_flags) in xhci_transfer_alloc() argument
337 trbs++; in xhci_transfer_alloc()
353 trbs += xt->xt_buffer.xdb_ncookies; in xhci_transfer_alloc()
356 xt->xt_trbs = kmem_zalloc(sizeof (xhci_trb_t) * trbs, kmflags); in xhci_transfer_alloc()
363 xt->xt_trbs_pa = kmem_zalloc(sizeof (uint64_t) * trbs, kmflags); in xhci_transfer_alloc()
365 kmem_free(xt->xt_trbs, sizeof (xhci_trb_t) * trbs); in xhci_transfer_alloc()
375 xt->xt_isoc = kmem_zalloc(sizeof (usb_isoc_pkt_descr_t) * trbs, in xhci_transfer_alloc()
378 kmem_free(xt->xt_trbs_pa, sizeof (uint64_t) * trbs); in xhci_transfer_alloc()
379 kmem_free(xt->xt_trbs, sizeof (xhci_trb_t) * trbs); in xhci_transfer_alloc()
386 xt->xt_ntrbs = trbs; in xhci_transfer_alloc()