Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 57b09bb5 authored by Jan Kara's avatar Jan Kara Committed by Joel Becker
Browse files

ocfs2: Set MS_POSIXACL on remount



We have to set MS_POSIXACL on remount as well. Otherwise VFS
would not know we started supporting ACLs after remount and
thus ACLs would not work.

Signed-off-by: default avatarJan Kara <jack@suse.cz>
Signed-off-by: default avatarJoel Becker <joel.becker@oracle.com>
parent 5297aad8
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -702,6 +702,10 @@ static int ocfs2_remount(struct super_block *sb, int *flags, char *data)

		if (!ocfs2_is_hard_readonly(osb))
			ocfs2_set_journal_params(osb);

		sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
			((osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) ?
							MS_POSIXACL : 0);
	}
out:
	unlock_kernel();