[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20220629030013.10362-1-kunyu@nfschina.com>
Date: Wed, 29 Jun 2022 11:00:13 +0800
From: Li kunyu <kunyu@...china.com>
To: rostedt@...dmis.org, mingo@...hat.com
Cc: linux-kernel@...r.kernel.org, Li kunyu <kunyu@...china.com>
Subject: [PATCH] trace: atomic64_read(&ioc->vtime_rate) is assigned an extra semicolon
I think this semicolon could be deleted.
Signed-off-by: Li kunyu <kunyu@...china.com>
---
include/trace/events/iocost.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/trace/events/iocost.h b/include/trace/events/iocost.h
index e282ce02fa2d..6d1626e7a4ce 100644
--- 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];
--
2.18.2
Powered by blists - more mailing lists