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 EAFE71991D9 for ; Thu, 5 Sep 2024 09:46:47 +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=1725529608; cv=none; b=lxor4IRtUVhrGfp0NqyWN805U6csI7pN0HLdVHfoheVHxUzfsr/v0oUyn8zB/40uosS5pVZqKoJUUdQc33aFiVDRbZ13+2BTqk8FxXLUj/HnL9170Lf/r0Nh3wH1ooaMnohdQmkimHpTA6/jCDvYb4XwbkSo5q58nxmvER0iXdY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1725529608; c=relaxed/simple; bh=YEneNQaX0gxRmH24YN6kZK5p+5+wcuX0UjfdhlRhrPI=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=QDy6zWoLRC6jnedvYzsmZa0OkPg+LTFVv97yNhJT3zq7+ONMRMahPszXLJ5Of0UxCcYdQp0RZK77aiUcHVFE3gTJdZlXQwCt//1Sdy+ttgy082KWpEk1rZ2eF5vUwIUmPw8rNeD8a1ugxsu6eoDlLpU5JANg143AdY4/3Acgbk8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=VQ8MjYSN; 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="VQ8MjYSN" Received: by smtp.kernel.org (Postfix) with ESMTPSA id F0826C4CECB; Thu, 5 Sep 2024 09:46:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1725529607; bh=YEneNQaX0gxRmH24YN6kZK5p+5+wcuX0UjfdhlRhrPI=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=VQ8MjYSN23iF0GjoNHIf2lG7dxiaT/6deL90C9964Gz0ggxZKeymMpPHPfvhHgplp Vr69oPsuYg9KrnOCkgm+qoD13wR3MQKcoddgA2CK4p/fK+HPJc9CC5ulkzwREayOvz AhxudPRD4tNGOf/EEvyVpAqwEngP1PUh2lzrC5ev/8LVFkCa8ogzujwu5j+PbhZweZ WJyRu6d2fQfSb/uKl6Yn3QZvd9fmQ9kz5xWEKXHfBzK5RAYbnPN/rZFNDcJIf7cWxE H3+jY/xKvmyvOEwUAWTX6xiB8w6hvshZvCUiP8L1OrgWR1STggKTrqD5WMvP1bhMyM 7ucZD4bEzypBg== Message-ID: Date: Thu, 5 Sep 2024 17:46:44 +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 Subject: Re: [PATCH v2 3/4] erofs: support compressed inodes for fileio To: Gao Xiang , linux-erofs@lists.ozlabs.org Cc: LKML References: <20240830032840.3783206-1-hsiangkao@linux.alibaba.com> <20240830032840.3783206-3-hsiangkao@linux.alibaba.com> Content-Language: en-US From: Chao Yu In-Reply-To: <20240830032840.3783206-3-hsiangkao@linux.alibaba.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit On 2024/8/30 11:28, Gao Xiang wrote: > Use pseudo bios just like the previous fscache approach since > merged bio_vecs can be filled properly with unique interfaces. > > Signed-off-by: Gao Xiang Reviewed-by: Chao Yu Thanks,