OSDN Git Service

alpha: kernel: Use vma_pages()
authorShyam Saini <mayhs11saini@gmail.com>
Mon, 10 Oct 2016 00:17:36 +0000 (05:47 +0530)
committerMatt Turner <mattst88@gmail.com>
Mon, 4 Sep 2017 19:04:32 +0000 (12:04 -0700)
Replace explicit computation of vma page count by a call to
vma_pages()

Signed-off-by: Shyam Saini <mayhs11saini@gmail.com>
Signed-off-by: Matt Turner <mattst88@gmail.com>
arch/alpha/kernel/pci-sysfs.c

index 92c0d46..652449e 100644 (file)
@@ -38,7 +38,7 @@ static int __pci_mmap_fits(struct pci_dev *pdev, int num,
        unsigned long nr, start, size;
        int shift = sparse ? 5 : 0;
 
-       nr = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
+       nr = vma_pages(vma);
        start = vma->vm_pgoff;
        size = ((pci_resource_len(pdev, num) - 1) >> (PAGE_SHIFT - shift)) + 1;
 
@@ -255,7 +255,7 @@ static int __legacy_mmap_fits(struct pci_controller *hose,
 {
        unsigned long nr, start, size;
 
-       nr = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
+       nr = vma_pages(vma);
        start = vma->vm_pgoff;
        size = ((res_size - 1) >> PAGE_SHIFT) + 1;