Skip to content

Commit 68266f1

Browse files
Souptick Joarderkraxel
authored andcommitted
gpu: drm: qxl: Adding new typedef vm_fault_t
Use new return type vm_fault_t for fault handler. For now, this is just documenting that the function returns a VM_FAULT value rather than an errno. Once all instances are converted, vm_fault_t will become a distinct type. Reference id -> 1c8f422 ("mm: change return type to vm_fault_t") Signed-off-by: Souptick Joarder <jrdr.linux@gmail.com> Link: http://patchwork.freedesktop.org/patch/msgid/20180417133844.GA30256@jordon-HP-15-Notebook-PC Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
1 parent 110ab11 commit 68266f1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

drivers/gpu/drm/qxl/qxl_ttm.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,16 +105,16 @@ static void qxl_ttm_global_fini(struct qxl_device *qdev)
105105
static struct vm_operations_struct qxl_ttm_vm_ops;
106106
static const struct vm_operations_struct *ttm_vm_ops;
107107

108-
static int qxl_ttm_fault(struct vm_fault *vmf)
108+
static vm_fault_t qxl_ttm_fault(struct vm_fault *vmf)
109109
{
110110
struct ttm_buffer_object *bo;
111-
int r;
111+
vm_fault_t ret;
112112

113113
bo = (struct ttm_buffer_object *)vmf->vma->vm_private_data;
114114
if (bo == NULL)
115115
return VM_FAULT_NOPAGE;
116-
r = ttm_vm_ops->fault(vmf);
117-
return r;
116+
ret = ttm_vm_ops->fault(vmf);
117+
return ret;
118118
}
119119

120120
int qxl_mmap(struct file *filp, struct vm_area_struct *vma)

0 commit comments

Comments
 (0)