From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.linuxfoundation.org ([140.211.169.12]:54868 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750737AbdBTFNZ (ORCPT ); Mon, 20 Feb 2017 00:13:25 -0500 Subject: Patch "fuse: fix uninitialized flags in pipe_buffer" has been added to the 4.9-stable tree To: mszeredi@redhat.com, gregkh@linuxfoundation.org Cc: , From: Date: Mon, 20 Feb 2017 06:13:15 +0100 Message-ID: <14875675952526@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org List-ID: This is a note to let you know that I've just added the patch titled fuse: fix uninitialized flags in pipe_buffer to the 4.9-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: fuse-fix-uninitialized-flags-in-pipe_buffer.patch and it can be found in the queue-4.9 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let know about it. >>From 84588a93d097bace24b9233930f82511d4f34210 Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Thu, 16 Feb 2017 15:08:20 +0100 Subject: fuse: fix uninitialized flags in pipe_buffer From: Miklos Szeredi commit 84588a93d097bace24b9233930f82511d4f34210 upstream. Signed-off-by: Miklos Szeredi Fixes: d82718e348fe ("fuse_dev_splice_read(): switch to add_to_pipe()") Signed-off-by: Greg Kroah-Hartman --- fs/fuse/dev.c | 1 + 1 file changed, 1 insertion(+) --- a/fs/fuse/dev.c +++ b/fs/fuse/dev.c @@ -1376,6 +1376,7 @@ static ssize_t fuse_dev_splice_read(stru * 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; Patches currently in stable-queue which might be from mszeredi@redhat.com are queue-4.9/vfs-fix-uninitialized-flags-in-splice_to_pipe.patch queue-4.9/fuse-fix-uninitialized-flags-in-pipe_buffer.patch queue-4.9/fuse-fix-use-after-free-issue-in-fuse_dev_do_read.patch