diff options
author | Jeff Layton <jlayton@redhat.com> | 2017-12-11 06:35:05 -0500 |
---|---|---|
committer | Jeff Layton <jlayton@redhat.com> | 2018-01-01 10:09:33 -0500 |
commit | 7a11ac289c437cb06633620940b191a63dec1f4a (patch) | |
tree | f661d9dd2adf8ec5dcf5c67d1a9cbd9f99928101 /fs/ntfs/mft.c | |
parent | 8ec426c7019ed9600d9dc0cf758445adcdbfc14e (diff) |
ntfs: remove i_version handling
NTFS keeps track of the i_version counter here, seemingly for no reason.
It does not set the SB_I_VERSION flag so it'll never be incremented on
write, and it doesn't increment it internally for metadata operations.
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Diffstat (limited to 'fs/ntfs/mft.c')
-rw-r--r-- | fs/ntfs/mft.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/fs/ntfs/mft.c b/fs/ntfs/mft.c index ee8392aee9f6..2831f495a674 100644 --- a/fs/ntfs/mft.c +++ b/fs/ntfs/mft.c @@ -2641,12 +2641,6 @@ mft_rec_already_initialized: goto undo_mftbmp_alloc; } vi->i_ino = bit; - /* - * This is for checking whether an inode has changed w.r.t. a - * file so that the file can be updated if necessary (compare - * with f_version). - */ - vi->i_version = 1; /* The owner and group come from the ntfs volume. */ vi->i_uid = vol->uid; |