aboutsummaryrefslogtreecommitdiffstats
path: root/fs/fuse
diff options
context:
space:
mode:
authorMiklos Szeredi <mszeredi@redhat.com>2016-09-27 10:45:12 +0200
committerAl Viro <viro@zeniv.linux.org.uk>2016-10-05 18:23:59 -0400
commitca76f5b6bdbdc50af0d7b98cfcf7a2be7e95eb3d (patch)
tree66466c3c9923273ee492b5ea1137f800289bc790 /fs/fuse
parentpipe: add pipe_buf_confirm() helper (diff)
downloadlinux-dev-ca76f5b6bdbdc50af0d7b98cfcf7a2be7e95eb3d.tar.xz
linux-dev-ca76f5b6bdbdc50af0d7b98cfcf7a2be7e95eb3d.zip
pipe: add pipe_buf_steal() helper
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/fuse')
-rw-r--r--fs/fuse/dev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/fuse/dev.c b/fs/fuse/dev.c
index e5d5cc922c70..17a706da8931 100644
--- a/fs/fuse/dev.c
+++ b/fs/fuse/dev.c
@@ -841,7 +841,7 @@ static int fuse_try_move_page(struct fuse_copy_state *cs, struct page **pagep)
if (cs->len != PAGE_SIZE)
goto out_fallback;
- if (buf->ops->steal(cs->pipe, buf) != 0)
+ if (pipe_buf_steal(cs->pipe, buf) != 0)
goto out_fallback;
newpage = buf->page;