From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.linuxfoundation.org ([140.211.169.12]:54342 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S935124AbcJTOYE (ORCPT ); Thu, 20 Oct 2016 10:24:04 -0400 Subject: Patch "btrfs: assign error values to the correct bio structs" has been added to the 4.7-stable tree To: junjie.mao@enight.me, dsterba@suse.cz, gregkh@linuxfoundation.org, torvalds@linux-foundation.org Cc: , From: Date: Thu, 20 Oct 2016 16:23:58 +0200 Message-ID: <147697343810134@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 btrfs: assign error values to the correct bio structs to the 4.7-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: btrfs-assign-error-values-to-the-correct-bio-structs.patch and it can be found in the queue-4.7 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let know about it. >>From 14155cafeadda946376260e2ad5d39a0528a332f Mon Sep 17 00:00:00 2001 From: Junjie Mao Date: Mon, 17 Oct 2016 09:20:25 +0800 Subject: btrfs: assign error values to the correct bio structs From: Junjie Mao commit 14155cafeadda946376260e2ad5d39a0528a332f upstream. Fixes: 4246a0b63bd8 ("block: add a bi_error field to struct bio") Signed-off-by: Junjie Mao Acked-by: David Sterba Signed-off-by: Linus Torvalds Signed-off-by: Greg Kroah-Hartman --- fs/btrfs/compression.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/fs/btrfs/compression.c +++ b/fs/btrfs/compression.c @@ -690,7 +690,7 @@ int btrfs_submit_compressed_read(struct ret = btrfs_map_bio(root, READ, comp_bio, mirror_num, 0); if (ret) { - bio->bi_error = ret; + comp_bio->bi_error = ret; bio_endio(comp_bio); } @@ -719,7 +719,7 @@ int btrfs_submit_compressed_read(struct ret = btrfs_map_bio(root, READ, comp_bio, mirror_num, 0); if (ret) { - bio->bi_error = ret; + comp_bio->bi_error = ret; bio_endio(comp_bio); } Patches currently in stable-queue which might be from junjie.mao@enight.me are queue-4.7/btrfs-assign-error-values-to-the-correct-bio-structs.patch