From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id DAF2DC5DF62 for ; Wed, 26 Jan 2022 11:42:58 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S240843AbiAZLm6 (ORCPT ); Wed, 26 Jan 2022 06:42:58 -0500 Received: from ams.source.kernel.org ([145.40.68.75]:58792 "EHLO ams.source.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S240850AbiAZLmt (ORCPT ); Wed, 26 Jan 2022 06:42:49 -0500 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 5DE05B81620; Wed, 26 Jan 2022 11:42:48 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id B71D1C340E3; Wed, 26 Jan 2022 11:42:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1643197367; bh=t9+X/e4kJrfvP+h2PpV77QbmVxkh7QVcipQpoeJ2Kwg=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=JQRELume7i1k+Rq1xY8eBFiq0oCnOAccaKsOGV8BOMAfOofEsx5a+1g5FN6Pm9BYg 5hDOuB0YaIKpmdD5V4OlKeG+hc1M3bCslNuhFURpO9omiTMFzpF6Qsj0+jR2LZt+sC aHNid9PV/ym0ZjrzYRCEnw1iIKJIOv26vUsVW+Ic= Date: Wed, 26 Jan 2022 12:42:44 +0100 From: Greg Kroah-Hartman To: Jack Wang Cc: linux-kernel@vger.kernel.org, stable , Guoqing Jiang , Song Liu , Guillaume Morin Subject: Re: [PATCH 5.10 01/25] md: revert io stats accounting Message-ID: References: <20220114081542.698002137@linuxfoundation.org> <20220114081542.746291845@linuxfoundation.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Jan 26, 2022 at 11:09:46AM +0100, Jack Wang wrote: > Hi, > > Greg Kroah-Hartman 于2022年1月14日周五 19:57写道: > > > > From: Guoqing Jiang > > > > commit ad3fc798800fb7ca04c1dfc439dba946818048d8 upstream. > > > > The commit 41d2d848e5c0 ("md: improve io stats accounting") could cause > > double fault problem per the report [1], and also it is not correct to > > change ->bi_end_io if md don't own it, so let's revert it. > > > > And io stats accounting will be replemented in later commits. > > > > [1]. https://lore.kernel.org/linux-raid/3bf04253-3fad-434a-63a7-20214e38cf26@gmail.com/T/#t > > > > Fixes: 41d2d848e5c0 ("md: improve io stats accounting") > > Signed-off-by: Guoqing Jiang > > Signed-off-by: Song Liu > > [GM: backport to 5.10-stable] > > Signed-off-by: Guillaume Morin > > Signed-off-by: Greg Kroah-Hartman > > --- > > drivers/md/md.c | 57 +++++++++++--------------------------------------------- > > drivers/md/md.h | 1 > > 2 files changed, 12 insertions(+), 46 deletions(-) > > > > --- a/drivers/md/md.c > > +++ b/drivers/md/md.c > > @@ -459,34 +459,12 @@ check_suspended: > > } > > EXPORT_SYMBOL(md_handle_request); > > > > -struct md_io { > > - struct mddev *mddev; > > - bio_end_io_t *orig_bi_end_io; > > - void *orig_bi_private; > > - unsigned long start_time; > > - struct hd_struct *part; > > -}; > > - > > -static void md_end_io(struct bio *bio) > > -{ > > - struct md_io *md_io = bio->bi_private; > > - struct mddev *mddev = md_io->mddev; > > - > > - part_end_io_acct(md_io->part, bio, md_io->start_time); > > - > > - bio->bi_end_io = md_io->orig_bi_end_io; > > - bio->bi_private = md_io->orig_bi_private; > > - > > - mempool_free(md_io, &mddev->md_io_pool); > > - > > - if (bio->bi_end_io) > > - bio->bi_end_io(bio); > > -} > > - > > static blk_qc_t md_submit_bio(struct bio *bio) > > { > > const int rw = bio_data_dir(bio); > > + const int sgrp = op_stat_group(bio_op(bio)); > > struct mddev *mddev = bio->bi_disk->private_data; > > + unsigned int sectors; > > > > if (mddev == NULL || mddev->pers == NULL) { > > bio_io_error(bio); > > @@ -507,26 +485,21 @@ static blk_qc_t md_submit_bio(struct bio > > return BLK_QC_T_NONE; > > } > > > > - if (bio->bi_end_io != md_end_io) { > > - struct md_io *md_io; > > - > > - md_io = mempool_alloc(&mddev->md_io_pool, GFP_NOIO); > > - md_io->mddev = mddev; > > - md_io->orig_bi_end_io = bio->bi_end_io; > > - md_io->orig_bi_private = bio->bi_private; > > - > > - bio->bi_end_io = md_end_io; > > - bio->bi_private = md_io; > > - > > - md_io->start_time = part_start_io_acct(mddev->gendisk, > > - &md_io->part, bio); > > - } > > - > > + /* > > + * save the sectors now since our bio can > > + * go away inside make_request > > + */ > > + sectors = bio_sectors(bio); > This code snip is not inside the original patch, and it's not in > latest upstream too. > > /* bio could be mergeable after passing to underlayer */ > > bio->bi_opf &= ~REQ_NOMERGE; > > > > md_handle_request(mddev, bio); > > > > + part_stat_lock(); > > + part_stat_inc(&mddev->gendisk->part0, ios[sgrp]); > > + part_stat_add(&mddev->gendisk->part0, sectors[sgrp], sectors); > > + part_stat_unlock(); > > + > same here, this code snip is not inside the original patch, and it's > not in latest upstream too. Is it a problem? > I think would be good keep it as the upstream version. Can you send a revert of this commit (it is in 5.10.92), and a backport of the correct fix? thanks, greg k-h