Re: [PATCH] drivers/virt: use get_user_pages_unlocked()

2017-02-20 Thread Lorenzo Stoakes
On 3 January 2017 at 21:36, Michal Hocko wrote: > On Tue 03-01-17 21:14:20, Lorenzo Stoakes wrote: >> Just a gentle ping on this :) I think this might be a slightly >> abandoned corner of the kernel so not sure who else to ping to get >> this moving. > > Maybe Andrew can pick it up? > http://lkml.

Re: [PATCH] drivers/virt: use get_user_pages_unlocked()

2017-01-03 Thread Michal Hocko
On Tue 03-01-17 21:14:20, Lorenzo Stoakes wrote: > Just a gentle ping on this :) I think this might be a slightly > abandoned corner of the kernel so not sure who else to ping to get > this moving. Maybe Andrew can pick it up? http://lkml.kernel.org/r/20161101194332.23961-1-lstoa...@gmail.com > O

Re: [PATCH] drivers/virt: use get_user_pages_unlocked()

2017-01-03 Thread Lorenzo Stoakes
Just a gentle ping on this :) I think this might be a slightly abandoned corner of the kernel so not sure who else to ping to get this moving. On 1 November 2016 at 19:43, Lorenzo Stoakes wrote: > Moving from get_user_pages() to get_user_pages_unlocked() simplifies the code > and takes advantage

[PATCH] drivers/virt: use get_user_pages_unlocked()

2016-11-01 Thread Lorenzo Stoakes
Moving from get_user_pages() to get_user_pages_unlocked() simplifies the code and takes advantage of VM_FAULT_RETRY functionality when faulting in pages. Signed-off-by: Lorenzo Stoakes --- drivers/virt/fsl_hypervisor.c | 7 ++- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/dr