summaryrefslogtreecommitdiffstats
path: root/drivers/char/virtio_console.c
diff options
context:
space:
mode:
authorMiklos Szeredi2016-09-27 10:45:12 +0200
committerAl Viro2016-10-06 00:23:59 +0200
commitca76f5b6bdbdc50af0d7b98cfcf7a2be7e95eb3d (patch)
tree66466c3c9923273ee492b5ea1137f800289bc790 /drivers/char/virtio_console.c
parentpipe: add pipe_buf_confirm() helper (diff)
downloadkernel-qcow2-linux-ca76f5b6bdbdc50af0d7b98cfcf7a2be7e95eb3d.tar.gz
kernel-qcow2-linux-ca76f5b6bdbdc50af0d7b98cfcf7a2be7e95eb3d.tar.xz
kernel-qcow2-linux-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 'drivers/char/virtio_console.c')
-rw-r--r--drivers/char/virtio_console.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/virtio_console.c b/drivers/char/virtio_console.c
index 5da47e26a012..8114744bf30c 100644
--- a/drivers/char/virtio_console.c
+++ b/drivers/char/virtio_console.c
@@ -889,7 +889,7 @@ static int pipe_to_sg(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
return 0;
/* Try lock this page */
- if (buf->ops->steal(pipe, buf) == 0) {
+ if (pipe_buf_steal(pipe, buf) == 0) {
/* Get reference and unlock page for moving */
get_page(buf->page);
unlock_page(buf->page);