diff options
author | Miklos Szeredi | 2016-09-27 10:45:12 +0200 |
---|---|---|
committer | Al Viro | 2016-10-05 18:23:59 -0400 |
commit | ca76f5b6bdbdc50af0d7b98cfcf7a2be7e95eb3d (patch) | |
tree | 66466c3c9923273ee492b5ea1137f800289bc790 /fs/fuse | |
parent | fba597db4218ac324eee34b64736ea94829c95bf (diff) |
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.c | 2 |
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; |