Skip to content

Commit

Permalink
char: Use vma_pages() to replace (vm_end - vm_start) >> PAGE_SHIFT
Browse files Browse the repository at this point in the history
(*->vm_end - *->vm_start) >> PAGE_SHIFT operation is implemented
as a inline funcion vma_pages() in linux/mm.h, so using it.

Signed-off-by: Libin <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
libin2015 authored and gregkh committed May 21, 2013
1 parent 80fe636 commit a0ea59d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/char/mspec.c
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ mspec_mmap(struct file *file, struct vm_area_struct *vma,
if ((vma->vm_flags & VM_WRITE) == 0)
return -EPERM;

pages = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
pages = vma_pages(vma);
vdata_size = sizeof(struct vma_data) + pages * sizeof(long);
if (vdata_size <= PAGE_SIZE)
vdata = kzalloc(vdata_size, GFP_KERNEL);
Expand Down

0 comments on commit a0ea59d

Please sign in to comment.