From: "Yordan Karadzhov (VMware)" <y.karadz@gmail.com>
To: rostedt@goodmis.org
Cc: linux-trace-devel@vger.kernel.org,
"Yordan Karadzhov (VMware)" <y.karadz@gmail.com>
Subject: [PATCH v2 8/9] kernel-shark-qt: Add Advanced filter to the session context.
Date: Thu, 28 Jun 2018 19:30:11 +0300 [thread overview]
Message-ID: <20180628163012.21477-9-y.karadz@gmail.com> (raw)
In-Reply-To: <20180628163012.21477-1-y.karadz@gmail.com>
This patch adds to the KernelShark session's context instrumentation
for sophisticated filtering based on the content of the trace event.
Signed-off-by: Yordan Karadzhov (VMware) <y.karadz@gmail.com>
---
kernel-shark-qt/src/libkshark.c | 36 ++++++++++++++++++++++++++++++---
kernel-shark-qt/src/libkshark.h | 11 +++++++++-
2 files changed, 43 insertions(+), 4 deletions(-)
diff --git a/kernel-shark-qt/src/libkshark.c b/kernel-shark-qt/src/libkshark.c
index 22f82a9..7d70142 100644
--- a/kernel-shark-qt/src/libkshark.c
+++ b/kernel-shark-qt/src/libkshark.c
@@ -118,6 +118,9 @@ bool kshark_open(struct kshark_context *kshark_ctx, const char *file)
kshark_ctx->handle = handle;
kshark_ctx->pevent = tracecmd_get_pevent(handle);
+ kshark_ctx->advanced_event_filter =
+ pevent_filter_alloc(kshark_ctx->pevent);
+
/*
* Turn off function trace indent and turn on show parent
* if possible.
@@ -134,7 +137,7 @@ void kshark_close(struct kshark_context *kshark_ctx)
return;
/*
- * All Id filters are file specific. Make sure that the Pids and Event Ids
+ * All filters are file specific. Make sure that the Pids and Event Ids
* from this file are not going to be used with another file.
*/
tracecmd_filter_id_clear(kshark_ctx->show_task_filter);
@@ -142,6 +145,12 @@ void kshark_close(struct kshark_context *kshark_ctx)
tracecmd_filter_id_clear(kshark_ctx->show_event_filter);
tracecmd_filter_id_clear(kshark_ctx->hide_event_filter);
+ if (kshark_ctx->advanced_event_filter) {
+ pevent_filter_reset(kshark_ctx->advanced_event_filter);
+ pevent_filter_free(kshark_ctx->advanced_event_filter);
+ kshark_ctx->advanced_event_filter = NULL;
+ }
+
tracecmd_close(kshark_ctx->handle);
kshark_ctx->handle = NULL;
kshark_ctx->pevent = NULL;
@@ -306,9 +315,23 @@ void kshark_filter_entries(struct kshark_context *kshark_ctx,
size_t n_entries)
{
int i;
+ if (kshark_ctx->advanced_event_filter->filters) {
+ /*
+ * The advanced filter is set but applying it requires
+ * access to prevent_record, hence the data has to be
+ * reloaded.
+ */
+ fprintf(stderr,
+ "Failed to filter!\n");
+ fprintf(stderr,
+ "Reset the Advanced filter or reload the data.\n");
+ return;
+ }
+
if (!kshark_filter_is_set(kshark_ctx))
return;
+ /* No need to reload the data. Apply the Id filters. */
for (i = 0; i < n_entries; ++i) {
/* Start with and entry which is visible everywhere. */
data[i]->visible = 0xFF;
@@ -353,7 +376,7 @@ size_t kshark_load_data_entries(struct kshark_context *kshark_ctx,
struct kshark_entry ***data_rows)
{
int n_cpus = tracecmd_cpus(kshark_ctx->handle);
- int cpu, next_cpu;
+ int cpu, next_cpu, ret;
size_t count, total = 0;
uint64_t ts;
@@ -361,6 +384,7 @@ size_t kshark_load_data_entries(struct kshark_context *kshark_ctx,
struct kshark_entry *entry, **next;
struct kshark_entry **cpu_list, **rows;
struct kshark_task_list *task;
+ struct event_filter *adv_filter = kshark_ctx->advanced_event_filter;
if (*data_rows)
free(*data_rows);
@@ -384,8 +408,14 @@ size_t kshark_load_data_entries(struct kshark_context *kshark_ctx,
goto fail;
/* Apply event filtering. */
- if (!kshark_show_event(kshark_ctx, entry->event_id))
+ ret = FILTER_NONE;
+ if (adv_filter->filters)
+ ret = pevent_filter_match(adv_filter, rec);
+
+ if (!kshark_show_event(kshark_ctx, entry->event_id) ||
+ ret != FILTER_MATCH) {
unset_event_filter_flag(kshark_ctx, entry);
+ }
/* Apply task filtering. */
if (!kshark_show_task(kshark_ctx, entry->pid)) {
diff --git a/kernel-shark-qt/src/libkshark.h b/kernel-shark-qt/src/libkshark.h
index 2b79bc8..2ec8450 100644
--- a/kernel-shark-qt/src/libkshark.h
+++ b/kernel-shark-qt/src/libkshark.h
@@ -103,6 +103,12 @@ struct kshark_context {
* have this bit unset in their "visible" fields.
*/
uint8_t filter_mask;
+
+ /**
+ * Filter allowing sophisticated filtering based on the content of
+ * the event.
+ */
+ struct event_filter *advanced_event_filter;
};
/**
@@ -245,9 +251,12 @@ void kshark_filter_clear(struct kshark_context *kshark_ctx, int filter_id);
/**
* @brief This function loops over the array of entries specified by "data"
* and "n_entries" and sets the "visible" fields of each entry according to
- * the criteria provided by the filters of the session's context. The field
+ * the criteria provided by the Id filters of the session's context. The field
* "filter_mask" of the session's context is used to control the level of
* visibility/invisibility of the entries which are filtered-out.
+ * WARNING: Do not use this function if the advanced filter is set. Applying
+ * the advanced filter requires access to prevent_record, hence the data has
+ * to be reloaded using kshark_load_data_entries().
* @param kshark_ctx: kshark_ctx: Input location for the session context
* pointer.
* @param data: Input location for the trace data to be filtered.
--
2.17.1
next prev parent reply other threads:[~2018-06-28 16:31 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-28 16:30 [PATCH v2 0/9] Introduce the basic part of the C API of KS-1.0 Yordan Karadzhov (VMware)
2018-06-28 16:30 ` [PATCH v2 1/9] kernel-shark-qt: Add Cmake build system for the Qt based KernelShark Yordan Karadzhov (VMware)
2018-06-28 16:30 ` [PATCH v2 2/9] kernel-shark-qt: Automatic generation of doxygen documentation Yordan Karadzhov (VMware)
2018-06-28 16:30 ` [PATCH v2 3/9] kernel-shark-qt: Add API for loading trace.dat files Yordan Karadzhov (VMware)
2018-06-28 20:32 ` Steven Rostedt
2018-06-28 20:41 ` Steven Rostedt
2018-06-28 21:55 ` Steven Rostedt
2018-06-28 21:57 ` Steven Rostedt
2018-06-28 16:30 ` [PATCH v2 4/9] kernel-shark-qt: Add an example showing how to load trace data Yordan Karadzhov (VMware)
2018-06-28 16:30 ` [PATCH v2 5/9] kernel-shark-qt: Add a README file to trace-cmd/kernel-shark-qt Yordan Karadzhov (VMware)
2018-06-28 16:30 ` [PATCH v2 6/9] kernel-shark-qt: Add filtering to the C API of KernelShark Yordan Karadzhov (VMware)
2018-06-28 23:29 ` Steven Rostedt
2018-06-28 23:44 ` Steven Rostedt
2018-06-28 16:30 ` [PATCH v2 7/9] kernel-shark-qt: Add an example showing how to filter trace data Yordan Karadzhov (VMware)
2018-06-28 16:30 ` Yordan Karadzhov (VMware) [this message]
2018-06-28 23:37 ` [PATCH v2 8/9] kernel-shark-qt: Add Advanced filter to the session context Steven Rostedt
2018-06-28 16:30 ` [PATCH v2 9/9] kernel-shark-qt: Add example of advanded filtering Yordan Karadzhov (VMware)
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=20180628163012.21477-9-y.karadz@gmail.com \
--to=y.karadz@gmail.com \
--cc=linux-trace-devel@vger.kernel.org \
--cc=rostedt@goodmis.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).