Skip to content

Commit 0bb7e14

Browse files
likunyurrostedt
authored andcommitted
blk-iocost: tracing: atomic64_read(&ioc->vtime_rate) is assigned an extra semicolon
Remove extra semicolon. Link: https://lkml.kernel.org/r/[email protected] Cc: Tejun Heo <[email protected]> Cc: Jens Axboe <[email protected]> Signed-off-by: Li kunyu <[email protected]> Signed-off-by: Steven Rostedt (Google) <[email protected]>
1 parent 0a6d7d4 commit 0bb7e14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/trace/events/iocost.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ TRACE_EVENT(iocost_ioc_vrate_adj,
160160

161161
TP_fast_assign(
162162
__assign_str(devname, ioc_name(ioc));
163-
__entry->old_vrate = atomic64_read(&ioc->vtime_rate);;
163+
__entry->old_vrate = atomic64_read(&ioc->vtime_rate);
164164
__entry->new_vrate = new_vrate;
165165
__entry->busy_level = ioc->busy_level;
166166
__entry->read_missed_ppm = missed_ppm[READ];

0 commit comments

Comments
 (0)