提交 d6d67e72 编写于 作者: E Eric Wong 提交者: Linus Torvalds

epoll: cleanup: use RCU_INIT_POINTER when nulling

It is always safe to use RCU_INIT_POINTER to NULL a pointer.  This results
in slightly smaller/faster code.
Signed-off-by: NEric Wong <normalperson@yhbt.net>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 450d89ec
...@@ -1213,7 +1213,7 @@ static noinline void ep_destroy_wakeup_source(struct epitem *epi) ...@@ -1213,7 +1213,7 @@ static noinline void ep_destroy_wakeup_source(struct epitem *epi)
{ {
struct wakeup_source *ws = ep_wakeup_source(epi); struct wakeup_source *ws = ep_wakeup_source(epi);
rcu_assign_pointer(epi->ws, NULL); RCU_INIT_POINTER(epi->ws, NULL);
/* /*
* wait for ep_pm_stay_awake_rcu to finish, synchronize_rcu is * wait for ep_pm_stay_awake_rcu to finish, synchronize_rcu is
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册