diff options
author | Jeff Layton <jlayton@redhat.com> | 2017-12-11 14:35:17 +0300 |
---|---|---|
committer | Jeff Layton <jlayton@redhat.com> | 2018-01-29 14:42:21 +0300 |
commit | cc56c33e783fcd8ea0a84941cab4f919609b4835 (patch) | |
tree | 4eb8c2a0e0df626e117b64cd30f1e811cfe9424e /fs/ocfs2/namei.c | |
parent | 1f15a550f5f3e328b7693f664ae21f5a71a7a636 (diff) | |
download | linux-cc56c33e783fcd8ea0a84941cab4f919609b4835.tar.xz |
ocfs2: convert to new i_version API
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Reviewed-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/ocfs2/namei.c')
-rw-r--r-- | fs/ocfs2/namei.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/ocfs2/namei.c b/fs/ocfs2/namei.c index 3b0a10d9b36f..c801eddc4bf3 100644 --- a/fs/ocfs2/namei.c +++ b/fs/ocfs2/namei.c @@ -41,6 +41,7 @@ #include <linux/slab.h> #include <linux/highmem.h> #include <linux/quotaops.h> +#include <linux/iversion.h> #include <cluster/masklog.h> @@ -1520,7 +1521,7 @@ static int ocfs2_rename(struct inode *old_dir, mlog_errno(status); goto bail; } - new_dir->i_version++; + inode_inc_iversion(new_dir); if (S_ISDIR(new_inode->i_mode)) ocfs2_set_links_count(newfe, 0); |