]> git.kernelconcepts.de Git - karo-tx-linux.git/blobdiff - fs/ncpfs/mmap.c
ncpfs: use vma_pages() to replace (vm_end - vm_start) >> PAGE_SHIFT
[karo-tx-linux.git] / fs / ncpfs / mmap.c
index ee24df5af1f929671ae0c6d8145d7951e767fc17..3c5dd55d284ce3baa24d3f2c4071ca53e883a223 100644 (file)
@@ -117,7 +117,7 @@ int ncp_mmap(struct file *file, struct vm_area_struct *vma)
                return -EINVAL;
        /* we do not support files bigger than 4GB... We eventually 
           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)))
                return -EFBIG;