Commit 4bf2cc96 authored by Souptick Joarder's avatar Souptick Joarder Committed by Juergen Gross

xen: Change return type to vm_fault_t

Use new return type vm_fault_t for fault handler
in struct vm_operations_struct.
Signed-off-by: default avatarSouptick Joarder <jrdr.linux@gmail.com>
Reviewed-by: default avatarMatthew Wilcox <mawilcox@microsoft.com>
Reviewed-by: default avatarJuergen Gross <jgross@suse.com>
Signed-off-by: default avatarJuergen Gross <jgross@suse.com>
parent 67b8d5c7
...@@ -801,7 +801,7 @@ static void privcmd_close(struct vm_area_struct *vma) ...@@ -801,7 +801,7 @@ static void privcmd_close(struct vm_area_struct *vma)
kfree(pages); kfree(pages);
} }
static int privcmd_fault(struct vm_fault *vmf) static vm_fault_t privcmd_fault(struct vm_fault *vmf)
{ {
printk(KERN_DEBUG "privcmd_fault: vma=%p %lx-%lx, pgoff=%lx, uv=%p\n", printk(KERN_DEBUG "privcmd_fault: vma=%p %lx-%lx, pgoff=%lx, uv=%p\n",
vmf->vma, vmf->vma->vm_start, vmf->vma->vm_end, vmf->vma, vmf->vma->vm_start, vmf->vma->vm_end,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment