Re: [PATCH v3] mm: Change return type int to vm_fault_t for fault handlers

2018-07-24 Thread Andrew Morton
On Mon, 4 Jun 2018 22:47:27 +0530 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 v3] mm: Change return type int to vm_fault_t for fault handlers

2018-07-13 Thread Souptick Joarder
On Tue, Jun 19, 2018 at 10:26 AM, Souptick Joarder wrote: > On Mon, Jun 4, 2018 at 10:47 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 v3] mm: Change return type int to vm_fault_t for fault handlers

2018-06-18 Thread Souptick Joarder
On Mon, Jun 4, 2018 at 10:47 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. > > Ref->

[PATCH v3] mm: Change return type int to vm_fault_t for fault handlers

2018-06-04 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") The aim