diff options
author | Thomas Meyer <thomas@m3y3r.de> | 2013-06-01 11:52:43 +0200 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2013-06-05 09:51:08 +0100 |
commit | 2b6f8860e1df8ab318063765892e1a02cc5996c9 (patch) | |
tree | 39c219bdc8880a2b7c10526f90d6c5997e32dc74 /fs/gfs2/inode.c | |
parent | cd51e61eac87c3e4819b54e85d536d2e643fb0ec (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/gfs2/inode.c')
-rw-r--r-- | fs/gfs2/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/inode.c b/fs/gfs2/inode.c index 62b484e4a9e..5fbb8dfb465 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; |