提交 1088a640 编写于 作者: A Al Viro

dput(): turn into explicit while() loop

No need to mess with gotos when the code yielded by straight while()
isn't any worse...
Signed-off-by: NAl Viro <viro@zeniv.linux.org.uk>
上级 9c5f1d30
......@@ -828,10 +828,7 @@ static inline bool fast_dput(struct dentry *dentry)
*/
void dput(struct dentry *dentry)
{
if (unlikely(!dentry))
return;
repeat:
while (dentry) {
might_sleep();
rcu_read_lock();
......@@ -849,8 +846,6 @@ void dput(struct dentry *dentry)
}
dentry = dentry_kill(dentry);
if (dentry) {
goto repeat;
}
}
EXPORT_SYMBOL(dput);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册