gfs2: Remove duplicate i_nlink check from gfs2_link()
authorAndrew Price <anprice@redhat.com>
Tue, 14 Mar 2023 13:18:27 +0000 (13:18 +0000)
committerAndreas Gruenbacher <agruenba@redhat.com>
Mon, 27 Mar 2023 12:39:47 +0000 (14:39 +0200)
The duplication is:

    struct gfs2_inode *ip = GFS2_I(inode);
    [...]
    error = -ENOENT;
    if (inode->i_nlink == 0)
        goto out_gunlock;
    [...]
    error = -EINVAL;
    if (!ip->i_inode.i_nlink)
        goto out_gunlock;

The second check is removed. ENOENT is the correct error code for
attempts to link a deleted inode (ref: link(2)).

If we support O_TMPFILE in future the check will need to be updated with
an exception for inodes flagged I_LINKABLE so sorting out this
duplication now will make it a slightly cleaner change.

Signed-off-by: Andrew Price <anprice@redhat.com>
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
fs/gfs2/inode.c

index 1291b5ee35842f69d13a3a19428e99339034d6c9..79eef9a0ebfc592e5b019f45f1903874ca1b571a 100644 (file)
@@ -992,9 +992,6 @@ static int gfs2_link(struct dentry *old_dentry, struct inode *dir,
        error = -EPERM;
        if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
                goto out_gunlock;
-       error = -EINVAL;
-       if (!ip->i_inode.i_nlink)
-               goto out_gunlock;
        error = -EMLINK;
        if (ip->i_inode.i_nlink == (u32)-1)
                goto out_gunlock;