提交 27bff343 编写于 作者: A Al Viro

unroll do_last: loop in do_filp_open()

Signed-off-by: NAl Viro <viro@zeniv.linux.org.uk>
上级 3343eb82
......@@ -1845,8 +1845,6 @@ struct file *do_filp_open(int dfd, const char *pathname,
mutex_lock(&dir->d_inode->i_mutex);
path.dentry = lookup_hash(&nd);
path.mnt = nd.path.mnt;
do_last:
filp = do_last(&nd, &path, open_flag, flag, acc_mode, mode,
pathname, dir, &is_link);
if (is_link)
......@@ -1926,7 +1924,13 @@ struct file *do_filp_open(int dfd, const char *pathname,
path.dentry = lookup_hash(&nd);
path.mnt = nd.path.mnt;
__putname(nd.last.name);
goto do_last;
filp = do_last(&nd, &path, open_flag, flag, acc_mode, mode,
pathname, dir, &is_link);
if (is_link)
goto do_link;
if (nd.root.mnt)
path_put(&nd.root);
return filp;
}
/**
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册