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 91A83C6FA82 for ; Fri, 2 Sep 2022 01:58:43 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234445AbiIBB6m (ORCPT ); Thu, 1 Sep 2022 21:58:42 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60216 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232014AbiIBB6l (ORCPT ); Thu, 1 Sep 2022 21:58:41 -0400 Received: from szxga01-in.huawei.com (szxga01-in.huawei.com [45.249.212.187]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2C354A98F0; Thu, 1 Sep 2022 18:58:40 -0700 (PDT) Received: from canpemm500005.china.huawei.com (unknown [172.30.72.57]) by szxga01-in.huawei.com (SkyGuard) with ESMTP id 4MJgw03pldzkX1X; Fri, 2 Sep 2022 09:54:56 +0800 (CST) Received: from [10.174.178.134] (10.174.178.134) by canpemm500005.china.huawei.com (7.192.104.229) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.24; Fri, 2 Sep 2022 09:58:37 +0800 Subject: Re: [PATCH v2 13/14] ext2: replace bh_submit_read() helper with bh_read_locked() To: Al Viro CC: , , , , , , , , , , , , , , , , , , References: <20220901133505.2510834-1-yi.zhang@huawei.com> <20220901133505.2510834-14-yi.zhang@huawei.com> <3fdab5fd-1efa-9668-da5c-889e9bfa1524@huawei.com> From: Zhang Yi Message-ID: Date: Fri, 2 Sep 2022 09:58:36 +0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Thunderbird/78.12.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset="utf-8" Content-Language: en-US Content-Transfer-Encoding: 7bit X-Originating-IP: [10.174.178.134] X-ClientProxiedBy: dggems703-chm.china.huawei.com (10.3.19.180) To canpemm500005.china.huawei.com (7.192.104.229) X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org On 2022/9/2 9:51, Al Viro wrote: > On Fri, Sep 02, 2022 at 09:32:53AM +0800, Zhang Yi wrote: >> On 2022/9/2 8:30, Al Viro wrote: >>> On Thu, Sep 01, 2022 at 09:35:04PM +0800, Zhang Yi wrote: >>>> bh_submit_read() and the uptodate check logic in bh_uptodate_or_lock() >>>> has been integrated in bh_read() helper, so switch to use it directly. >>> >>> s/bh_read_locked/bh_read/ in the summary? >>> >> >> Sorry, I don't get your question, I have already replace bh_read_locked() >> with bh_read() in the commit message, there is no bh_read_locked in the whole >> patch. Am I missing something? > > Take a look at the subject ;-) Oh, yes, I forgot to update the subject, will do. Thanks, Yi.