aboutsummaryrefslogtreecommitdiffstats
path: root/fs/fat
diff options
context:
space:
mode:
authorJeff Layton <jlayton@kernel.org>2023-08-10 09:12:04 -0400
committerChristian Brauner <brauner@kernel.org>2023-08-11 09:04:56 +0200
commit93e6c30435443bad38414b745845fb1d3fa6963e (patch)
tree8cdc8e05abbb91ecac6c80509b66c6610b206883 /fs/fat
parent97ebfdb7ad089d5213f6c75fdc48173fe0f14439 (diff)
downloadlinux-93e6c30435443bad38414b745845fb1d3fa6963e.tar.gz
fat: remove i_version handling from fat_update_time
commit 6bb885ecd746 (fat: add functions to update and truncate timestamps appropriately") added an update_time routine for fat. That patch added a section for handling the S_VERSION bit, even though FAT doesn't enable SB_I_VERSION and the S_VERSION bit will never be set when calling it. Remove the section for handling S_VERSION since it's effectively dead code, and will be problematic vs. future changes. Cc: Frank Sorenson <sorenson@redhat.com> Signed-off-by: Jeff Layton <jlayton@kernel.org> Acked-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> Reviewed-by: Jan Kara <jack@suse.cz> Reviewed-by: Frank Sorenson <sorenson@redhat.com> Message-Id: <20230810-ctime-fat-v1-1-327598fd1de8@kernel.org> Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'fs/fat')
-rw-r--r--fs/fat/misc.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/fat/misc.c b/fs/fat/misc.c
index 67006ea08db68..620436777f989 100644
--- a/fs/fat/misc.c
+++ b/fs/fat/misc.c
@@ -354,9 +354,6 @@ int fat_update_time(struct inode *inode, struct timespec64 *now, int flags)
dirty_flags |= I_DIRTY_SYNC;
}
- if ((flags & S_VERSION) && inode_maybe_inc_iversion(inode, false))
- dirty_flags |= I_DIRTY_SYNC;
-
__mark_inode_dirty(inode, dirty_flags);
return 0;
}