Skip to content

Commit

Permalink
blk-iocost: tracing: atomic64_read(&ioc->vtime_rate) is assigned an e…
Browse files Browse the repository at this point in the history
…xtra semicolon

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>
  • Loading branch information
Li kunyu authored and Steven Rostedt (Google) committed Jul 12, 2022
1 parent 0a6d7d4 commit 0bb7e14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/trace/events/iocost.h
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down

0 comments on commit 0bb7e14

Please sign in to comment.