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 76FCC288AD for ; Tue, 18 Aug 2026 03:36:56 +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=1787024217; cv=none; b=fA409d7ENgR3HfKiibQFEOkHlYk8XhW9MN0BGuShq10nsxKTbq6P0XDSnfRJ/MaBQUypXg5ziSE4us53JJImxPgp99oO1NyKU+Kpa2Vizc24sZPZnYOO78Z0wz6jAvfIaPq6HLChnv0ug6KkZLTL+/JpSxTdNodvtr9W9rWasLU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1787024217; c=relaxed/simple; bh=bi1UGDJqOZO+Tbjio4AgqMNZmW8jHYxvZPUoxz5BN0g=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=sKqv3D0QWGpSBR3PZYJjyW20ahdfDfNq9srnY+4QKG+eeq8P7KIFVel4xovfqzmm/Kij9nhgcU/upynfiny871frKUzFAjBFOXBhnAoK4L1DNmis4TQZwkkqpQH+JbA2mHxZvAecdD8S+uPqKpHlVZdXLFTLPKe+gAt42PN9WaM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=In1e8j0F; 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="In1e8j0F" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9771B1F000E9; Tue, 18 Aug 2026 03:36:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1787024216; bh=yi+pbcoZaoSXy68gOZda6jIs+/cJrH+Cn/Lg8qlrRxM=; h=Date:From:To:Cc:Subject; b=In1e8j0FbTKiLV0rMQakDhR/P6u0eEsbCqh97u+XzulKszZ9i6wxpaRnSdFD33gY8 It6+q6oZEPbaWRqjvnT3rZL518NTPH+VsBcu9WI+dOce0BUOMV/Xqs0/nzPDAzdzzi UO8WLF79YpcYFUoWgZIkvsvWD4Q689zYnXVBcMGGmUaM/Vwvi/Ha3Z4MB7VxD8t6zd XOQzGTDyfInwcoy8+MrwB9eYB5j2/X7uEmM8SWoBghwT6rED2KJsb7OAnkspjSUS88 Yl4jZd5gTBggAh6VujNGFnD7BFOngJTQ9heh3CtOH91G8izDirr5muH8kPsFjWQfpB veSjVv3wRJ2HQ== Date: Tue, 18 Aug 2026 11:36:50 +0800 From: Gao Xiang To: Linus Torvalds Cc: linux-erofs@lists.ozlabs.org, LKML , Giuseppe Scrivano , Ojaswin Mujoo , Chao Yu Subject: [GIT PULL] erofs updates for 7.3-rc1 Message-ID: Mail-Followup-To: Linus Torvalds , linux-erofs@lists.ozlabs.org, LKML , Giuseppe Scrivano , Ojaswin Mujoo , Chao Yu 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 consider these commits for 7.3-rc1? The most notable enhancement is to allow passing source fds via fsconfig() for composefs. The others are all various fixes. All commits have been in -next and no potential merge conflict is observed. Thanks, Gao Xiang The following changes since commit 075b74841bd0065a3bda3440873c747938e69b68: Linux 7.2-rc6 (2026-08-02 16:24:24 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git tags/erofs-for-7.3-rc1 for you to fetch changes up to 988c3c186c730590a71df8adc1424c5578ef8bae: erofs: fix unused pcluster_pools for higher page sizes (2026-08-17 17:05:58 +0800) ---------------------------------------------------------------- Changes since last update: - Allow source fds via fsconfig(), in addition to source paths - Use dedicated metadata inodes for file-backed mounts - Disallow invalid interlaced ztailpacking pclusters - Validate on-disk compression algorithm IDs against supported ones - Fix unused pcluster pools on higher page-size platforms ---------------------------------------------------------------- Gao Xiang (3): erofs: use dedicated meta inodes for file-backed mounts erofs: fix interlaced ztailpacking pclusters erofs: guard on-disk algorithm IDs against Z_EROFS_COMPRESSION_MAX Giuseppe Scrivano (2): erofs: fix typo in error messages erofs: accept source file descriptor via fsconfig Ojaswin Mujoo (1): erofs: fix unused pcluster_pools for higher page sizes Documentation/filesystems/erofs.rst | 17 ++++++ fs/erofs/data.c | 28 +++------ fs/erofs/decompressor.c | 1 + fs/erofs/fileio.c | 21 +++++++ fs/erofs/internal.h | 14 +++-- fs/erofs/super.c | 112 ++++++++++++++++++++++++++++-------- fs/erofs/zdata.c | 25 ++++---- fs/erofs/zmap.c | 38 +++++++----- 8 files changed, 182 insertions(+), 74 deletions(-)