projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0a6d7d4
)
blk-iocost: tracing: atomic64_read(&ioc->vtime_rate) is assigned an extra semicolon
author
Li kunyu
<kunyu@nfschina.com>
Wed, 29 Jun 2022 03:00:13 +0000
(11:00 +0800)
committer
Steven Rostedt (Google)
<rostedt@goodmis.org>
Tue, 12 Jul 2022 20:36:37 +0000
(16:36 -0400)
Remove extra semicolon.
Link:
https://lkml.kernel.org/r/20220629030013.10362-1-kunyu@nfschina.com
Cc: Tejun Heo <tj@kernel.org>
Cc: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Li kunyu <kunyu@nfschina.com>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
include/trace/events/iocost.h
patch
|
blob
|
history
diff --git
a/include/trace/events/iocost.h
b/include/trace/events/iocost.h
index
e282ce0
..
6d1626e
100644
(file)
--- a/
include/trace/events/iocost.h
+++ b/
include/trace/events/iocost.h
@@
-160,7
+160,7
@@
TRACE_EVENT(iocost_ioc_vrate_adj,
TP_fast_assign(
__assign_str(devname, ioc_name(ioc));
- __entry->old_vrate = atomic64_read(&ioc->vtime_rate);
;
+ __entry->old_vrate = atomic64_read(&ioc->vtime_rate);
__entry->new_vrate = new_vrate;
__entry->busy_level = ioc->busy_level;
__entry->read_missed_ppm = missed_ppm[READ];