Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'dma-mapping-6.11-2024-07-24' of git://git.infradead.org/users/hch/dma-mapping

Pull dma-mapping fix from Christoph Hellwig:

- fix the order of actions in dmam_free_coherent (Lance Richardson)

* tag 'dma-mapping-6.11-2024-07-24' of git://git.infradead.org/users/hch/dma-mapping:
dma: fix call order in dmam_free_coherent

+1 -1
+1 -1
kernel/dma/mapping.c
··· 67 67 { 68 68 struct dma_devres match_data = { size, vaddr, dma_handle }; 69 69 70 - dma_free_coherent(dev, size, vaddr, dma_handle); 71 70 WARN_ON(devres_destroy(dev, dmam_release, dmam_match, &match_data)); 71 + dma_free_coherent(dev, size, vaddr, dma_handle); 72 72 } 73 73 EXPORT_SYMBOL(dmam_free_coherent); 74 74