]> git.ipfire.org Git - people/ms/linux.git/commitdiff
follow_dotdot{,_rcu}(): don't bother with inode
authorAl Viro <viro@zeniv.linux.org.uk>
Mon, 4 Jul 2022 02:18:11 +0000 (22:18 -0400)
committerAl Viro <viro@zeniv.linux.org.uk>
Wed, 6 Jul 2022 17:15:59 +0000 (13:15 -0400)
step_into() will fetch it, TYVM.

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/namei.c

index 60e17152374a5248c46ce17b0c1c857f529bd488..d631d797ea0945875ffb7c7e9be89a34439753d4 100644 (file)
@@ -1884,8 +1884,7 @@ static const char *step_into(struct nameidata *nd, int flags,
        return pick_link(nd, &path, inode, flags);
 }
 
-static struct dentry *follow_dotdot_rcu(struct nameidata *nd,
-                                       struct inode **inodep)
+static struct dentry *follow_dotdot_rcu(struct nameidata *nd)
 {
        struct dentry *parent, *old;
 
@@ -1909,7 +1908,6 @@ static struct dentry *follow_dotdot_rcu(struct nameidata *nd,
        }
        old = nd->path.dentry;
        parent = old->d_parent;
-       *inodep = parent->d_inode;
        nd->next_seq = read_seqcount_begin(&parent->d_seq);
        // makes sure that non-RCU pathwalk could reach this state
        if (read_seqcount_retry(&old->d_seq, nd->seq))
@@ -1923,12 +1921,10 @@ in_root:
        if (unlikely(nd->flags & LOOKUP_BENEATH))
                return ERR_PTR(-ECHILD);
        nd->next_seq = nd->seq;
-       *inodep = nd->path.dentry->d_inode;
        return nd->path.dentry;
 }
 
-static struct dentry *follow_dotdot(struct nameidata *nd,
-                                struct inode **inodep)
+static struct dentry *follow_dotdot(struct nameidata *nd)
 {
        struct dentry *parent;
 
@@ -1952,13 +1948,11 @@ static struct dentry *follow_dotdot(struct nameidata *nd,
                dput(parent);
                return ERR_PTR(-ENOENT);
        }
-       *inodep = parent->d_inode;
        return parent;
 
 in_root:
        if (unlikely(nd->flags & LOOKUP_BENEATH))
                return ERR_PTR(-EXDEV);
-       *inodep = nd->path.dentry->d_inode;
        return dget(nd->path.dentry);
 }
 
@@ -1967,7 +1961,6 @@ static const char *handle_dots(struct nameidata *nd, int type)
        if (type == LAST_DOTDOT) {
                const char *error = NULL;
                struct dentry *parent;
-               struct inode *inode;
 
                if (!nd->root.mnt) {
                        error = ERR_PTR(set_root(nd));
@@ -1975,9 +1968,9 @@ static const char *handle_dots(struct nameidata *nd, int type)
                                return error;
                }
                if (nd->flags & LOOKUP_RCU)
-                       parent = follow_dotdot_rcu(nd, &inode);
+                       parent = follow_dotdot_rcu(nd);
                else
-                       parent = follow_dotdot(nd, &inode);
+                       parent = follow_dotdot(nd);
                if (IS_ERR(parent))
                        return ERR_CAST(parent);
                error = step_into(nd, WALK_NOFOLLOW, parent);