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

Function bus_dmamap_destroy

freebsd/x86/include/bus_dma.h:67–74  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

65 * address space into bus device space.
66 */
67static inline int
68bus_dmamap_destroy(bus_dma_tag_t dmat, bus_dmamap_t map)
69{
70 struct bus_dma_tag_common *tc;
71
72 tc = (struct bus_dma_tag_common *)dmat;
73 return (tc->impl->map_destroy(dmat, map));
74}
75
76/*
77 * Allocate a piece of memory that can be efficiently mapped into

Callers 2

iflib_txsd_destroyFunction · 0.50
iflib_rx_sds_freeFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected