From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 6E29F5A79B for ; Thu, 16 Jul 2026 14:09:37 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784210978; cv=none; b=blqwFqSlKf14MTTUcGX1km2jx5F3NJe3Sw5osBQ8Mp3mOPESwJmNzeA8hCn+i9PrLJdqwy6IqpKWxL54bzEtmiCr5r1ySm1p7Z1rhY9AomARXgqJJcNTgffop77sNMRna11VaL8d6agO7bXvn0yL7v5n/o5umX8SB7cJqUXQ7cQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784210978; c=relaxed/simple; bh=0RNhwOgQrsjCiy2QFZmo3UN2fIcx4crGzZFCgagCCIg=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=DMeUbZGvJxmEe7Pi3TXHdP4Tp38J28eBzJdyUOyg/1y3NRrxgWn/ZWk5q+tW5CoRek9sGt4MhbFnM64oD5kn0Mk2dxdSJt7MZls9NbbUutdKSF7FmYL+35ly568SHRmlgIPA9gRM6h9WdHo2wPIGYv2V0Uyk3fzWB1mQCB3Ze+0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=IUfmUzYY; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="IUfmUzYY" Received: by smtp.kernel.org (Postfix) with ESMTPSA id DAB7E1F00A3D; Thu, 16 Jul 2026 14:09:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1784210977; bh=kGamTcS4sVFtX6QmitbxVR0BDQIJTcz2VhTQyBO2iVQ=; h=Date:From:To:Cc:Subject; b=IUfmUzYYPBgUHapZJimJGGGXy4IqO4ozardW9sbB/HTc0UMESeUsSMVMzoS7ZJ4nI 9ujw2SzCwyGL40J8zSiiXso/QVv0cm5TyAYz/h9OKU+c2flO1Vn5+EAJM2VoTXO2CT 5hV9d/7G7a6MD0wZIuc7ya6mbPJziv6cfEm3aI0XR0BjwqcMLhs68E4nDSAaaBOL8r O/MW2sXyuitVHNNS5OkhoqN/gE8jZfy8dud1F0GaLKbYTuQOwsJN7Oowc5ROWkhDAZ 093XIf0p+aW3NvJ/ibUqhXBOUPlC0UkK0OZxIlTKTT1IVtBzoik12Rk5/7K2TJQT4v CFgZA/MSUczfA== Date: Thu, 16 Jul 2026 22:09:29 +0800 From: Gao Xiang To: Linus Torvalds Cc: linux-erofs@lists.ozlabs.org, LKML Subject: [GIT PULL] erofs fixes for 7.2-rc4 Message-ID: Mail-Followup-To: Linus Torvalds , linux-erofs@lists.ozlabs.org, LKML 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 these fixes for 7.2-rc4? All commits are small as shown below: anyway, the most impacted one fixes a regression introduced in v7.1 to avoid false corruption reports for some ztailpacking-enabled images. Thanks, Gao Xiang The following changes since commit dc59e4fea9d83f03bad6bddf3fa2e52491777482: Linux 7.2-rc1 (2026-06-28 12:01:31 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git tags/erofs-for-7.2-rc4-fixes for you to fetch changes up to 1572282de6d3377ca8605d48c50df3a8c08468e9: erofs: hide "cache_strategy=" for plain filesystems (2026-07-13 16:41:42 +0800) ---------------------------------------------------------------- Changes since last update: - Fix sanity checks for ztailpacking tail pclusters to avoid false corruption reports - Use more informative s_id for file-backed mounts - Hide the meaningless "cache_strategy=" mount option on plain (uncompressed) filesystems - Remove the unneeded erofs_is_ishare_inode() helper ---------------------------------------------------------------- Gao Xiang (4): erofs: use more informative s_id for file-backed mounts erofs: relax sanity check for tail pclusters due to ztailpacking erofs: get rid of erofs_is_ishare_inode() helper erofs: hide "cache_strategy=" for plain filesystems fs/erofs/ishare.c | 8 +------- fs/erofs/super.c | 19 +++++-------------- fs/erofs/zmap.c | 3 ++- 3 files changed, 8 insertions(+), 22 deletions(-)