MCPcopy Create free account
hub / github.com/F-Stack/f-stack / bus_dmamap_create

Function bus_dmamap_create

freebsd/x86/include/bus_dma.h:54–61  ·  view source on GitHub ↗

* Allocate a handle for mapping from kva/uva/physical * address space into bus device space. */

Source from the content-addressed store, hash-verified

52 * address space into bus device space.
53 */
54static inline int
55bus_dmamap_create(bus_dma_tag_t dmat, int flags, bus_dmamap_t *mapp)
56{
57 struct bus_dma_tag_common *tc;
58
59 tc = (struct bus_dma_tag_common *)dmat;
60 return (tc->impl->map_create(dmat, flags, mapp));
61}
62
63/*
64 * Destroy a handle for mapping from kva/uva/physical

Callers 2

iflib_txsd_allocFunction · 0.50
iflib_rxsd_allocFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected