projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7283448
)
fuse: fix uninitialized flags in pipe_buffer
author
Miklos Szeredi
<mszeredi@redhat.com>
Thu, 16 Feb 2017 14:08:20 +0000
(15:08 +0100)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Thu, 23 Feb 2017 16:44:35 +0000
(17:44 +0100)
commit
84588a93d097bace24b9233930f82511d4f34210
upstream.
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Fixes:
d82718e348fe
("fuse_dev_splice_read(): switch to add_to_pipe()")
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/fuse/dev.c
patch
|
blob
|
history
diff --git
a/fs/fuse/dev.c
b/fs/fuse/dev.c
index
b656e18
..
f117926
100644
(file)
--- a/
fs/fuse/dev.c
+++ b/
fs/fuse/dev.c
@@
-1376,6
+1376,7
@@
static ssize_t fuse_dev_splice_read(struct file *in, loff_t *ppos,
* code can Oops if the buffer persists after module unload.
*/
bufs[page_nr].ops = &nosteal_pipe_buf_ops;
+ bufs[page_nr].flags = 0;
ret = add_to_pipe(pipe, &bufs[page_nr++]);
if (unlikely(ret < 0))
break;