]> bbs.cooldavid.org Git - net-next-2.6.git/commit
ring-buffer: Add lost event count to end of sub buffer
authorSteven Rostedt <srostedt@redhat.com>
Thu, 1 Apr 2010 02:11:42 +0000 (22:11 -0400)
committerSteven Rostedt <rostedt@goodmis.org>
Thu, 1 Apr 2010 02:57:08 +0000 (22:57 -0400)
commitff0ff84a0767df48d728c36510365344a7e7d582
tree9f32396f4b5a53a3b55429a257c0630dffc8176e
parentbc21b478425ac73f66a5ec0b375a5e0d12d609ce
ring-buffer: Add lost event count to end of sub buffer

Currently, binary readers of the ring buffer only know where events were
lost, but not how many events were lost at that location.
This information is available, but it would require adding another
field to the sub buffer header to include it.

But when a event can not fit at the end of a sub buffer, it is written
to the next sub buffer. This means there is a good chance that the
buffer may have room to hold this counter. If it does, write
the counter at the end of the sub buffer and set another flag
in the data size field that states that this information exists.

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