提交 ef9f515a 编写于 作者: L Libin 提交者: Linus Torvalds

ncpfs: use vma_pages() to replace (vm_end - vm_start) >> PAGE_SHIFT

(*->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: NLibin <huawei.libin@huawei.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 d6e93217
...@@ -117,7 +117,7 @@ int ncp_mmap(struct file *file, struct vm_area_struct *vma) ...@@ -117,7 +117,7 @@ int ncp_mmap(struct file *file, struct vm_area_struct *vma)
return -EINVAL; return -EINVAL;
/* we do not support files bigger than 4GB... We eventually /* we do not support files bigger than 4GB... We eventually
supports just 4GB... */ supports just 4GB... */
if (((vma->vm_end - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff if (vma_pages(vma) + vma->vm_pgoff
> (1U << (32 - PAGE_SHIFT))) > (1U << (32 - PAGE_SHIFT)))
return -EFBIG; return -EFBIG;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册