Re: [PATCH v2] gpu: drm: ttm: Adding new return type vm_fault_t

2018-06-18 Thread Christian König
Am 08.06.2018 um 08:44 schrieb Christian König: Am 08.06.2018 um 06:36 schrieb Souptick Joarder: On Sat, Jun 2, 2018 at 12:57 AM, Souptick Joarder wrote: 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

Re: [PATCH v2] gpu: drm: ttm: Adding new return type vm_fault_t

2018-06-08 Thread Souptick Joarder
On Sat, Jun 2, 2018 at 12:57 AM, Souptick Joarder wrote: > 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. > > Ref->

Re: [PATCH v2] gpu: drm: ttm: Adding new return type vm_fault_t

2018-06-08 Thread Christian König
Am 08.06.2018 um 06:36 schrieb Souptick Joarder: On Sat, Jun 2, 2018 at 12:57 AM, Souptick Joarder wrote: 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,

[PATCH v2] gpu: drm: ttm: Adding new return type vm_fault_t

2018-06-03 Thread Souptick Joarder
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. Ref-> commit 1c8f422059ae ("mm: change return type to vm_fault_t")