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


Groups > linux.kernel > #1405734 > unrolled thread

[PATCH v2] xen: use vma_pages().

Started byMuhammad Falak R Wani <falakreyaz@gmail.com>
First post2016-05-24 02:10 +0200
Last post2016-05-26 12:50 +0200
Articles 3 — 3 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH v2] xen: use vma_pages(). Muhammad Falak R Wani <falakreyaz@gmail.com> - 2016-05-24 02:10 +0200
    Re: [PATCH v2] xen: use vma_pages(). Boris Ostrovsky <boris.ostrovsky@oracle.com> - 2016-05-24 18:30 +0200
    Re: [Xen-devel] [PATCH v2] xen: use vma_pages(). David Vrabel <david.vrabel@citrix.com> - 2016-05-26 12:50 +0200

#1405734 — [PATCH v2] xen: use vma_pages().

FromMuhammad Falak R Wani <falakreyaz@gmail.com>
Date2016-05-24 02:10 +0200
Subject[PATCH v2] xen: use vma_pages().
Message-ID<rC853-4h8-9@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/xen/gntalloc.c | 2 +-
 drivers/xen/gntdev.c   | 2 +-
 drivers/xen/privcmd.c  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/xen/gntalloc.c b/drivers/xen/gntalloc.c
index 4547a91..7a47c4c 100644
--- a/drivers/xen/gntalloc.c
+++ b/drivers/xen/gntalloc.c
@@ -504,7 +504,7 @@ static int gntalloc_mmap(struct file *filp, struct vm_area_struct *vma)
 	struct gntalloc_file_private_data *priv = filp->private_data;
 	struct gntalloc_vma_private_data *vm_priv;
 	struct gntalloc_gref *gref;
-	int count = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
+	int count = vma_pages(vma);
 	int rv, i;
 
 	if (!(vma->vm_flags & VM_SHARED)) {
diff --git a/drivers/xen/gntdev.c b/drivers/xen/gntdev.c
index 6793957..bb95212 100644
--- a/drivers/xen/gntdev.c
+++ b/drivers/xen/gntdev.c
@@ -982,7 +982,7 @@ static int gntdev_mmap(struct file *flip, struct vm_area_struct *vma)
 {
 	struct gntdev_priv *priv = flip->private_data;
 	int index = vma->vm_pgoff;
-	int count = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
+	int count = vma_pages(vma);
 	struct grant_map *map;
 	int i, err = -EINVAL;
 
diff --git a/drivers/xen/privcmd.c b/drivers/xen/privcmd.c
index df2e6f7..702040f 100644
--- a/drivers/xen/privcmd.c
+++ b/drivers/xen/privcmd.c
@@ -582,7 +582,7 @@ static long privcmd_ioctl(struct file *file,
 static void privcmd_close(struct vm_area_struct *vma)
 {
 	struct page **pages = vma->vm_private_data;
-	int numpgs = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
+	int numpgs = vma_pages(vma);
 	int numgfns = (vma->vm_end - vma->vm_start) >> XEN_PAGE_SHIFT;
 	int rc;
 
-- 
1.9.1

[toc] | [next] | [standalone]


#1406267

FromBoris Ostrovsky <boris.ostrovsky@oracle.com>
Date2016-05-24 18:30 +0200
Message-ID<rCnns-5DH-15@gated-at.bofh.it>
In reply to#1405734
On 05/23/2016 08:04 PM, Muhammad Falak R Wani wrote:
> Replace explicit computation of vma page count by a call to
> vma_pages().
>
> Signed-off-by: Muhammad Falak R Wani <falakreyaz@gmail.com>

Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>

[toc] | [prev] | [next] | [standalone]


#1407513 — Re: [Xen-devel] [PATCH v2] xen: use vma_pages().

FromDavid Vrabel <david.vrabel@citrix.com>
Date2016-05-26 12:50 +0200
SubjectRe: [Xen-devel] [PATCH v2] xen: use vma_pages().
Message-ID<rD11w-5kZ-7@gated-at.bofh.it>
In reply to#1405734
On 24/05/16 01:04, Muhammad Falak R Wani wrote:
> Replace explicit computation of vma page count by a call to
> vma_pages().

Applied to for-linus-4.8, thanks.

David

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web