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 8EDA22BAF4 for ; Sat, 12 Jul 2025 15:41:41 +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=1752334901; cv=none; b=MV/WP4SPZxxyfZLnZVrqKbnHVsgS1lX+ghWDqTgdGz+kg4Ro8sKk35YKCO6WlDdNy6pv2fd9Wm1H3R9tn0vpGa6xxxmTnjkdsnjm9U9JQcBqxFRwFs+K4gXA9+i//KqApQcdGd+MddGkjofw+0ocbM/rFHoOmdHeu5h99kKg94Y= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1752334901; c=relaxed/simple; bh=YYFSm1m5FX2KuQrL4dOdK866ohlLLkmCOxC11uddIe4=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=SuIQ2tS279a3IY5xLz40T39+1Bb8xAYP530Ijjyc485ylLN77Gl6ct6Nzg/Rllx6bp4Eae+fK/mLgEqI5zndTsAdyQopEcHRm8uNfEemun6QjdVrebZCxvwEZVutn0PHXmMGngFBjUodGd6+X8tiS1HgfbWj6WgvWI+41tkcNaI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=YRMkk1i1; 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="YRMkk1i1" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6AFBDC4CEEF; Sat, 12 Jul 2025 15:41:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1752334901; bh=YYFSm1m5FX2KuQrL4dOdK866ohlLLkmCOxC11uddIe4=; h=Date:From:To:Cc:Subject:From; b=YRMkk1i1L9v5qE6reJtbuypMbpIY/Ssiy3zdNzFwTqjsUkF3D/1aL4421hCjgVTC7 e0RdTKGZrS60Gs35Q6VPvtXWTQXNGuAE3nurd2y4N8JFKrwHEccjMj5t2oPbCb/oxg 5gGE5ZT4RXH2YNB54vL49KjoU9Ff2DCQcmRkEHIsVKKq4q+nAhMP0cb8boUz3f+RZl 9lB0NwBE1xhcYe/3E/8DZWjwQi0i6CZyFajUMSyY2U4yrJxeS05zlbVERFB/9e4QJH zKhMBxxhtz0s616sS7Rja9CoHue+lHf1smC0yVtZ9NIXiL//INSKy/IWYk1nVmyJ7q Lv2mEc+ejjY1A== Date: Sat, 12 Jul 2025 23:41:33 +0800 From: Gao Xiang To: Linus Torvalds Cc: linux-erofs@lists.ozlabs.org, LKML , Chao Yu , Hongbo Li Subject: [GIT PULL] erofs fixes for 6.16-rc6 Message-ID: Mail-Followup-To: Linus Torvalds , linux-erofs@lists.ozlabs.org, LKML , Chao Yu , Hongbo Li 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 6.16-rc6? One patch fixes a cache aliasing issue by adding missing flush_dcache_folio(), which causes execution failures on some arm32 setups. Another patch fixes some large compressed fragments, which could be generated by -Eall-fragments option (but should be rare) and was rejected by mistake due to an on-disk hardening commit. The remaining ones are small fixes as shown below. Thanks, Gao Xiang The following changes since commit 86731a2a651e58953fc949573895f2fa6d456841: Linux 6.16-rc3 (2025-06-22 13:30:08 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git tags/erofs-for-6.16-rc6-fixes for you to fetch changes up to b44686c8391b427fb1c85a31c35077e6947c6d90: erofs: fix large fragment handling (2025-07-12 04:02:44 +0800) ---------------------------------------------------------------- Changes since last update: - Address cache aliasing for mappable page cache folios; - Allow readdir() to be interrupted; - Fix large fragment handling which was errored out by mistake; - Add missing tracepoints; - Use memcpy_to_folio() to replace copy_to_iter() for inline data. ---------------------------------------------------------------- Chao Yu (3): erofs: fix to add missing tracepoint in erofs_readahead() erofs: fix to add missing tracepoint in erofs_read_folio() erofs: allow readdir() to be interrupted Gao Xiang (3): erofs: use memcpy_to_folio() to replace copy_to_iter() erofs: address D-cache aliasing erofs: fix large fragment handling fs/erofs/data.c | 21 ++++++++++++++++----- fs/erofs/decompressor.c | 12 ++++-------- fs/erofs/dir.c | 6 ++++++ fs/erofs/fileio.c | 14 +++----------- fs/erofs/internal.h | 6 ++++-- fs/erofs/zdata.c | 8 ++++---- fs/erofs/zmap.c | 9 ++++----- 7 files changed, 41 insertions(+), 35 deletions(-)