]> www.infradead.org Git - users/jedix/linux-maple.git/commit
dma-mapping: call ->unmap_page and ->unmap_sg unconditionally
authorLeon Romanovsky <leonro@nvidia.com>
Wed, 24 Jul 2024 18:04:48 +0000 (21:04 +0300)
committerChristoph Hellwig <hch@lst.de>
Thu, 22 Aug 2024 04:18:11 +0000 (06:18 +0200)
commitf69e342eec008e1bab772d3963c3dd9979293e13
treefe81e6278c488ef1a0e7d643ef6b37a073aac722
parent3be9b846896d1d8b66040ece6e216cd58d03242e
dma-mapping: call ->unmap_page and ->unmap_sg unconditionally

Almost all instances of the dma_map_ops ->map_page()/map_sg() methods
implement ->unmap_page()/unmap_sg() too.  The once instance which doesn't
dma_dummy_ops which is used to fail the DMA mapping and thus there won't
be any calls to ->unmap_page()/unmap_sg().

Remove the checks for ->unmap_page()/unmap_sg() and call them directly to
create an interface that is symmetrical to ->map_page()/map_sg().

Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
Signed-off-by: Leon Romanovsky <leon@kernel.org>
Reviewed-by: Robin Murphy <robin.murphy@arm.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
kernel/dma/dummy.c
kernel/dma/mapping.c