public inbox for stable@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ovl: fix wrong detection of 32bit inode numbers
@ 2026-03-24 15:22 Amir Goldstein
  2026-03-24 15:57 ` Miklos Szeredi
  0 siblings, 1 reply; 2+ messages in thread
From: Amir Goldstein @ 2026-03-24 15:22 UTC (permalink / raw)
  To: Miklos Szeredi; +Cc: linux-unionfs, stable

The implicit FILEID_INO32_GEN encoder was changed to be explicit,
so we need to fix the detection.

When mounting overlayfs with upperdir and lowerdir on different ext4
filesystems, the expected kmsg log is:

  overlayfs: "xino" feature enabled using 32 upper inode bits.

But instead, since the regressing commit, the kmsg log was:

  overlayfs: "xino" feature enabled using 2 upper inode bits.

Fixes: e21fc2038c1b9 ("exportfs: make ->encode_fh() a mandatory method for NFS export")
Cc: stable@vger.kernel.org # v6.7+
Signed-off-by: Amir Goldstein <amir73il@gmail.com>
---

Miklos,

I have queued up this fix.
The regression has no serious impact on most users, because xino
works pretty well either way.

A nested overlayfs, where the lower overlayfs is nonsamefs ext4
would have less xino overflows, but this is a very corner case.

Thanks,
Amir.

 fs/overlayfs/util.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/fs/overlayfs/util.c b/fs/overlayfs/util.c
index 3f1b763a8bb4c..2ea769f311c34 100644
--- a/fs/overlayfs/util.c
+++ b/fs/overlayfs/util.c
@@ -85,7 +85,10 @@ int ovl_can_decode_fh(struct super_block *sb)
 	if (!exportfs_can_decode_fh(sb->s_export_op))
 		return 0;
 
-	return sb->s_export_op->encode_fh ? -1 : FILEID_INO32_GEN;
+	if (sb->s_export_op->encode_fh == generic_encode_ino32_fh)
+		return FILEID_INO32_GEN;
+
+	return -1;
 }
 
 struct dentry *ovl_indexdir(struct super_block *sb)
-- 
2.53.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] ovl: fix wrong detection of 32bit inode numbers
  2026-03-24 15:22 [PATCH] ovl: fix wrong detection of 32bit inode numbers Amir Goldstein
@ 2026-03-24 15:57 ` Miklos Szeredi
  0 siblings, 0 replies; 2+ messages in thread
From: Miklos Szeredi @ 2026-03-24 15:57 UTC (permalink / raw)
  To: Amir Goldstein; +Cc: linux-unionfs, stable

On Tue, 24 Mar 2026 at 16:22, Amir Goldstein <amir73il@gmail.com> wrote:
>
> The implicit FILEID_INO32_GEN encoder was changed to be explicit,
> so we need to fix the detection.
>
> When mounting overlayfs with upperdir and lowerdir on different ext4
> filesystems, the expected kmsg log is:
>
>   overlayfs: "xino" feature enabled using 32 upper inode bits.
>
> But instead, since the regressing commit, the kmsg log was:
>
>   overlayfs: "xino" feature enabled using 2 upper inode bits.
>
> Fixes: e21fc2038c1b9 ("exportfs: make ->encode_fh() a mandatory method for NFS export")
> Cc: stable@vger.kernel.org # v6.7+
> Signed-off-by: Amir Goldstein <amir73il@gmail.com>
> ---
>
> Miklos,
>
> I have queued up this fix.
> The regression has no serious impact on most users, because xino
> works pretty well either way.
>
> A nested overlayfs, where the lower overlayfs is nonsamefs ext4
> would have less xino overflows, but this is a very corner case.

LGTM, thanks.

Miklos

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-03-24 15:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-24 15:22 [PATCH] ovl: fix wrong detection of 32bit inode numbers Amir Goldstein
2026-03-24 15:57 ` Miklos Szeredi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox