VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   32 Branches   54 Tags
author: Goffredo Baroncelli <kreijack@inwind.it> 2018-02-01 08:15:25 -0500 committer: Jeff Layton <jlayton@redhat.com> 2018-02-01 08:15:25 -0500 commit: c472c07bfed9c87d7e0b2c052d7e77fedd7109a9 parent: 255442c93843f52b6891b21d0b485bf2c97f93c3
Commit Summary:
iversion: Rename make inode_cmp_iversion{+raw} to inode_eq_iversion{+raw}
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/fs/affs/dir.c b/fs/affs/dir.c
index d180b46453cf..b2bf7016e1b3 100644
--- a/fs/affs/dir.c
+++ b/fs/affs/dir.c
@@ -81,7 +81,7 @@ affs_readdir(struct file *file, struct dir_context *ctx)
 	 * we can jump directly to where we left off.
 	 */
 	ino = (u32)(long)file->private_data;
-	if (ino && inode_cmp_iversion(inode, file->f_version) == 0) {
+	if (ino && inode_eq_iversion(inode, file->f_version)) {
 		pr_debug("readdir() left off=%d\n", ino);
 		goto inside;
 	}