HomeSort by: relevance | last modified time | path
    Searched defs:nsqtd (Results 1 - 1 of 1) sorted by relevancy

  /src/sys/dev/usb/
ehci.c 3050 size_t nsqtd = (!rd && (flags & USBD_FORCE_SHORT_XFER)) ? 1 : 0; local in function:ehci_alloc_sqtd_chain
3051 nsqtd += howmany(alen, EHCI_PAGE_SIZE);
3052 exfer->ex_sqtds = kmem_zalloc(sizeof(ehci_soft_qtd_t *) * nsqtd,
3054 exfer->ex_nsqtd = nsqtd;
3056 DPRINTF("xfer %#jx len %jd nsqtd %jd flags %jx", (uintptr_t)xfer,
3057 alen, nsqtd, flags);
3077 kmem_free(exfer->ex_sqtds, sizeof(ehci_soft_qtd_t *) * nsqtd);
3213 KASSERTMSG(j < exfer->ex_nsqtd, "j=%zu nsqtd=%zu", j,

Completed in 13 milliseconds