Don't try to free() map in bus_dmamap_destroy() when it's
set to &nobounce_dmamap. A similar bug was fixed by wpaul in revision 1.19 of sys/alpha/alpha/busdma_machdep.c.
This commit is contained in:
parent
411359429f
commit
1d8dc7e4a3
@ -325,7 +325,7 @@ bus_dmamap_destroy(bus_dma_tag_t dmat, bus_dmamap_t map)
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
if (map != NULL) {
|
if (map != NULL && map != &nobounce_dmamap) {
|
||||||
if (STAILQ_FIRST(&map->bpages) != NULL)
|
if (STAILQ_FIRST(&map->bpages) != NULL)
|
||||||
return (EBUSY);
|
return (EBUSY);
|
||||||
free(map, M_DEVBUF);
|
free(map, M_DEVBUF);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user