diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2008-07-10 16:09:29 +0100 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2008-07-10 16:09:29 +0100 |
commit | c9f6a6bbc284ba87337876086f7e2e6e0b0d50dd (patch) | |
tree | 68930f47e91f82ca41b3a9f35fd118d2ff11d891 /fs/gfs2/inode.c | |
parent | 9cabcdbd4638cf884839ee4cd15780800c223b90 (diff) | |
download | talos-op-linux-c9f6a6bbc284ba87337876086f7e2e6e0b0d50dd.tar.gz talos-op-linux-c9f6a6bbc284ba87337876086f7e2e6e0b0d50dd.zip |
[GFS2] Remove support for unused and pointless flag
The ability to mark files for direct i/o access when opened
normally is both unused and pointless, so this patch removes
support for that feature.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/inode.c')
-rw-r--r-- | fs/gfs2/inode.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/fs/gfs2/inode.c b/fs/gfs2/inode.c index caf409083354..6da0ab355b8a 100644 --- a/fs/gfs2/inode.c +++ b/fs/gfs2/inode.c @@ -789,13 +789,8 @@ static void init_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl, if ((dip->i_di.di_flags & GFS2_DIF_INHERIT_JDATA) || gfs2_tune_get(sdp, gt_new_files_jdata)) di->di_flags |= cpu_to_be32(GFS2_DIF_JDATA); - if ((dip->i_di.di_flags & GFS2_DIF_INHERIT_DIRECTIO) || - gfs2_tune_get(sdp, gt_new_files_directio)) - di->di_flags |= cpu_to_be32(GFS2_DIF_DIRECTIO); } else if (S_ISDIR(mode)) { di->di_flags |= cpu_to_be32(dip->i_di.di_flags & - GFS2_DIF_INHERIT_DIRECTIO); - di->di_flags |= cpu_to_be32(dip->i_di.di_flags & GFS2_DIF_INHERIT_JDATA); } |