Received: by 2002:a05:6902:102b:0:0:0:0 with SMTP id x11csp1026107ybt; Fri, 19 Jun 2020 22:04:03 -0700 (PDT) X-Google-Smtp-Source: ABdhPJwJhaz1c2I5KNmhydjmCZVkY+rgsLWEgtES4hHgy2ThZ68b8x7jxh26CHeEx1AWapdbAxJZ X-Received: by 2002:a17:906:c7da:: with SMTP id dc26mr7066022ejb.500.1592629443474; Fri, 19 Jun 2020 22:04:03 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1592629443; cv=none; d=google.com; s=arc-20160816; b=E++OHpLaEi0X/KkgYV2mYmsduWf+trEVIfstVrn/ZB8QrkHtkUbybZ5aRClCrG+dMs SQEj10FDxkymwRKogT1kIOxU8lsnM247Z2V8xWSpbphB/rBdEVwNB9VWWQhz5yFoOYkz NT2hnOMkkyIMDdSZW4/h+JQDLdTTqBaz/7JsT6g1muT/3xVFfxlJuAxe5FdqUxa9PgG0 R30MOfUDRMRm/ZFcNwMVjXWh8eRBORWP4QXo9gPI7K1SRsbKryQfHMJjdhPfFNliwDA6 JJXAW6Z3yJUl1kf4bk+GSUbAaj8YfCftLaV2r5iLDv3NVwcgRHM46oWBKE3skW0/so4w Rixg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=sp3f4I6azvZZVnV9L6cp2nB015TFiH/mEClbA0Pvom0=; b=E11unXnhGOv0QWSpjeaffHYKVU6KKGPCr5VSRIn7A0gOGhSwNUM5I/K4/vxGZbyC7Z gkihGrltgPheFzLzgqjK+1s3rZXWL6oX1FSA1UAg4Z2O/AHgeHHQ0zXTfsFKaiprf2OF 3mvfAjTUE1lBcIoQhb0L9dil7x+bRrDA1cD8FolltNSjUpMgUqRBU5/2bL0C8NYt2B3L r2FQ+VyjB5LAF9MhPPULlmhjB+Mr7gDG8J/Je34vBSx8qCKkl1pXgMh7xlh+wsAorblB iUiYUOLsDq+D3kuY+ioGQHI4yf1E8PM1uIaI3c7ZuWQ69cDB5v2VQHOGGUbWtul+0YZm KzIw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id o20si4771021eju.673.2020.06.19.22.03.40; Fri, 19 Jun 2020 22:04:03 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1732119AbgFTCxm (ORCPT + 99 others); Fri, 19 Jun 2020 22:53:42 -0400 Received: from szxga06-in.huawei.com ([45.249.212.32]:54912 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1732117AbgFTCxh (ORCPT ); Fri, 19 Jun 2020 22:53:37 -0400 Received: from DGGEMS401-HUB.china.huawei.com (unknown [172.30.72.60]) by Forcepoint Email with ESMTP id 79084C7360E1DB382C76; Sat, 20 Jun 2020 10:53:33 +0800 (CST) Received: from huawei.com (10.175.127.227) by DGGEMS401-HUB.china.huawei.com (10.3.19.201) with Microsoft SMTP Server id 14.3.487.0; Sat, 20 Jun 2020 10:53:22 +0800 From: "zhangyi (F)" To: , , CC: , , , Subject: [PATCH v3 4/5] jbd2: abort journal if free a async write error metadata buffer Date: Sat, 20 Jun 2020 10:54:26 +0800 Message-ID: <20200620025427.1756360-5-yi.zhang@huawei.com> X-Mailer: git-send-email 2.25.4 In-Reply-To: <20200620025427.1756360-1-yi.zhang@huawei.com> References: <20200620025427.1756360-1-yi.zhang@huawei.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7BIT Content-Type: text/plain; charset=US-ASCII X-Originating-IP: [10.175.127.227] X-CFilter-Loop: Reflected Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org If we free a metadata buffer which has been failed to async write out in the background, the jbd2 checkpoint procedure will not detect this failure in jbd2_log_do_checkpoint(), so it may lead to filesystem inconsistency after cleanup journal tail. This patch abort the journal if free a buffer has write_io_error flag to prevent potential further inconsistency. Signed-off-by: zhangyi (F) --- fs/jbd2/transaction.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/fs/jbd2/transaction.c b/fs/jbd2/transaction.c index e91aad3637a2..a4932e8dcb65 100644 --- a/fs/jbd2/transaction.c +++ b/fs/jbd2/transaction.c @@ -2117,6 +2117,7 @@ int jbd2_journal_try_to_free_buffers(journal_t *journal, { struct buffer_head *head; struct buffer_head *bh; + bool has_write_io_error = false; int ret = 0; J_ASSERT(PageLocked(page)); @@ -2141,11 +2142,26 @@ int jbd2_journal_try_to_free_buffers(journal_t *journal, jbd2_journal_put_journal_head(jh); if (buffer_jbd(bh)) goto busy; + + /* + * If we free a metadata buffer which has been failed to + * write out, the jbd2 checkpoint procedure will not detect + * this failure and may lead to filesystem inconsistency + * after cleanup journal tail. + */ + if (buffer_write_io_error(bh)) { + pr_err("JBD2: Error while async write back metadata bh %llu.", + (unsigned long long)bh->b_blocknr); + has_write_io_error = true; + } } while ((bh = bh->b_this_page) != head); ret = try_to_free_buffers(page); busy: + if (has_write_io_error) + jbd2_journal_abort(journal, -EIO); + return ret; } -- 2.25.4