* [PATCH 1/1] drivers:gpu: Use vma_pages()
@ 2017-09-21 10:38 Allen Pais
2017-09-21 10:42 ` Allen
0 siblings, 1 reply; 2+ messages in thread
From: Allen Pais @ 2017-09-21 10:38 UTC (permalink / raw)
To: linux-kernel; +Cc: mark.yao, linux-rockchip, Allen Pais
Replace explicit computation of vma page count by a call to
vma_pages()
Signed-off-by: Allen Pais <allen.lkml@gmail.com>
---
drivers/gpu/drm/rockchip/rockchip_drm_gem.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/rockchip/rockchip_drm_gem.c b/drivers/gpu/drm/rockchip/rockchip_drm_gem.c
index 1869c8b..d4c429c 100644
--- a/drivers/gpu/drm/rockchip/rockchip_drm_gem.c
+++ b/drivers/gpu/drm/rockchip/rockchip_drm_gem.c
@@ -220,7 +220,7 @@ static int rockchip_drm_gem_object_mmap_iommu(struct drm_gem_object *obj,
{
struct rockchip_gem_object *rk_obj = to_rockchip_obj(obj);
unsigned int i, count = obj->size >> PAGE_SHIFT;
- unsigned long user_count = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
+ unsigned long user_count = vma_pages(vma);
unsigned long uaddr = vma->vm_start;
unsigned long offset = vma->vm_pgoff;
unsigned long end = user_count + offset;
--
2.7.4
^ permalink raw reply [flat|nested] 2+ messages in thread* Re: [PATCH 1/1] drivers:gpu: Use vma_pages()
2017-09-21 10:38 [PATCH 1/1] drivers:gpu: Use vma_pages() Allen Pais
@ 2017-09-21 10:42 ` Allen
0 siblings, 0 replies; 2+ messages in thread
From: Allen @ 2017-09-21 10:42 UTC (permalink / raw)
To: linux-kernel; +Cc: long jacob, linux-rockchip, Allen Pais
> Replace explicit computation of vma page count by a call to
> vma_pages()
>
> Signed-off-by: Allen Pais <allen.lkml@gmail.com>
> ---
> drivers/gpu/drm/rockchip/rockchip_drm_gem.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/rockchip/rockchip_drm_gem.c b/drivers/gpu/drm/rockchip/rockchip_drm_gem.c
> index 1869c8b..d4c429c 100644
> --- a/drivers/gpu/drm/rockchip/rockchip_drm_gem.c
> +++ b/drivers/gpu/drm/rockchip/rockchip_drm_gem.c
> @@ -220,7 +220,7 @@ static int rockchip_drm_gem_object_mmap_iommu(struct drm_gem_object *obj,
> {
> struct rockchip_gem_object *rk_obj = to_rockchip_obj(obj);
> unsigned int i, count = obj->size >> PAGE_SHIFT;
> - unsigned long user_count = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
> + unsigned long user_count = vma_pages(vma);
> unsigned long uaddr = vma->vm_start;
> unsigned long offset = vma->vm_pgoff;
> unsigned long end = user_count + offset;
Ignore this patch. Sent out the wrong one by mistake.
Will send out the correct one.
- Allen
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-09-21 10:42 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-21 10:38 [PATCH 1/1] drivers:gpu: Use vma_pages() Allen Pais
2017-09-21 10:42 ` Allen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®