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 D7138C6FD1C for ; Sun, 26 Mar 2023 03:53:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231764AbjCZDxH (ORCPT ); Sat, 25 Mar 2023 23:53:07 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53378 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230286AbjCZDxF (ORCPT ); Sat, 25 Mar 2023 23:53:05 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 8B746B461 for ; Sat, 25 Mar 2023 20:53:04 -0700 (PDT) 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 dfw.source.kernel.org (Postfix) with ESMTPS id 3365C60D32 for ; Sun, 26 Mar 2023 03:53:04 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id E31B6C433D2; Sun, 26 Mar 2023 03:53:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1679802783; bh=RF6N9FVB3DivyoIx0C73mEw6zoogCODNFdFMIq0xZuw=; h=Date:Subject:To:References:From:In-Reply-To:From; b=naIuWWlPpbSfMczMPHstX2SNjWeBSwif2zJ7NElVzl/1us2RRpROsT8kia5Plsxxa /nbjvIs0l68FkbpHxzhaSnNMwYVegOlLC7lUwIppFbULi/daAJ04Dghx0Kh42KWBk8 z02CJZBwpYQgP5JpNC4HM67IBcBTG7uWtbCes6fLjjPo+JMCoti01cyTz3bI/K9dYS THAJTu1TsFAqt2dTz9tqWD4rb7kbrCmI+gfVG8UX3vXTekX29lFPRus6OpDjED5Ifv K+uCtG8fKb+s7CJ6pFiXvp/wOwktEymu3hmiHSrh/53F/kLoMXNAyhBA+loAqdCZdD 6/6WpP3GBgo5Q== Message-ID: <3b2c0df6-fedf-8941-9242-6f6571ad7372@kernel.org> Date: Sun, 26 Mar 2023 11:53:01 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.8.0 Subject: Re: [f2fs-dev] [PATCH] f2fs: apply zone capacity to all zone type Content-Language: en-US To: Jaegeuk Kim , linux-kernel@vger.kernel.org, linux-f2fs-devel@lists.sourceforge.net References: <20230321231157.963598-1-jaegeuk@kernel.org> From: Chao Yu In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2023/3/22 7:35, Jaegeuk Kim wrote: > On 03/21, Jaegeuk Kim wrote: >> If we manage the zone capacity per zone type, it'll break the GC assumption. >> And, the current logic complains valid block count mismatch. >> Let's apply zone capacity to all zone type, if specified. >> > > Added: > > Fixes: de881df97768 ("f2fs: support zone capacity less than zone size") > >> Signed-off-by: Jaegeuk Kim Reviewed-by: Chao Yu Thanks,