Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1404842 > unrolled thread

[PATCH] drivers: dma-coherent: use vma_pages().

Started byMuhammad Falak R Wani <falakreyaz@gmail.com>
First post2016-05-21 15:30 +0200
Last post2016-05-21 15:30 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] drivers: dma-coherent: use vma_pages(). Muhammad Falak R Wani <falakreyaz@gmail.com> - 2016-05-21 15:30 +0200

#1404842 — [PATCH] drivers: dma-coherent: use vma_pages().

FromMuhammad Falak R Wani <falakreyaz@gmail.com>
Date2016-05-21 15:30 +0200
Subject[PATCH] drivers: dma-coherent: use vma_pages().
Message-ID<rBf8B-40U-7@gated-at.bofh.it>
Replace explicit computation of vma page count by a call to
vma_pages()

Signed-off-by: Muhammad Falak R Wani <falakreyaz@gmail.com>
---
 drivers/base/dma-coherent.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/base/dma-coherent.c b/drivers/base/dma-coherent.c
index bdf28f7..db122a0 100644
--- a/drivers/base/dma-coherent.c
+++ b/drivers/base/dma-coherent.c
@@ -261,7 +261,7 @@ int dma_mmap_from_coherent(struct device *dev, struct vm_area_struct *vma,
 		   (mem->virt_base + (mem->size << PAGE_SHIFT))) {
 		unsigned long off = vma->vm_pgoff;
 		int start = (vaddr - mem->virt_base) >> PAGE_SHIFT;
-		int user_count = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
+		int user_count = vma_pages(vma);
 		int count = size >> PAGE_SHIFT;
 
 		*ret = -ENXIO;
-- 
1.9.1

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web