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.9-2024-05-04' of git://git.infradead.org/users/hch/dma-mapping

Pull dma-mapping fix from Christoph Hellwig:

- fix the combination of restricted pools and dynamic swiotlb
(Will Deacon)

* tag 'dma-mapping-6.9-2024-05-04' of git://git.infradead.org/users/hch/dma-mapping:
swiotlb: initialise restricted pool list_head when SWIOTLB_DYNAMIC=y

+1
+1
kernel/dma/swiotlb.c
··· 1798 1798 mem->for_alloc = true; 1799 1799 #ifdef CONFIG_SWIOTLB_DYNAMIC 1800 1800 spin_lock_init(&mem->lock); 1801 + INIT_LIST_HEAD_RCU(&mem->pools); 1801 1802 #endif 1802 1803 add_mem_pool(mem, pool); 1803 1804