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 X-Spam-Level: X-Spam-Status: No, score=-13.3 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING, NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id DE789C4338F for ; Thu, 5 Aug 2021 03:04:26 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id BB1A561078 for ; Thu, 5 Aug 2021 03:04:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S238443AbhHEDEi (ORCPT ); Wed, 4 Aug 2021 23:04:38 -0400 Received: from mail.kernel.org ([198.145.29.99]:39078 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232011AbhHEDEi (ORCPT ); Wed, 4 Aug 2021 23:04:38 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id AD0D661004; Thu, 5 Aug 2021 03:04:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1628132664; bh=DoFtBqW8UB6ruKlkRSAEkUmYvCdD/NWqyxtofjx/IEo=; h=Subject:To:Cc:References:From:Date:In-Reply-To:From; b=Cvv2hzAVc/Y0Ko9wOqWwQ6eDKKp8phmjSGUKkGAUixj6TLKLpEbP/5Xou52GPQ52v 4OsGSN8N0tCQ2O7TpNpgOi998eUE0In9YgHtsMMSir0V8m8f/AAsPReP3ko5XI9rYN Y8kuw6pFcUknud+XlcEcUBiWfOBwWZ37i5YL2FOfboPgLnb62DsH3eeNzWQ3i3g6gP 94XL/XW94+p13ZFM0n8f0mUcqZ49qYODEqJpAF/SXnuaIZyOhvM2XWyYKF/vInrUJP tTLPyGcOzCOWGozvvnhEwJqC6DvqOTxYYAJfGc4jY8hAP0u+GeBeVCJoWHypOoynWa v5gkfyyrZ3Sug== Subject: Re: [f2fs-dev] [RFC v3] f2fs: extent cache: support unaligned extent To: Jaegeuk Kim Cc: Chao Yu , linux-kernel@vger.kernel.org, linux-f2fs-devel@lists.sourceforge.net References: <20210804022348.1414543-1-chao@kernel.org> <0dad9863-4aa2-3ea3-fd97-457aa635ed66@kernel.org> From: Chao Yu Message-ID: <62eb8902-90fa-4b1a-55ce-a178643baf90@kernel.org> Date: Thu, 5 Aug 2021 11:04:21 +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; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2021/8/5 10:53, Jaegeuk Kim wrote: > On 08/05, Chao Yu wrote: >> Jaegeuk, >> >> On 2021/8/5 7:45, Jaegeuk Kim wrote: >>> Chao, >>> >>> How about this? >>> https://github.com/jaegeuk/f2fs/commit/d6bbe121bc24dfabfedc07ba7cb6e921fb70ece0 >> >> Looks more clean, thanks, >> >>> >>> I'm digging one bug in __insert_extent_tree w/ the patch tho. >> >> Shouldn't we initialize @ei in f2fs_update_extent_tree_range(), otherwise, >> __try_merge_extent_node(&ei) -> __is_extent_mergeable() will do the check >> w/ uninitialized c_len of @ei. > > Fixed some bugs, but still getting another data corruption. > > https://github.com/jaegeuk/f2fs/commit/c5d97919c55b467392407b60c1a7b1e3e81721ff Let me rebase to your code, and do some tests. Thanks > >> >>>> On 08/04, Chao Yu wrote: >>>>> + if (from_dnode) >>>>> + goto skip_reading_dnode; >> >> Wrong condition here, thanks for fixing. >> >> Thanks,