提交 a3b3c562 编写于 作者: E Eric W. Biederman

mnt: Use hlist_move_list in namespace_unlock

Small cleanup to make the code more readable and maintainable.
Signed-off-by: NEric Biederman <ebiederm@xmission.com>
上级 e42391cd
...@@ -1298,17 +1298,15 @@ static HLIST_HEAD(unmounted); /* protected by namespace_sem */ ...@@ -1298,17 +1298,15 @@ static HLIST_HEAD(unmounted); /* protected by namespace_sem */
static void namespace_unlock(void) static void namespace_unlock(void)
{ {
struct hlist_head head = unmounted; struct hlist_head head;
if (likely(hlist_empty(&head))) { hlist_move_list(&unmounted, &head);
up_write(&namespace_sem);
return;
}
head.first->pprev = &head.first;
INIT_HLIST_HEAD(&unmounted);
up_write(&namespace_sem); up_write(&namespace_sem);
if (likely(hlist_empty(&head)))
return;
synchronize_rcu(); synchronize_rcu();
group_pin_kill(&head); group_pin_kill(&head);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册