Module Name: src Committed By: jakllsch Date: Sat Apr 18 17:31:53 UTC 2020
Modified Files: src/sys/dev/pci: if_msk.c Log Message: msk(4): Avoid bus_dmamap_destroy() in msk_stop() bus_dmamap_destroy() can not be executed in soft interrupt context, and msk_stop() can be called in soft interrupt context. As such, move creation and destruction of tx dmamaps to attach() and detach() functions. To generate a diff of this commit: cvs rdiff -u -r1.98 -r1.99 src/sys/dev/pci/if_msk.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.