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

Commit 01e64ee4 authored by Benjamin Marzinski's avatar Benjamin Marzinski Committed by Bob Peterson
Browse files

GFS2: make sure S_NOSEC flag isn't overwritten



At the end of gfs2_set_inode_flags inode->i_flags is set to flags, so
we should be modifying flags instead of inode->i_flags, so it isn't
overwritten.

Signed-off-by: Benjamin Marzinski <bmarzins redhat com>
Signed-off-by: default avatarBob Peterson <rpeterso@redhat.com>
parent a63b7bbc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -180,7 +180,7 @@ void gfs2_set_inode_flags(struct inode *inode)

	flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC|S_NOSEC);
	if ((ip->i_eattr == 0) && !is_sxid(inode->i_mode))
		inode->i_flags |= S_NOSEC;
		flags |= S_NOSEC;
	if (ip->i_diskflags & GFS2_DIF_IMMUTABLE)
		flags |= S_IMMUTABLE;
	if (ip->i_diskflags & GFS2_DIF_APPENDONLY)