Commit 102b8af2 authored by Al Viro's avatar Al Viro

namei: fold path_cleanup() into terminate_walk()

they are always called next to each other; moreover,
terminate_walk() is more symmetrical that way.
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 5c31b6ce
...@@ -584,6 +584,10 @@ static void terminate_walk(struct nameidata *nd) ...@@ -584,6 +584,10 @@ static void terminate_walk(struct nameidata *nd)
path_put(&nd->path); path_put(&nd->path);
for (i = 0; i < nd->depth; i++) for (i = 0; i < nd->depth; i++)
path_put(&nd->stack[i].link); path_put(&nd->stack[i].link);
if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
path_put(&nd->root);
nd->root.mnt = NULL;
}
} else { } else {
nd->flags &= ~LOOKUP_RCU; nd->flags &= ~LOOKUP_RCU;
if (!(nd->flags & LOOKUP_ROOT)) if (!(nd->flags & LOOKUP_ROOT))
...@@ -2051,14 +2055,6 @@ static const char *path_init(int dfd, const struct filename *name, ...@@ -2051,14 +2055,6 @@ static const char *path_init(int dfd, const struct filename *name,
return ERR_PTR(-ECHILD); return ERR_PTR(-ECHILD);
} }
static void path_cleanup(struct nameidata *nd)
{
if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
path_put(&nd->root);
nd->root.mnt = NULL;
}
}
static const char *trailing_symlink(struct nameidata *nd) static const char *trailing_symlink(struct nameidata *nd)
{ {
const char *s; const char *s;
...@@ -2114,7 +2110,6 @@ static int path_lookupat(int dfd, const struct filename *name, unsigned flags, ...@@ -2114,7 +2110,6 @@ static int path_lookupat(int dfd, const struct filename *name, unsigned flags,
nd->path.dentry = NULL; nd->path.dentry = NULL;
} }
terminate_walk(nd); terminate_walk(nd);
path_cleanup(nd);
return err; return err;
} }
...@@ -2162,7 +2157,6 @@ static int path_parentat(int dfd, const struct filename *name, ...@@ -2162,7 +2157,6 @@ static int path_parentat(int dfd, const struct filename *name,
nd->path.dentry = NULL; nd->path.dentry = NULL;
} }
terminate_walk(nd); terminate_walk(nd);
path_cleanup(nd);
return err; return err;
} }
...@@ -2446,7 +2440,6 @@ path_mountpoint(int dfd, const struct filename *name, struct path *path, ...@@ -2446,7 +2440,6 @@ path_mountpoint(int dfd, const struct filename *name, struct path *path,
} }
} }
terminate_walk(nd); terminate_walk(nd);
path_cleanup(nd);
return err; return err;
} }
...@@ -3318,7 +3311,6 @@ static struct file *path_openat(int dfd, struct filename *pathname, ...@@ -3318,7 +3311,6 @@ static struct file *path_openat(int dfd, struct filename *pathname,
} }
} }
terminate_walk(nd); terminate_walk(nd);
path_cleanup(nd);
out2: out2:
if (!(opened & FILE_OPENED)) { if (!(opened & FILE_OPENED)) {
BUG_ON(!error); BUG_ON(!error);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment