]> bbs.cooldavid.org Git - net-next-2.6.git/commit - kernel/trace/ring_buffer.c
ring-buffer: disable all cpu buffers when one finds a problem
authorSteven Rostedt <srostedt@redhat.com>
Thu, 3 Sep 2009 23:53:46 +0000 (19:53 -0400)
committerSteven Rostedt <rostedt@goodmis.org>
Fri, 4 Sep 2009 15:46:25 +0000 (11:46 -0400)
commit077c5407cd3231cf13472623995f0dfdda510d62
tree843c729463363495f13333b2b55f3985ea75dfd8
parenta1863c212b7517afc2b13e549552ac322fb44cab
ring-buffer: disable all cpu buffers when one finds a problem

Currently the way RB_WARN_ON works, is to disable either the current
CPU buffer or all CPU buffers, depending on whether a ring_buffer or
ring_buffer_per_cpu struct was passed into the macro.

Most users of the RB_WARN_ON pass in the CPU buffer, so only the one
CPU buffer gets disabled but the rest are still active. This may
confuse users even though a warning is sent to the console.

This patch changes the macro to disable the entire buffer even if
the CPU buffer is passed in.

Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
kernel/trace/ring_buffer.c