]> git.baikalelectronics.ru Git - kernel.git/commit
trace: Fix epoll hang when we race with new entries
authorJosef Bacik <jbacik@fb.com>
Mon, 25 Aug 2014 17:59:41 +0000 (13:59 -0400)
committerSteven Rostedt <rostedt@goodmis.org>
Tue, 26 Aug 2014 00:18:11 +0000 (20:18 -0400)
commit79b8b7c2492c839c9f0bc47c34710c5b07d7af63
tree94ba401131a38c716c40d9a24572b469a47f2f9c
parentd58cc1908fb29ee952f97e1b1b7571b3db924417
trace: Fix epoll hang when we race with new entries

Epoll on trace_pipe can sometimes hang in a weird case.  If the ring buffer is
empty when we set waiters_pending but an event shows up exactly at that moment
we can miss being woken up by the ring buffers irq work.  Since
ring_buffer_empty() is inherently racey we will sometimes think that the buffer
is not empty.  So we don't get woken up and we don't think there are any events
even though there were some ready when we added the watch, which makes us hang.
This patch fixes this by making sure that we are actually on the wait list
before we set waiters_pending, and add a memory barrier to make sure
ring_buffer_empty() is going to be correct.

Link: http://lkml.kernel.org/p/1408989581-23727-1-git-send-email-jbacik@fb.com
Cc: stable@vger.kernel.org # 3.10+
Cc: Martin Lau <kafai@fb.com>
Signed-off-by: Josef Bacik <jbacik@fb.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
kernel/trace/ring_buffer.c