1
0
Fork 0

ring-buffer: Mark the !tail (crossing a page) as unlikely

It is the uncommon case where an event crosses a sub buffer boundary (page)
mark that check at the end of reserving an event as unlikely.

Suggested-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
zero-sugar-mainline-defconfig
Steven Rostedt (VMware) 2020-06-30 09:04:35 -04:00
parent b23d7a5f4a
commit 75b21c6dfa
1 changed files with 1 additions and 1 deletions

View File

@ -3260,7 +3260,7 @@ __rb_reserve_next(struct ring_buffer_per_cpu *cpu_buffer,
* If this is the first commit on the page, then update
* its timestamp.
*/
if (!tail)
if (unlikely(!tail))
tail_page->page->time_stamp = info->ts;
/* account for these added bytes */