Skip to content

Commit

Permalink
Merge tag 'dma-mapping-4.17-2' of git://git.infradead.org/users/hch/d…
Browse files Browse the repository at this point in the history
…ma-mapping

Pull dma-mapping fix from Christoph Hellwig:
 "Fix for one swiotlb regression in 2.16 from Takashi"

* tag 'dma-mapping-4.17-2' of git://git.infradead.org/users/hch/dma-mapping:
  swiotlb: fix unexpected swiotlb_alloc_coherent failures
  • Loading branch information
Linus Torvalds committed Apr 12, 2018
2 parents d1cb771 + 9e7f06c commit c5c177c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/swiotlb.c
Original file line number Diff line number Diff line change
Expand Up @@ -719,7 +719,7 @@ swiotlb_alloc_buffer(struct device *dev, size_t size, dma_addr_t *dma_handle,
goto out_warn;

*dma_handle = __phys_to_dma(dev, phys_addr);
if (dma_coherent_ok(dev, *dma_handle, size))
if (!dma_coherent_ok(dev, *dma_handle, size))
goto out_unmap;

memset(phys_to_virt(phys_addr), 0, size);
Expand Down

0 comments on commit c5c177c

Please sign in to comment.