summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorThomas Meyer <thomas@m3y3r.de>2013-06-01 11:52:43 +0200
committerSteven Whitehouse <swhiteho@redhat.com>2013-06-03 09:29:16 +0100
commiteb8e573e1742b719868af48337959b69523ed946 (patch)
tree6b7f5475d21c4eb9be8925495bd0c8d1ff3914c6 /fs
parent833d06c189f8c52cf1e97057b40f4baa80c1a366 (diff)
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')
-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 8833a4f264e3..3269d6ffd32f 100644
--- a/fs/gfs2/inode.c
+++ b/fs/gfs2/inode.c
@@ -587,7 +587,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;