Skip to content

Commit 6e8948a

Browse files
committed
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
2 parents 043930b + 42da66a commit 6e8948a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fs/squashfs/super.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,7 @@ static struct file_system_type squashfs_fs_type = {
662662
.init_fs_context = squashfs_init_fs_context,
663663
.parameters = squashfs_fs_parameters,
664664
.kill_sb = kill_block_super,
665-
.fs_flags = FS_REQUIRES_DEV
665+
.fs_flags = FS_REQUIRES_DEV | FS_ALLOW_IDMAP,
666666
};
667667
MODULE_ALIAS_FS("squashfs");
668668

0 commit comments

Comments
 (0)