From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id EC641197A8B for ; Thu, 16 Jan 2025 08:36:44 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1737016605; cv=none; b=sGnsxX9ew4zEhHBIjwX7n0WGA5xoYE24e0COYjbNDQcW6zeByEL8Tuz7yG71LX/BCb1NLiIeTxOQN/MsxlM6lt3y/Z+gQWx/t2qwqDfbprx+PRo2QTDgC9idXWhldwnvXRB7nFHY32Li9YK1IkymBK3M0PzFK6xvS9Cbtp3/Ylo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1737016605; c=relaxed/simple; bh=mZi7Nge/C5KNAdttqxMcIO4HjMK1pfEBHsp6TwIupQo=; h=Message-ID:Date:MIME-Version:Cc:Subject:To:References:From: In-Reply-To:Content-Type; b=XNxnh3jJB1VebLkXICslscfe7w2Gn5vLhQsdoG0fdoqz7y8vteCPkkLTZMr4p1LTFHCEqOAfyv3bmkHxwv+HoeHwrcOc6eZWnBkYqcbylzkW/dso8xZe/sGPFsErKnEZnnd0euquJ9Rd6fZmVW6TjK+BwT0FRfyhanVTgb0If6c= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=JCwkSVaT; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="JCwkSVaT" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 87E89C4CED6; Thu, 16 Jan 2025 08:36:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1737016604; bh=mZi7Nge/C5KNAdttqxMcIO4HjMK1pfEBHsp6TwIupQo=; h=Date:Cc:Subject:To:References:From:In-Reply-To:From; b=JCwkSVaTo79ylGYXtZKqj58idlAJOHhkAxlTut0dm4xgo0aJ2koflGA9IH9IB/OFn ztLKNhDw/RJWPpa0drtjTmEOPhVxCfDf30SoN1kJrwGghIw2AXMvEpEHZ00kgDlqoC 8pgxz4BH/p/ydNdoE0ukf+f78b4rdcExsrzaWUHnaiCwrs1ZjFP8sRHrmNd6j7f82/ uPwMMFYiFUhmMRj5kuOsnwByFDBa7HnPXZ1buioeOy6oBe7h5NDbV+SBcPnl9BAnI5 Zhztj/ALXjoGJ1umx6K8KjkQNo5RrlrDJ/pdChLarMqyALCk6oS7T2AB5+H7limHQy GGdiD3JpSwbWQ== Message-ID: <78d57523-e75b-4bfb-8819-2d2c78234032@kernel.org> Date: Thu, 16 Jan 2025 16:36:41 +0800 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Cc: chao@kernel.org, LKML Subject: Re: [PATCH 1/4] erofs: simplify z_erofs_load_compact_lcluster() To: Gao Xiang , linux-erofs@lists.ozlabs.org References: <20250114034429.431408-1-hsiangkao@linux.alibaba.com> Content-Language: en-US From: Chao Yu In-Reply-To: <20250114034429.431408-1-hsiangkao@linux.alibaba.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit On 1/14/25 11:44, Gao Xiang wrote: > - Get rid of unpack_compacted_index() and fold it into > z_erofs_load_compact_lcluster(); > > - Avoid a goto. > > Signed-off-by: Gao Xiang Reviewed-by: Chao Yu Thanks,