diff options
Diffstat (limited to 'drivers/xen/gntdev.c')
| -rw-r--r-- | drivers/xen/gntdev.c | 2 | 
1 files changed, 1 insertions, 1 deletions
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)  {  	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;  |