diff options
author | Jan Kara <jack@suse.cz> | 2017-04-06 16:44:23 +0300 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2017-04-19 15:21:23 +0300 |
commit | 38eae95ddc1964b42fc6d313a1bd17c43e3d08f1 (patch) | |
tree | 9cb1152414ed3d745680a54abf62627c15b17930 /fs/ext4/ioctl.c | |
parent | aad6cde9adf4879840cc86bc89ed9cdcee615aae (diff) | |
download | linux-38eae95ddc1964b42fc6d313a1bd17c43e3d08f1.tar.xz |
ext4: Remove ext4_get_inode_flags()
Now that all places setting inode->i_flags that should be reflected in
on-disk flags are gone, we can remove ext4_get_inode_flags() call.
Reviewed-by: Andreas Dilger <adilger@dilger.ca>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/ext4/ioctl.c')
-rw-r--r-- | fs/ext4/ioctl.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/ext4/ioctl.c b/fs/ext4/ioctl.c index a4273ddb9922..184e74eb3004 100644 --- a/fs/ext4/ioctl.c +++ b/fs/ext4/ioctl.c @@ -500,7 +500,6 @@ long ext4_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) switch (cmd) { case EXT4_IOC_GETFLAGS: - ext4_get_inode_flags(ei); flags = ei->i_flags & EXT4_FL_USER_VISIBLE; return put_user(flags, (int __user *) arg); case EXT4_IOC_SETFLAGS: { @@ -888,7 +887,6 @@ resizefs_out: struct fsxattr fa; memset(&fa, 0, sizeof(struct fsxattr)); - ext4_get_inode_flags(ei); fa.fsx_xflags = ext4_iflags_to_xflags(ei->i_flags & EXT4_FL_USER_VISIBLE); if (ext4_has_feature_project(inode->i_sb)) { |