]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
uio: Change return type to vm_fault_t
authorSouptick Joarder <jrdr.linux@gmail.com>
Mon, 16 Apr 2018 18:33:55 +0000 (00:03 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 23 Apr 2018 11:31:27 +0000 (13:31 +0200)
Use new return type vm_fault_t for fault handler
in struct vm_operations_struct. For now, this is
just documenting that the function returns a VM_
FAULT value rather than an errno.  Once all inst
ances are converted, vm_fault_t will become a di
stinct type.

Reference - 1c8f422059ae ("mm: change return type
to vm_fault_t")

Signed-off-by: Souptick Joarder <jrdr.linux@gmail.com>
Reviewed-by: Matthew Wilcox <mawilcox@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/uio/uio.c

index fd4848392e0ddfddbdf5d57888c6aa056087b23b..d9235f30e46d6385cf2639173bbd4605b41a2d57 100644 (file)
@@ -597,7 +597,7 @@ static int uio_find_mem_index(struct vm_area_struct *vma)
        return -1;
 }
 
-static int uio_vma_fault(struct vm_fault *vmf)
+static vm_fault_t uio_vma_fault(struct vm_fault *vmf)
 {
        struct uio_device *idev = vmf->vma->vm_private_data;
        struct page *page;