diff options
author | Muhammad Falak R Wani <falakreyaz@gmail.com> | 2016-05-23 20:04:32 -0400 |
---|---|---|
committer | David Vrabel <david.vrabel@citrix.com> | 2016-07-06 05:34:47 -0400 |
commit | c7ebf9d9c6b4e9402b978da0b0785db4129c1f79 (patch) | |
tree | 600f397525a94ed5c4a712ae01d086a497bbef82 /drivers/xen | |
parent | 0cac5c3018b32707b3bab40e4beb83f91c4204f1 (diff) |
xen: use vma_pages().
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>
Signed-off-by: David Vrabel <david.vrabel@citrix.com>
Diffstat (limited to 'drivers/xen')
-rw-r--r-- | drivers/xen/gntalloc.c | 2 | ||||
-rw-r--r-- | drivers/xen/gntdev.c | 2 | ||||
-rw-r--r-- | 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 4547a91bca67..7a47c4c9fb1b 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) | |||
504 | struct gntalloc_file_private_data *priv = filp->private_data; | 504 | struct gntalloc_file_private_data *priv = filp->private_data; |
505 | struct gntalloc_vma_private_data *vm_priv; | 505 | struct gntalloc_vma_private_data *vm_priv; |
506 | struct gntalloc_gref *gref; | 506 | struct gntalloc_gref *gref; |
507 | int count = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT; | 507 | int count = vma_pages(vma); |
508 | int rv, i; | 508 | int rv, i; |
509 | 509 | ||
510 | if (!(vma->vm_flags & VM_SHARED)) { | 510 | if (!(vma->vm_flags & VM_SHARED)) { |
diff --git a/drivers/xen/gntdev.c b/drivers/xen/gntdev.c index 67939578cd6d..bb952121ea94 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) | |||
982 | { | 982 | { |
983 | struct gntdev_priv *priv = flip->private_data; | 983 | struct gntdev_priv *priv = flip->private_data; |
984 | int index = vma->vm_pgoff; | 984 | int index = vma->vm_pgoff; |
985 | int count = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT; | 985 | int count = vma_pages(vma); |
986 | struct grant_map *map; | 986 | struct grant_map *map; |
987 | int i, err = -EINVAL; | 987 | int i, err = -EINVAL; |
988 | 988 | ||
diff --git a/drivers/xen/privcmd.c b/drivers/xen/privcmd.c index df2e6f783318..702040fe2001 100644 --- a/drivers/xen/privcmd.c +++ b/drivers/xen/privcmd.c | |||
@@ -582,7 +582,7 @@ static long privcmd_ioctl(struct file *file, | |||
582 | static void privcmd_close(struct vm_area_struct *vma) | 582 | static void privcmd_close(struct vm_area_struct *vma) |
583 | { | 583 | { |
584 | struct page **pages = vma->vm_private_data; | 584 | struct page **pages = vma->vm_private_data; |
585 | int numpgs = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT; | 585 | int numpgs = vma_pages(vma); |
586 | int numgfns = (vma->vm_end - vma->vm_start) >> XEN_PAGE_SHIFT; | 586 | int numgfns = (vma->vm_end - vma->vm_start) >> XEN_PAGE_SHIFT; |
587 | int rc; | 587 | int rc; |
588 | 588 | ||