Commit 77478715 authored by Al Viro's avatar Al Viro

ceph: use get_user_pages_fast()

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 8dcf932d
...@@ -24,9 +24,9 @@ struct page **ceph_get_direct_page_vector(const void __user *data, ...@@ -24,9 +24,9 @@ struct page **ceph_get_direct_page_vector(const void __user *data,
return ERR_PTR(-ENOMEM); return ERR_PTR(-ENOMEM);
while (got < num_pages) { while (got < num_pages) {
rc = get_user_pages_unlocked( rc = get_user_pages_fast(
(unsigned long)data + ((unsigned long)got * PAGE_SIZE), (unsigned long)data + ((unsigned long)got * PAGE_SIZE),
num_pages - got, pages + got, write_page ? FOLL_WRITE : 0); num_pages - got, write_page, pages + got);
if (rc < 0) if (rc < 0)
break; break;
BUG_ON(rc == 0); BUG_ON(rc == 0);
......
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