iommu.lists.linux-foundation.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] dma-iommu: remove __iommu_dma_mmap
@ 2020-12-09 11:20 Christoph Hellwig
  2020-12-09 12:33 ` Robin Murphy
  2020-12-09 13:05 ` Will Deacon
  0 siblings, 2 replies; 3+ messages in thread
From: Christoph Hellwig @ 2020-12-09 11:20 UTC (permalink / raw)
  To: robin.murphy, joro, will; +Cc: iommu

The function has a single caller, so open code it there and take
advantage of the precalculated page count variable.

Signed-off-by: Christoph Hellwig <hch@lst.de>
---
 drivers/iommu/dma-iommu.c | 17 +----------------
 1 file changed, 1 insertion(+), 16 deletions(-)

diff --git a/drivers/iommu/dma-iommu.c b/drivers/iommu/dma-iommu.c
index 0cbcd3fc3e7e8d..f6ea1dabc6a894 100644
--- a/drivers/iommu/dma-iommu.c
+++ b/drivers/iommu/dma-iommu.c
@@ -655,21 +655,6 @@ static void *iommu_dma_alloc_remap(struct device *dev, size_t size,
 	return NULL;
 }
 
-/**
- * __iommu_dma_mmap - Map a buffer into provided user VMA
- * @pages: Array representing buffer from __iommu_dma_alloc()
- * @size: Size of buffer in bytes
- * @vma: VMA describing requested userspace mapping
- *
- * Maps the pages of the buffer in @pages into @vma. The caller is responsible
- * for verifying the correct size and protection of @vma beforehand.
- */
-static int __iommu_dma_mmap(struct page **pages, size_t size,
-		struct vm_area_struct *vma)
-{
-	return vm_map_pages(vma, pages, PAGE_ALIGN(size) >> PAGE_SHIFT);
-}
-
 static void iommu_dma_sync_single_for_cpu(struct device *dev,
 		dma_addr_t dma_handle, size_t size, enum dma_data_direction dir)
 {
@@ -1102,7 +1087,7 @@ static int iommu_dma_mmap(struct device *dev, struct vm_area_struct *vma,
 		struct page **pages = dma_common_find_pages(cpu_addr);
 
 		if (pages)
-			return __iommu_dma_mmap(pages, size, vma);
+			return vm_map_pages(vma, pages, nr_pages);
 		pfn = vmalloc_to_pfn(cpu_addr);
 	} else {
 		pfn = page_to_pfn(virt_to_page(cpu_addr));
-- 
2.29.2

_______________________________________________
iommu mailing list
iommu@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/iommu

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] dma-iommu: remove __iommu_dma_mmap
  2020-12-09 11:20 [PATCH] dma-iommu: remove __iommu_dma_mmap Christoph Hellwig
@ 2020-12-09 12:33 ` Robin Murphy
  2020-12-09 13:05 ` Will Deacon
  1 sibling, 0 replies; 3+ messages in thread
From: Robin Murphy @ 2020-12-09 12:33 UTC (permalink / raw)
  To: Christoph Hellwig, joro, will; +Cc: iommu

On 2020-12-09 11:20, Christoph Hellwig wrote:
> The function has a single caller, so open code it there and take
> advantage of the precalculated page count variable.

I can't shake the feeling that we've written this patch at least twice 
before through all the refactoring, so definitely no objection from me 
to an obvious cleanup:

Reviewed-by: Robin Murphy <robin.murphy@arm.com>

> Signed-off-by: Christoph Hellwig <hch@lst.de>
> ---
>   drivers/iommu/dma-iommu.c | 17 +----------------
>   1 file changed, 1 insertion(+), 16 deletions(-)
> 
> diff --git a/drivers/iommu/dma-iommu.c b/drivers/iommu/dma-iommu.c
> index 0cbcd3fc3e7e8d..f6ea1dabc6a894 100644
> --- a/drivers/iommu/dma-iommu.c
> +++ b/drivers/iommu/dma-iommu.c
> @@ -655,21 +655,6 @@ static void *iommu_dma_alloc_remap(struct device *dev, size_t size,
>   	return NULL;
>   }
>   
> -/**
> - * __iommu_dma_mmap - Map a buffer into provided user VMA
> - * @pages: Array representing buffer from __iommu_dma_alloc()
> - * @size: Size of buffer in bytes
> - * @vma: VMA describing requested userspace mapping
> - *
> - * Maps the pages of the buffer in @pages into @vma. The caller is responsible
> - * for verifying the correct size and protection of @vma beforehand.
> - */
> -static int __iommu_dma_mmap(struct page **pages, size_t size,
> -		struct vm_area_struct *vma)
> -{
> -	return vm_map_pages(vma, pages, PAGE_ALIGN(size) >> PAGE_SHIFT);
> -}
> -
>   static void iommu_dma_sync_single_for_cpu(struct device *dev,
>   		dma_addr_t dma_handle, size_t size, enum dma_data_direction dir)
>   {
> @@ -1102,7 +1087,7 @@ static int iommu_dma_mmap(struct device *dev, struct vm_area_struct *vma,
>   		struct page **pages = dma_common_find_pages(cpu_addr);
>   
>   		if (pages)
> -			return __iommu_dma_mmap(pages, size, vma);
> +			return vm_map_pages(vma, pages, nr_pages);
>   		pfn = vmalloc_to_pfn(cpu_addr);
>   	} else {
>   		pfn = page_to_pfn(virt_to_page(cpu_addr));
> 
_______________________________________________
iommu mailing list
iommu@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/iommu

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] dma-iommu: remove __iommu_dma_mmap
  2020-12-09 11:20 [PATCH] dma-iommu: remove __iommu_dma_mmap Christoph Hellwig
  2020-12-09 12:33 ` Robin Murphy
@ 2020-12-09 13:05 ` Will Deacon
  1 sibling, 0 replies; 3+ messages in thread
From: Will Deacon @ 2020-12-09 13:05 UTC (permalink / raw)
  To: robin.murphy, joro, Christoph Hellwig
  Cc: catalin.marinas, iommu, kernel-team, Will Deacon

On Wed, 9 Dec 2020 12:20:19 +0100, Christoph Hellwig wrote:
> The function has a single caller, so open code it there and take
> advantage of the precalculated page count variable.

Applied to arm64 (for-next/iommu/core), thanks!

[1/1] dma-iommu: remove __iommu_dma_mmap
      https://git.kernel.org/arm64/c/71fe89ceb55b

Cheers,
-- 
Will

https://fixes.arm64.dev
https://next.arm64.dev
https://will.arm64.dev
_______________________________________________
iommu mailing list
iommu@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/iommu

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-12-09 13:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-09 11:20 [PATCH] dma-iommu: remove __iommu_dma_mmap Christoph Hellwig
2020-12-09 12:33 ` Robin Murphy
2020-12-09 13:05 ` Will Deacon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).