Skip to content

Commit

Permalink
namei: lift (open-coded) terminate_walk() in follow_dotdot_rcu() into…
Browse files Browse the repository at this point in the history
… callers

follow_dotdot_rcu() does an equivalent of terminate_walk() on failure;
shifting it into callers makes for simpler rules and those callers
already have terminate_walk() on other failure exits.

Signed-off-by: Al Viro <[email protected]>
  • Loading branch information
Al Viro committed May 11, 2015
1 parent e269f2a commit 70291ae
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions fs/namei.c
Original file line number Diff line number Diff line change
Expand Up @@ -1230,10 +1230,6 @@ static int follow_dotdot_rcu(struct nameidata *nd)
return 0;

failed:
nd->flags &= ~LOOKUP_RCU;
if (!(nd->flags & LOOKUP_ROOT))
nd->root.mnt = NULL;
rcu_read_unlock();
return -ECHILD;
}

Expand Down Expand Up @@ -1551,8 +1547,7 @@ static inline int handle_dots(struct nameidata *nd, int type)
{
if (type == LAST_DOTDOT) {
if (nd->flags & LOOKUP_RCU) {
if (follow_dotdot_rcu(nd))
return -ECHILD;
return follow_dotdot_rcu(nd);
} else
follow_dotdot(nd);
}
Expand Down Expand Up @@ -1592,8 +1587,12 @@ static int walk_component(struct nameidata *nd, int follow)
* to be able to know about the current root directory and
* parent relationships.
*/
if (unlikely(nd->last_type != LAST_NORM))
return handle_dots(nd, nd->last_type);
if (unlikely(nd->last_type != LAST_NORM)) {
err = handle_dots(nd, nd->last_type);
if (err)
goto out_err;
return 0;
}
err = lookup_fast(nd, &path, &inode);
if (unlikely(err)) {
if (err < 0)
Expand Down Expand Up @@ -2981,8 +2980,10 @@ static int do_last(struct nameidata *nd,

if (nd->last_type != LAST_NORM) {
error = handle_dots(nd, nd->last_type);
if (error)
if (unlikely(error)) {
terminate_walk(nd);
return error;
}
goto finish_open;
}

Expand Down

0 comments on commit 70291ae

Please sign in to comment.