commit | 7bf2d1df80822ec056363627e2014990f068f7aa | [log] [tgz] |
---|---|---|
author | Miklos Szeredi <mszeredi@redhat.com> | Tue Sep 27 10:45:12 2016 +0200 |
committer | Al Viro <viro@zeniv.linux.org.uk> | Wed Oct 05 18:23:57 2016 -0400 |
tree | 27001759d32eb13264bb03453c24a59d43b0cb4b | |
parent | a7c2242166eb4b4447b0145705e4b66f5be89798 [diff] [blame] |
pipe: add pipe_buf_get() helper Signed-off-by: Miklos Szeredi <mszeredi@redhat.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
diff --git a/fs/fuse/dev.c b/fs/fuse/dev.c index 0a6a808..b50220c7 100644 --- a/fs/fuse/dev.c +++ b/fs/fuse/dev.c
@@ -1963,7 +1963,7 @@ pipe->curbuf = (pipe->curbuf + 1) & (pipe->buffers - 1); pipe->nrbufs--; } else { - ibuf->ops->get(pipe, ibuf); + pipe_buf_get(pipe, ibuf); *obuf = *ibuf; obuf->flags &= ~PIPE_BUF_FLAG_GIFT; obuf->len = rem;