Merge branch 'stable/for-linus-5.0' of git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb

Pull swiotlb fix from Konrad Rzeszutek Wilk:
"A tiny fix for v5.0-rc2:

This fixes an issue with GPU cards not working anymore with the DMA
mapping work Christopher did - as the SWIOTLB is initialized first and
then free'd (as IOMMU is available) but we forgot to clear our start
and end entries which are used and BOOM"

* 'stable/for-linus-5.0' of git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb:
swiotlb: clear io_tlb_start and io_tlb_end in swiotlb_exit

+2
+2
kernel/dma/swiotlb.c
··· 378 378 memblock_free_late(io_tlb_start, 379 379 PAGE_ALIGN(io_tlb_nslabs << IO_TLB_SHIFT)); 380 380 } 381 + io_tlb_start = 0; 382 + io_tlb_end = 0; 381 383 io_tlb_nslabs = 0; 382 384 max_segment = 0; 383 385 }