ring-buffer: remove ring_buffer_event_discard
authorSteven Rostedt <srostedt@redhat.com>
Thu, 3 Sep 2009 19:33:41 +0000 (15:33 -0400)
committerSteven Rostedt <rostedt@goodmis.org>
Fri, 4 Sep 2009 15:36:19 +0000 (11:36 -0400)
commitdc892f7339af2d125478b800edb9081d6149665b
tree3377439556b600c7bd3d53cbc0a893dd75bed634
parent7e9391cfedce34eb9786bfa69d7d545dc93ef930
ring-buffer: remove ring_buffer_event_discard

The function ring_buffer_event_discard can be used on any item in the
ring buffer, even after the item was committed. This function provides
no safety nets and is very race prone.

An item may be safely removed from the ring buffer before it is committed
with the ring_buffer_discard_commit.

Since there are currently no users of this function, and because this
function is racey and error prone, this patch removes it altogether.

Note, removing this function also allows the counters to ignore
all discarded events (patches will follow).

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