Received: by 10.223.185.116 with SMTP id b49csp2289742wrg; Thu, 15 Feb 2018 09:19:31 -0800 (PST) X-Google-Smtp-Source: AH8x226KWe3Wu8HKwJXPBAmllzpokcaZjzm0mB93lZwjO4WK+PZIMz3ztRvUpjd38zZXaSYSYB1V X-Received: by 10.101.101.149 with SMTP id u21mr2841359pgv.251.1518715171007; Thu, 15 Feb 2018 09:19:31 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1518715170; cv=none; d=google.com; s=arc-20160816; b=iNKZZzJzYOzNjph/0RmEo8dBI666Rp/JhQYcOE9xtVsbyQIMyxOd8Y5r5dEHuSfvA/ gGPHpCVOJ28LMHPYO1Zz7Hgcd/fSWTW6exCwzfSXooVd1/2VH05jW1H9+KUeWPRPAJVl xJ7Bhsg5iepUilAS7sa2+S2lgPlccqFsDNXx6jIg2oDtXMXjiM3eAQ/5hW42zMvcbidu 3DkK6+Kwyn/davz6kafsSEQioXcf3SxsOh0rDq6aaIqxy950n8n0XUNPTQIYoKcFOebK 92BN/8rMBGNCASJ80mQqMm5TDWALdgLA1+nT44+ndgDcffle02sseVZMohuhB0zBTEtJ Zidw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:user-agent:references :in-reply-to:message-id:date:subject:cc:to:from :arc-authentication-results; bh=NEHWyKUy+A4yc/yn9c+viw8E0DL4Ftex3MlsHFwgTbw=; b=JvIPdhwwXOMcCnQM8p2NYnk4EDuRLdMl6ZVkZeyGZrDC+MIRVU9nfFKyfNcx8QaiIk EbrxL/njwAYWS1YyVgn9dQTzEaZnnUlGNARCT6T8pw629fDJNne86JYesfGU5G9nHpUb ywlHElBJDj+IyAC778qXb066Skvf0qHWSEKBDTPthDsItzteKEQJLijcCCp2+Se8Cxl4 V2zVzeKeu2bC2dPzbW3y9AtdGiSEVtDG/mfSKhup9dswOzIjMKw1rDQnT90n0cQiQ995 LrORrEu7dL/z0SGDg202lzY07DybPPqmVUFkQwHzUcswyvkZsH38ASRs4s6NF8FT7hdx HvAQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id e9si2593738pgn.677.2018.02.15.09.19.16; Thu, 15 Feb 2018 09:19:30 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1427184AbeBORSQ (ORCPT + 99 others); Thu, 15 Feb 2018 12:18:16 -0500 Received: from mail.linuxfoundation.org ([140.211.169.12]:57700 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1422842AbeBOPgM (ORCPT ); Thu, 15 Feb 2018 10:36:12 -0500 Received: from localhost (LFbn-1-12258-90.w90-92.abo.wanadoo.fr [90.92.71.90]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id BF538115C; Thu, 15 Feb 2018 15:36:11 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Liu Bo , David Sterba Subject: [PATCH 4.14 146/195] Btrfs: raid56: iterate raid56 internal bio with bio_for_each_segment_all Date: Thu, 15 Feb 2018 16:17:17 +0100 Message-Id: <20180215151713.140468440@linuxfoundation.org> X-Mailer: git-send-email 2.16.1 In-Reply-To: <20180215151705.738773577@linuxfoundation.org> References: <20180215151705.738773577@linuxfoundation.org> User-Agent: quilt/0.65 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 4.14-stable review patch. If anyone has any objections, please let me know. ------------------ From: Liu Bo commit 0198e5b707cfeb5defbd1b71b1ec6e71580d7db9 upstream. Bio iterated by set_bio_pages_uptodate() is raid56 internal one, so it will never be a BIO_CLONED bio, and since this is called by end_io functions, bio->bi_iter.bi_size is zero, we mustn't use bio_for_each_segment() as that is a no-op if bi_size is zero. Fixes: 6592e58c6b68e61f003a01ba29a3716e7e2e9484 ("Btrfs: fix write corruption due to bio cloning on raid5/6") Signed-off-by: Liu Bo Signed-off-by: David Sterba Signed-off-by: Greg Kroah-Hartman --- fs/btrfs/raid56.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) --- a/fs/btrfs/raid56.c +++ b/fs/btrfs/raid56.c @@ -1432,14 +1432,13 @@ static int fail_bio_stripe(struct btrfs_ */ static void set_bio_pages_uptodate(struct bio *bio) { - struct bio_vec bvec; - struct bvec_iter iter; + struct bio_vec *bvec; + int i; - if (bio_flagged(bio, BIO_CLONED)) - bio->bi_iter = btrfs_io_bio(bio)->iter; + ASSERT(!bio_flagged(bio, BIO_CLONED)); - bio_for_each_segment(bvec, bio, iter) - SetPageUptodate(bvec.bv_page); + bio_for_each_segment_all(bvec, bio, i) + SetPageUptodate(bvec->bv_page); } /*