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 32ED11D90AE for ; Thu, 16 Jan 2025 09:32:15 +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=1737019936; cv=none; b=BDP6xlMXE1pW3Mbvy1ZfGc1LKqh2b+dBF5LqKrT8hBl30LMeWSXCjRzoCi0p3MHtz/cyKz3hBKCoU0OATByhpbunYOBtLDQTcP6frd82KAitRfsuy9dFRAWQTtKdlAJl/6KY6Y0OaYA5oac12OR/Aithx4TiGvAJP62HemzbmUI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1737019936; c=relaxed/simple; bh=RJnBHbzrGwslxnnKzFq3PMIa04GMj6UcmJVLXDnY11o=; h=Message-ID:Date:MIME-Version:Cc:Subject:To:References:From: In-Reply-To:Content-Type; b=GfPbfodlTnsY8TblzF4aCYjRLifLU/lbYaY7cUQmppDOifG+p7Se0d+a+uVsx0+Txsy/60QQM+IABY5GYPtwFfN+LsLYMHjQKzrqitmUW4wupHH0lSPjg+zHh8kO+67SLL3dC42kfpm91wgowLkdr1n3VDnnnb4xDxF7aMonzBU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=qRDkKaB3; 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="qRDkKaB3" Received: by smtp.kernel.org (Postfix) with ESMTPSA id D9450C4CED6; Thu, 16 Jan 2025 09:32:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1737019935; bh=RJnBHbzrGwslxnnKzFq3PMIa04GMj6UcmJVLXDnY11o=; h=Date:Cc:Subject:To:References:From:In-Reply-To:From; b=qRDkKaB3s17yoRBJ++OGBfv6F+pgIAprxNberdl1sWkQ2sBnwZucfj9eP7DkT4ldA 7EL8pJxl9wVKvqT9rnSjwIRwTr3pQGzNq2NBZzSByn98ezL1NHOzBGxED+1b+gjAOj GvcS5vGziFvZwoC4zNszUOgkJnfEabbpAzm2gTqQThhaSuwmM5bg/q56eiRVdub9q1 5lk9+9yXFu+vyL5CidZNy8a46MoIKzFvHGUbHYb9tn8nAZcdCCsyDf/5YbjeJDt9Rb 7MheE3oR/XlBC4wG4F+watuPPzQHWW/HIjGu7vest+uUG741/1fsQOkCGhUftuQM/W pFh7ICrBxF98w== Message-ID: Date: Thu, 16 Jan 2025 17:32:12 +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 2/4] erofs: get rid of `z_erofs_next_pcluster_t` To: Gao Xiang , linux-erofs@lists.ozlabs.org References: <20250114034429.431408-1-hsiangkao@linux.alibaba.com> <20250114034429.431408-2-hsiangkao@linux.alibaba.com> Content-Language: en-US From: Chao Yu In-Reply-To: <20250114034429.431408-2-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: > It was originally intended for tagged pointer reservation. > > Now all encoded data can be represented uniformally with > `struct z_erofs_pcluster` as described in commit bf1aa03980f4 > ("erofs: sunset `struct erofs_workgroup`"), let's drop it too. > > Signed-off-by: Gao Xiang Reviewed-by: Chao Yu Thanks,