aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/inode.c
diff options
context:
space:
mode:
authorThomas Meyer <thomas@m3y3r.de>2013-06-01 11:52:43 +0200
committerSteven Whitehouse <swhiteho@redhat.com>2013-06-05 09:51:08 +0100
commit2b6f8860e1df8ab318063765892e1a02cc5996c9 (patch)
tree39c219bdc8880a2b7c10526f90d6c5997e32dc74 /fs/gfs2/inode.c
parentGFS2: Eliminate gfs2_rg_lops (diff)
downloadlinux-dev-2b6f8860e1df8ab318063765892e1a02cc5996c9.tar.xz
linux-dev-2b6f8860e1df8ab318063765892e1a02cc5996c9.zip
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/inode.c')
-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 62b484e4a9e4..5fbb8dfb4653 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;