aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2022-12-12 20:24:51 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2022-12-12 20:24:51 -0800
commit6e8948a0630f9ee46cf03dbf65949c1f4b6f6dd2 (patch)
tree17869a2a7ce6c2ba0e0274acf9acce23dd67a20c
parent043930b1c8895d626d340decfe9e418f7233edb8 (diff)
parent42da66ac7bcb19181385e851094ceedfe7c81984 (diff)
downloadlinux-6e8948a0630f9ee46cf03dbf65949c1f4b6f6dd2.tar.gz
Merge tag 'fs.idmapped.squashfs.v6.2' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/idmapping
Pull squashfs update from Seth Forshee: "This is a simple patch to enable idmapped mounts for squashfs. All functionality squashfs needs to support idmapped mounts is already implemented in generic VFS code, so all that is needed is to set FS_ALLOW_IDMAP in fs_flags" * tag 'fs.idmapped.squashfs.v6.2' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/idmapping: squashfs: enable idmapped mounts
-rw-r--r--fs/squashfs/super.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/squashfs/super.c b/fs/squashfs/super.c
index 7d5265a39d2089..e090fae48e6845 100644
--- a/fs/squashfs/super.c
+++ b/fs/squashfs/super.c
@@ -662,7 +662,7 @@ static struct file_system_type squashfs_fs_type = {
.init_fs_context = squashfs_init_fs_context,
.parameters = squashfs_fs_parameters,
.kill_sb = kill_block_super,
- .fs_flags = FS_REQUIRES_DEV
+ .fs_flags = FS_REQUIRES_DEV | FS_ALLOW_IDMAP,
};
MODULE_ALIAS_FS("squashfs");