summaryrefslogtreecommitdiff
path: root/fs/gfs2
diff options
context:
space:
mode:
authorThomas Meyer <thomas@m3y3r.de>2013-06-01 09:52:43 (GMT)
committerSteven Whitehouse <swhiteho@redhat.com>2013-06-05 08:51:08 (GMT)
commit2b6f8860e1df8ab318063765892e1a02cc5996c9 (patch)
tree39c219bdc8880a2b7c10526f90d6c5997e32dc74 /fs/gfs2
parentcd51e61eac87c3e4819b54e85d536d2e643fb0ec (diff)
downloadlinux-fsl-qoriq-2b6f8860e1df8ab318063765892e1a02cc5996c9.tar.xz
GFS2: Cocci spatch "ptr_ret.spatch"
Use PTR_RET in place of open coding this function. Signed-off-by: Thomas Meyer <thomas@m3y3r.de> Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2')
-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 62b484e..5fbb8df 100644
--- a/fs/gfs2/inode.c
+++ b/fs/gfs2/inode.c
@@ -588,7 +588,7 @@ static int gfs2_create_inode(struct inode *dir, struct dentry *dentry,
inode = gfs2_lookupi(dir, &dentry->d_name, 0);
gfs2_glock_dq_uninit(ghs);
d_instantiate(dentry, inode);
- return IS_ERR(inode) ? PTR_ERR(inode) : 0;
+ return PTR_RET(inode);
}
if (error)
goto fail_gunlock;