[PATCH 04/20] mm: Use passed vm_fault structure in __do_fault()

2016-11-18 Thread Jan Kara
Instead of creating another vm_fault structure, use the one passed to __do_fault() for passing arguments into fault handler. Acked-by: Kirill A. Shutemov Reviewed-by: Ross Zwisler Signed-off-by: Jan Kara ---

Re: [PATCH 04/20] mm: Use passed vm_fault structure in __do_fault()

2016-10-14 Thread Ross Zwisler
On Tue, Sep 27, 2016 at 06:08:08PM +0200, Jan Kara wrote: > Instead of creating another vm_fault structure, use the one passed to > __do_fault() for passing arguments into fault handler. > > Signed-off-by: Jan Kara Reviewed-by: Ross Zwisler

[PATCH 04/20] mm: Use passed vm_fault structure in __do_fault()

2016-09-27 Thread Jan Kara
Instead of creating another vm_fault structure, use the one passed to __do_fault() for passing arguments into fault handler. Signed-off-by: Jan Kara --- mm/memory.c | 26 +++--- 1 file changed, 11 insertions(+), 15 deletions(-) diff --git a/mm/memory.c