From: Jeff Layton Date: Mon, 30 Oct 2017 15:16:07 +0000 (-0400) Subject: jfs: remove increment of i_version counter X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=04d73f86e35d41410ec55242b90330ec23dfe2b0;p=linux.git jfs: remove increment of i_version counter JFS does not set SB_I_VERSION and doesn't use the i_version counter internally. Just remove this increment. Signed-off-by: Jeff Layton Signed-off-by: Dave Kleikamp --- diff --git a/fs/jfs/super.c b/fs/jfs/super.c index 2f14677169c37..2f7b3af5b8b7a 100644 --- a/fs/jfs/super.c +++ b/fs/jfs/super.c @@ -853,7 +853,6 @@ out: } if (inode->i_size < off+len-towrite) i_size_write(inode, off+len-towrite); - inode->i_version++; inode->i_mtime = inode->i_ctime = current_time(inode); mark_inode_dirty(inode); inode_unlock(inode);