Re: [PATCH v2] gpu: drm: omapdrm: Adding new typedef vm_fault_t

2018-07-05 Thread Souptick Joarder
On Fri, Jun 8, 2018 at 4:17 PM, Souptick Joarder wrote: > On Fri, Jun 8, 2018 at 11:47 AM, Tomi Valkeinen wrote: >> Hi, >> >> On 22/05/18 21:13, Souptick Joarder wrote: >>> Use new return type vm_fault_t for fault handler. For >>> now, this is just documenting that the function returns >>> a

Re: [PATCH v2] gpu: drm: omapdrm: Adding new typedef vm_fault_t

2018-06-11 Thread Souptick Joarder
On Fri, Jun 8, 2018 at 11:47 AM, Tomi Valkeinen wrote: > Hi, > > On 22/05/18 21:13, 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

Re: [PATCH v2] gpu: drm: omapdrm: Adding new typedef vm_fault_t

2018-06-08 Thread Souptick Joarder
On Fri, Jun 1, 2018 at 11:11 AM, Souptick Joarder wrote: > On Tue, May 22, 2018 at 11:43 PM, 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

Re: [PATCH v2] gpu: drm: omapdrm: Adding new typedef vm_fault_t

2018-06-08 Thread Tomi Valkeinen
Hi, On 22/05/18 21:13, 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-> commit

Re: [PATCH v2] gpu: drm: omapdrm: Adding new typedef vm_fault_t

2018-06-01 Thread Souptick Joarder
On Tue, May 22, 2018 at 11:43 PM, 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. > >

[PATCH v2] gpu: drm: omapdrm: Adding new typedef vm_fault_t

2018-05-23 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")