aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext2
diff options
context:
space:
mode:
authorGoffredo Baroncelli <kreijack@inwind.it>2018-02-01 08:15:25 -0500
committerJeff Layton <jlayton@redhat.com>2018-02-01 08:15:25 -0500
commitc472c07bfed9c87d7e0b2c052d7e77fedd7109a9 (patch)
tree0d519381c30d42f2131931e32126aa4ef4fe4ab4 /fs/ext2
parentMerge tag 'docs-4.16' of git://git.lwn.net/linux (diff)
downloadlinux-dev-c472c07bfed9c87d7e0b2c052d7e77fedd7109a9.tar.xz
linux-dev-c472c07bfed9c87d7e0b2c052d7e77fedd7109a9.zip
iversion: Rename make inode_cmp_iversion{+raw} to inode_eq_iversion{+raw}
The function inode_cmp_iversion{+raw} is counter-intuitive, because it returns true when the counters are different and false when these are equal. Rename it to inode_eq_iversion{+raw}, which will returns true when the counters are equal and false otherwise. Signed-off-by: Goffredo Baroncelli <kreijack@inwind.it> Signed-off-by: Jeff Layton <jlayton@redhat.com>
Diffstat (limited to 'fs/ext2')
-rw-r--r--fs/ext2/dir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext2/dir.c b/fs/ext2/dir.c
index 4111085a129f..3b8114def693 100644
--- a/fs/ext2/dir.c
+++ b/fs/ext2/dir.c
@@ -294,7 +294,7 @@ ext2_readdir(struct file *file, struct dir_context *ctx)
unsigned long npages = dir_pages(inode);
unsigned chunk_mask = ~(ext2_chunk_size(inode)-1);
unsigned char *types = NULL;
- bool need_revalidate = inode_cmp_iversion(inode, file->f_version);
+ bool need_revalidate = !inode_eq_iversion(inode, file->f_version);
if (pos > inode->i_size - EXT2_DIR_REC_LEN(1))
return 0;