GFS2: Cocci spatch "ptr_ret.spatch"
authorThomas Meyer <thomas@m3y3r.de>
Sat, 1 Jun 2013 09:52:43 +0000 (11:52 +0200)
committerSteven Whitehouse <swhiteho@redhat.com>
Wed, 5 Jun 2013 08:51:08 +0000 (09:51 +0100)
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>
fs/gfs2/inode.c

index 62b484e4a9e4e46ac905e9a24e8afdce330225d2..5fbb8dfb46536c604951cf1d3112886f8da809a8 100644 (file)
@@ -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;
This page took 0.024916 seconds and 5 git commands to generate.