diff options
author | Abhi Das <adas@redhat.com> | 2015-11-10 15:07:26 -0600 |
---|---|---|
committer | Bob Peterson <rpeterso@redhat.com> | 2015-11-10 15:11:06 -0600 |
commit | acc546fd6108cb17f87f985e4235b68756d7b01f (patch) | |
tree | d32aca1fb2da92bc056e736ef03eba26d8843d9d /fs/gfs2/inode.c | |
parent | 42d4ebb42a17754d2e8344dc1aa486119671d0eb (diff) | |
download | linux-stable-acc546fd6108cb17f87f985e4235b68756d7b01f.tar.gz linux-stable-acc546fd6108cb17f87f985e4235b68756d7b01f.tar.bz2 linux-stable-acc546fd6108cb17f87f985e4235b68756d7b01f.zip |
gfs2: Automatically set GFS2_DIF_SYSTEM flag on system files
When new files and directories are created inside a parent directory
we automatically inherit the GFS2_DIF_SYSTEM flag (if set) and assign
it to the new file/dirs.
All new system files/dirs created in the metafs by, say gfs2_jadd,
will have this flag set because they will have parent directories in
the metafs whose GFS2_DIF_SYSTEM flag has already been set (most likely
by a previous mkfs.gfs2)
Signed-off-by: Abhi Das <adas@redhat.com>
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Diffstat (limited to 'fs/gfs2/inode.c')
-rw-r--r-- | fs/gfs2/inode.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fs/gfs2/inode.c b/fs/gfs2/inode.c index 063fdfcf8275..2c05bc3d1947 100644 --- a/fs/gfs2/inode.c +++ b/fs/gfs2/inode.c @@ -685,6 +685,11 @@ static int gfs2_create_inode(struct inode *dir, struct dentry *dentry, ip->i_entries = 2; break; } + + /* Force SYSTEM flag on all files and subdirs of a SYSTEM directory */ + if (dip->i_diskflags & GFS2_DIF_SYSTEM) + ip->i_diskflags |= GFS2_DIF_SYSTEM; + gfs2_set_inode_flags(inode); if ((GFS2_I(d_inode(sdp->sd_root_dir)) == dip) || |