diff options
author | Thomas Meyer <thomas@m3y3r.de> | 2013-06-01 05:52:43 -0400 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2013-06-05 04:51:08 -0400 |
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 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, | |||
588 | inode = gfs2_lookupi(dir, &dentry->d_name, 0); | 588 | inode = gfs2_lookupi(dir, &dentry->d_name, 0); |
589 | gfs2_glock_dq_uninit(ghs); | 589 | gfs2_glock_dq_uninit(ghs); |
590 | d_instantiate(dentry, inode); | 590 | d_instantiate(dentry, inode); |
591 | return IS_ERR(inode) ? PTR_ERR(inode) : 0; | 591 | return PTR_RET(inode); |
592 | } | 592 | } |
593 | if (error) | 593 | if (error) |
594 | goto fail_gunlock; | 594 | goto fail_gunlock; |