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 8B9E7290F for ; Sun, 16 Mar 2025 01:56:14 +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=1742090174; cv=none; b=eZEjWGztdVo9skOrolGg8oEGgQMD8LXGfzZ1LCxiQgRWhzzT6gNtiL5iilDClSiXsz2SYmHG3dgCGtlXumuG2g+GMwZXhAp2Z+lWUQDpBaDAXEfGYAhGfPnDqmJRCOA57gWaxMPyxAmaqcX91Pg9h/d6PccHGCUIK1tbM+h0P+4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1742090174; c=relaxed/simple; bh=TSApGeq561AKpnh0Qf+XWrQjdOoTxwaKJz/vBCl6scw=; h=Message-ID:Date:MIME-Version:Cc:Subject:To:References:From: In-Reply-To:Content-Type; b=qmVmFUwtLupcSN1kVqBcdk9JdhM3MDBEpWSLNSV88YBa+D+LrtuAe3Pilo6vhZcrzohiyCRtpj771idRAPyMjO0vQaZS1aCm6JqnKe0yyywkEWHlvLTflopvx9uBAv3HyLDIEC1nXzmYyH/MkOADr1d64ZMuynXETXON+eTqul0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=fe0+MTYT; 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="fe0+MTYT" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 72768C4CEE5; Sun, 16 Mar 2025 01:56:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1742090174; bh=TSApGeq561AKpnh0Qf+XWrQjdOoTxwaKJz/vBCl6scw=; h=Date:Cc:Subject:To:References:From:In-Reply-To:From; b=fe0+MTYTctzs+5mldrlTR8Vc8OwHqtMst5vYqn0Nh+J3vSHWbtoqQPB8WMeBfx9kH nBQOFIL5Tyl77NCadB3gcUD0pv0GfHmtcPTOMr7y3pFEuLT3EW7dW63+au6kZGsWTz nGn7Ph0HtiVTFiccRYL3FCKSOY4fwk/JtKmkduRldIOuOtBqDr6u3jLjkALVwzA3mX FMMf/IYHPeQ/SOgOmvTaeICFgAkLoVxgEKZPtPSmhUsG6FZcSGh2FbKyCI7kL/r85m o/RnqtVRam5m7h6bx1RMAJTDXkSjBdogYD9gsyzDLjUV2fKu7R0VpNaGGUAxroNg8E D3NGJ8xhER1+g== Message-ID: <2e0ede6e-3cfc-45fd-b287-2d41e561939e@kernel.org> Date: Sun, 16 Mar 2025 09:56:13 +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] erofs: move {in,out}pages into struct z_erofs_decompress_req To: Gao Xiang , linux-erofs@lists.ozlabs.org References: <20250305124007.1810731-1-hsiangkao@linux.alibaba.com> Content-Language: en-US From: Chao Yu In-Reply-To: <20250305124007.1810731-1-hsiangkao@linux.alibaba.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit On 2025/3/5 20:40, Gao Xiang wrote: > It seems that all compressors need those two values, so just move > them into the common structure. > > `struct z_erofs_lz4_decompress_ctx` can be dropped too. > > Signed-off-by: Gao Xiang Reviewed-by: Chao Yu Thanks,