OSDN Git Service

fold handle_mounts() into step_into()
authorAl Viro <viro@zeniv.linux.org.uk>
Sun, 12 Jan 2020 18:40:02 +0000 (13:40 -0500)
committerAl Viro <viro@zeniv.linux.org.uk>
Sat, 14 Mar 2020 01:08:15 +0000 (21:08 -0400)
commitcbae4d12eeee6b002a1252c4c45213651e8f4b55
tree8d8fc7e67657ce2685962394003b6082e570cb5d
parentaca2903eefd0f8a3ba672f985182f899b425ca24
fold handle_mounts() into step_into()

The following is true:
* calls of handle_mounts() and step_into() are always
paired in sequences like
err = handle_mounts(nd, dentry, &path, &inode, &seq);
if (unlikely(err < 0))
return err;
err = step_into(nd, &path, flags, inode, seq);
* in all such sequences path is uninitialized before and
unused after this pair of calls
* in all such sequences inode and seq are unused afterwards.

So the call of handle_mounts() can be shifted inside step_into(),
turning 'path' into a local variable in the combined function.

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