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 1C77525B311 for ; Tue, 23 Dec 2025 14:49: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=1766501355; cv=none; b=L6lYYiiwpnqlzxZlpm4ED92/wV8Kypf+mM0jytImQGk7f5I7Sol7AUAzOxh3SSg86Av/0pcxjvQwWYqsaCUC+TnEQeuRORmAjfCt31gzlq61X9BQhGBJkHiBl654UHrQZC4c9+EpwKOrjtvq1CMJwTdDnZyYqGhGcBi2+O/IA5I= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1766501355; c=relaxed/simple; bh=V8otbR5wN/LW90Vi/sr/EVRCZfPErAzcyVaSdwl6DWQ=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=oQxIjVizuZuazx3ypmojcAO/LyAo/AVq7VgR3kvi1oEvISaF9PfxZWQ2gBuR2LemccJLqZu+TcmqoRJ+geZsC64xo4XPzXRaR7Ps3mWxb/H0cu+iuNfdMCdRP3YhHmpsQDUeX/TXkSMIkqxaBevu24YpQETWEAlcCTDYa6QMAgI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=GOAzHfzL; 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="GOAzHfzL" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 23C27C113D0; Tue, 23 Dec 2025 14:49:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1766501354; bh=V8otbR5wN/LW90Vi/sr/EVRCZfPErAzcyVaSdwl6DWQ=; h=Date:From:To:Cc:Subject:From; b=GOAzHfzLto6vAp6SZ/TjZzdJcxsNQE5or7D3DJGf7Bmv+k1FWhJ8N0nN4Ik0F+qOO D2xmHHJc/pQ+/D/TE9lRFe9yyXT/vJe/pD6515mbYBsmdu8/BRW+b+R+Qvm3WR7xxJ c39ALj3X22BTqLV09QwqfS3+c0PCXxSSOmsuspsAlVl4n2eZI44HGr5mbOvkB7UM2O Heaj6E6UNr+K5nrqxaAqxqLe+RTnmHoJhStIdz5QWjQ7GwCNP5Zw8WRC4t3ksKRnZc faYRe1bhIVqnssUG9VFxRkzMymY+iuEX1S4Mgs3OS0Ys2GLyHNowImWk++hAoIfr1/ fTV9UOvfuMiGw== Date: Tue, 23 Dec 2025 22:49:07 +0800 From: Gao Xiang To: Linus Torvalds Cc: linux-erofs@lists.ozlabs.org, LKML , Junbeom Yeom Subject: [GIT PULL] erofs fix for 6.19-rc3 Message-ID: Mail-Followup-To: Linus Torvalds , linux-erofs@lists.ozlabs.org, LKML , Junbeom Yeom Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Hi Linus, Could you consider this fix for 6.19-rc3? Junbeom reported that synchronous reads could hit unintended EIOs under memory pressure due to incorrect error propagation in z_erofs_decompress_queue(), where earlier physical clusters in the same decompression queue may be served for another readahead. This patch addresses the issue by decompressing each physical cluster independently as long as disk I/Os succeed, rather than being impacted by the error status of previous physical clusters in the same queue. Happy Xmas and new year in advance! Thanks, Gao Xiang The following changes since commit 8f0b4cce4481fb22653697cced8d0d04027cb1e8: Linux 6.19-rc1 (2025-12-14 16:05:07 +1200) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git tags/erofs-for-6.19-rc3-fixes for you to fetch changes up to 4012d78562193ef5eb613bad4b0c0fa187637cfe: erofs: fix unexpected EIO under memory pressure (2025-12-22 00:18:53 +0800) ---------------------------------------------------------------- Change since last update: - Fix unexpected EIOs under memory pressure caused by recent incorrect error propagation logic ---------------------------------------------------------------- Junbeom Yeom (1): erofs: fix unexpected EIO under memory pressure fs/erofs/zdata.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)