aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Whitehouse <swhiteho@redhat.com>2013-07-17 08:41:52 +0100
committerRusty Russell <rusty@rustcorp.com.au>2013-07-22 11:11:46 +0930
commitad151d544475df40ee0d18be7d5c945e29c1b545 (patch)
treed14fd057dea9b606d209bf0429d3333488897d1c
parentcd633972e120003bd4cecc7dae560d2e32da5360 (diff)
downloadlinux-PTR_RET.tar.gz
GFS2: Replace PTR_RET with PTR_ERR_OR_ZEROPTR_RET-for-linusPTR_RET
PTR_RET should be PTR_ERR Reported-by: Sachin Kamat <sachin.kamat@linaro.org> Cc: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: Steven Whitehouse <swhiteho@redhat.com> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
-rw-r--r--fs/gfs2/inode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/inode.c b/fs/gfs2/inode.c
index bbb2715171cd0c..a01b8fd3a1c16c 100644
--- a/fs/gfs2/inode.c
+++ b/fs/gfs2/inode.c
@@ -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;