mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-05 06:05:06 +00:00
ring-buffer: Use rb_page_size() instead of open coded head_page size
There's a helper function to get a ring buffer page size (the number of bytes of data recorded on the page), called rb_page_size(). Use that instead of open coding it. Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
This commit is contained in:
parent
0162d621dd
commit
10e83fd01c
1 changed files with 1 additions and 1 deletions
|
@ -3763,7 +3763,7 @@ rb_iter_peek(struct ring_buffer_iter *iter, u64 *ts)
|
|||
if (rb_per_cpu_empty(cpu_buffer))
|
||||
return NULL;
|
||||
|
||||
if (iter->head >= local_read(&iter->head_page->page->commit)) {
|
||||
if (iter->head >= rb_page_size(iter->head_page)) {
|
||||
rb_inc_iter(iter);
|
||||
goto again;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue