summaryrefslogtreecommitdiff
path: root/storage/rocksdb/rdb_perf_context.cc
diff options
context:
space:
mode:
Diffstat (limited to 'storage/rocksdb/rdb_perf_context.cc')
-rw-r--r--storage/rocksdb/rdb_perf_context.cc18
1 files changed, 9 insertions, 9 deletions
diff --git a/storage/rocksdb/rdb_perf_context.cc b/storage/rocksdb/rdb_perf_context.cc
index cd0d9e57c2b..88d84061789 100644
--- a/storage/rocksdb/rdb_perf_context.cc
+++ b/storage/rocksdb/rdb_perf_context.cc
@@ -96,7 +96,7 @@ std::string rdb_pc_stat_types[]=
idx++; \
} while (0)
-static void harvest_diffs(Rdb_atomic_perf_counters *counters)
+static void harvest_diffs(Rdb_atomic_perf_counters * const counters)
{
// (C) These should be in the same order as the PC enum
size_t idx= 0;
@@ -151,7 +151,7 @@ static void harvest_diffs(Rdb_atomic_perf_counters *counters)
static Rdb_atomic_perf_counters rdb_global_perf_counters;
-void rdb_get_global_perf_counters(Rdb_perf_counters *counters)
+void rdb_get_global_perf_counters(Rdb_perf_counters* const counters)
{
DBUG_ASSERT(counters != nullptr);
@@ -165,9 +165,9 @@ void Rdb_perf_counters::load(const Rdb_atomic_perf_counters &atomic_counters)
}
}
-bool Rdb_io_perf::start(uint32_t perf_context_level)
+bool Rdb_io_perf::start(const uint32_t perf_context_level)
{
- rocksdb::PerfLevel perf_level=
+ const rocksdb::PerfLevel perf_level=
static_cast<rocksdb::PerfLevel>(perf_context_level);
if (rocksdb::GetPerfLevel() != perf_level)
@@ -185,9 +185,9 @@ bool Rdb_io_perf::start(uint32_t perf_context_level)
return true;
}
-void Rdb_io_perf::end_and_record(uint32_t perf_context_level)
+void Rdb_io_perf::end_and_record(const uint32_t perf_context_level)
{
- rocksdb::PerfLevel perf_level=
+ const rocksdb::PerfLevel perf_level=
static_cast<rocksdb::PerfLevel>(perf_context_level);
if (perf_level == rocksdb::kDisable)
@@ -208,7 +208,7 @@ void Rdb_io_perf::end_and_record(uint32_t perf_context_level)
{
my_io_perf_t io_perf_read;
- my_io_perf_init(&io_perf_read);
+ io_perf_read.init();
io_perf_read.bytes= rocksdb::perf_context.block_read_byte;
io_perf_read.requests= rocksdb::perf_context.block_read_count;
@@ -219,8 +219,8 @@ void Rdb_io_perf::end_and_record(uint32_t perf_context_level)
io_perf_read.svc_time_max= io_perf_read.svc_time=
rocksdb::perf_context.block_read_time;
- my_io_perf_sum_atomic_helper(m_shared_io_perf_read, &io_perf_read);
- my_io_perf_sum(&m_stats->table_io_perf_read, &io_perf_read);
+ m_shared_io_perf_read->sum(io_perf_read);
+ m_stats->table_io_perf_read.sum(io_perf_read);
}
if (m_stats) {