Commit 6c2c97a2 authored by Al Viro's avatar Al Viro

memdup_user(): switch to GFP_USER

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 105f2b70
......@@ -156,12 +156,7 @@ void *memdup_user(const void __user *src, size_t len)
{
void *p;
/*
* Always use GFP_KERNEL, since copy_from_user() can sleep and
* cause pagefault, which makes it pointless to use GFP_NOFS
* or GFP_ATOMIC.
*/
p = kmalloc_track_caller(len, GFP_KERNEL);
p = kmalloc_track_caller(len, GFP_USER);
if (!p)
return ERR_PTR(-ENOMEM);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment