Re: [PATCH 09/21] mm: Factor out functionality to finish page faults

2016-11-15 Thread Kirill A. Shutemov
On Fri, Nov 04, 2016 at 05:25:05AM +0100, Jan Kara wrote: > Introduce function finish_fault() as a helper function for finishing > page faults. It is rather thin wrapper around alloc_set_pte() but since > we'd want to call this from DAX code or filesystems, it is still useful > to avoid some

[PATCH 09/21] mm: Factor out functionality to finish page faults

2016-11-01 Thread Jan Kara
Introduce function finish_fault() as a helper function for finishing page faults. It is rather thin wrapper around alloc_set_pte() but since we'd want to call this from DAX code or filesystems, it is still useful to avoid some boilerplate code. Reviewed-by: Ross Zwisler