Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2523d47a authored by Steven Whitehouse's avatar Steven Whitehouse
Browse files

GFS2: Fix typo in gfs2_create_inode()



PTR_RET should be PTR_ERR

Reported-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Cc: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: default avatarSteven Whitehouse <swhiteho@redhat.com>
parent 47188d39
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -594,7 +594,7 @@ static int gfs2_create_inode(struct inode *dir, struct dentry *dentry,
		}
		gfs2_glock_dq_uninit(ghs);
		if (IS_ERR(d))
			return PTR_RET(d);
			return PTR_ERR(d);
		return error;
	} else if (error != -ENOENT) {
		goto fail_gunlock;