From: "Yordan Karadzhov (VMware)" <y.karadz@gmail.com>
To: linux-trace-devel@vger.kernel.org
Cc: "Yordan Karadzhov (VMware)" <y.karadz@gmail.com>
Subject: [PATCH 1/2] kernel-shark: Hide CPUs with no data in them
Date: Wed, 16 Mar 2022 16:37:16 +0200 [thread overview]
Message-ID: <20220316143717.272899-1-y.karadz@gmail.com> (raw)
A hash table, storring all idle CPUs is added to the session context.
If a CPU does not contain any data (is idle), its plot is not shown
by default when KernelShark starts. Note that, if the option '--cpu'
is used, it has priority and if idle CPUs are selected, the
corresponding empty CPU plots will be displayed.
Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=215677
Signed-off-by: Yordan Karadzhov (VMware) <y.karadz@gmail.com>
---
src/KsGLWidget.cpp | 11 ++++++++---
src/libkshark-tepdata.c | 5 ++++-
src/libkshark.c | 6 ++++++
src/libkshark.h | 3 +++
4 files changed, 21 insertions(+), 4 deletions(-)
diff --git a/src/KsGLWidget.cpp b/src/KsGLWidget.cpp
index 3b2e0d4..1c71ecb 100644
--- a/src/KsGLWidget.cpp
+++ b/src/KsGLWidget.cpp
@@ -419,6 +419,7 @@ void KsGLWidget::keyReleaseEvent(QKeyEvent *event)
void KsGLWidget::_defaultPlots(kshark_context *kshark_ctx)
{
+ struct kshark_data_stream *stream;
QVector<int> streamIds, plotVec;
uint64_t tMin, tMax;
int nCPUs, nBins;
@@ -432,15 +433,19 @@ void KsGLWidget::_defaultPlots(kshark_context *kshark_ctx)
*/
streamIds = KsUtils::getStreamIdList(kshark_ctx);
for (auto const &sd: streamIds) {
- nCPUs = kshark_ctx->stream[sd]->n_cpus;
+ stream = kshark_ctx->stream[sd];
+ nCPUs = stream->n_cpus;
plotVec.clear();
/* If the number of CPUs is too big show only the first 16. */
if (nCPUs > KS_MAX_START_PLOTS / kshark_ctx->n_streams)
nCPUs = KS_MAX_START_PLOTS / kshark_ctx->n_streams;
- for (int i = 0; i < nCPUs; ++i)
- plotVec.append(i);
+ for (int cpu{0}; cpu < stream->n_cpus && plotVec.count() < nCPUs; ++cpu) {
+ /* Do not add plots for idle CPUs. */
+ if (!kshark_hash_id_find(stream->idle_cpus, cpu))
+ plotVec.append(cpu);
+ }
_streamPlots[sd]._cpuList = plotVec;
_streamPlots[sd]._taskList = {};
diff --git a/src/libkshark-tepdata.c b/src/libkshark-tepdata.c
index 9740ed9..e9244b0 100644
--- a/src/libkshark-tepdata.c
+++ b/src/libkshark-tepdata.c
@@ -391,7 +391,10 @@ static ssize_t get_records(struct kshark_context *kshark_ctx,
rec = tracecmd_read_data(kshark_get_tep_input(stream), cpu);
}
- total += count;
+ if (!count)
+ kshark_hash_id_add(stream->idle_cpus, cpu);
+ else
+ total += count;
}
*rec_list = cpu_list;
diff --git a/src/libkshark.c b/src/libkshark.c
index 1222a81..44e553f 100644
--- a/src/libkshark.c
+++ b/src/libkshark.c
@@ -121,6 +121,8 @@ static void kshark_stream_free(struct kshark_data_stream *stream)
if (!stream)
return;
+ kshark_hash_id_free(stream->idle_cpus);
+
kshark_hash_id_free(stream->show_task_filter);
kshark_hash_id_free(stream->hide_task_filter);
@@ -147,6 +149,8 @@ static struct kshark_data_stream *kshark_stream_alloc()
if (!stream)
goto fail;
+ stream->idle_cpus = kshark_hash_id_alloc(KS_FILTER_HASH_NBITS);
+
stream->show_task_filter = kshark_hash_id_alloc(KS_FILTER_HASH_NBITS);
stream->hide_task_filter = kshark_hash_id_alloc(KS_FILTER_HASH_NBITS);
@@ -433,6 +437,8 @@ static int kshark_stream_close(struct kshark_data_stream *stream)
kshark_hash_id_clear(stream->show_cpu_filter);
kshark_hash_id_clear(stream->hide_cpu_filter);
+ kshark_hash_id_clear(stream->idle_cpus);
+
if (kshark_is_tep(stream))
return kshark_tep_close_interface(stream);
diff --git a/src/libkshark.h b/src/libkshark.h
index 23e3b49..1514f33 100644
--- a/src/libkshark.h
+++ b/src/libkshark.h
@@ -286,6 +286,9 @@ struct kshark_data_stream {
/** The number of CPUs presented in this data stream. */
int n_cpus;
+ /** Hash table of Idle CPUs. */
+ struct kshark_hash_id *idle_cpus;
+
/**
* The number of distinct event types presented in this data stream.
*/
--
2.32.0
next reply other threads:[~2022-03-16 14:37 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-16 14:37 Yordan Karadzhov (VMware) [this message]
2022-03-16 14:37 ` [PATCH 2/2] kernel-shark: CPU plots dialog ease spotting empty CPUs Yordan Karadzhov (VMware)
2022-03-16 15:03 ` Steven Rostedt
2022-03-16 15:11 ` Steven Rostedt
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220316143717.272899-1-y.karadz@gmail.com \
--to=y.karadz@gmail.com \
--cc=linux-trace-devel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).