Commit 82db909e authored by Qiujun Huang's avatar Qiujun Huang Committed by Steven Rostedt (VMware)

ring-buffer: Fix two typos in comments

s/inerrupting/interrupting/
s/beween/between/

Link: https://lkml.kernel.org/r/20201014152749.29986-1-hqjagain@gmail.comSigned-off-by: default avatarQiujun Huang <hqjagain@gmail.com>
Signed-off-by: default avatarSteven Rostedt (VMware) <rostedt@goodmis.org>
parent 3b349353
...@@ -3399,7 +3399,7 @@ __rb_reserve_next(struct ring_buffer_per_cpu *cpu_buffer, ...@@ -3399,7 +3399,7 @@ __rb_reserve_next(struct ring_buffer_per_cpu *cpu_buffer,
/* This did not interrupt any time update */ /* This did not interrupt any time update */
info->delta = info->ts - info->after; info->delta = info->ts - info->after;
else else
/* Just use full timestamp for inerrupting event */ /* Just use full timestamp for interrupting event */
info->delta = info->ts; info->delta = info->ts;
barrier(); barrier();
check_buffer(cpu_buffer, info, tail); check_buffer(cpu_buffer, info, tail);
...@@ -3436,7 +3436,7 @@ __rb_reserve_next(struct ring_buffer_per_cpu *cpu_buffer, ...@@ -3436,7 +3436,7 @@ __rb_reserve_next(struct ring_buffer_per_cpu *cpu_buffer,
info->ts = ts; info->ts = ts;
} else { } else {
/* /*
* Interrupted beween C and E: * Interrupted between C and E:
* Lost the previous events time stamp. Just set the * Lost the previous events time stamp. Just set the
* delta to zero, and this will be the same time as * delta to zero, and this will be the same time as
* the event this event interrupted. And the events that * the event this event interrupted. And the events that
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment