LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Steven Rostedt <rostedt@goodmis.org>
To: linux-kernel@vger.kernel.org
Cc: Ingo Molnar <mingo@elte.hu>,
Andrew Morton <akpm@linux-foundation.org>,
Tom Zanussi <tzanussi@gmail.com>,
Frederic Weisbecker <fweisbec@gmail.com>,
Lai Jiangshan <laijs@cn.fujitsu.com>,
Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Subject: [RFC][PATCH 04/12] tracing/filter: Call synchronize_sched() just once for system filters
Date: Thu, 27 Jan 2011 23:21:22 -0500 [thread overview]
Message-ID: <20110128043344.249936586@goodmis.org> (raw)
In-Reply-To: <20110128042118.561146147@goodmis.org>
[-- Attachment #1: 0004-tracing-filter-Call-synchronize_sched-just-once-for-.patch --]
[-- Type: text/plain, Size: 4148 bytes --]
From: Steven Rostedt <srostedt@redhat.com>
By separating out the reseting of the filter->n_preds to zero from
the reallocation of preds for the filter, we can reset groups of
filters first, call synchronize_sched() just once, and then reallocate
each of the filters in the system group.
Cc: Tom Zanussi <tzanussi@gmail.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
---
kernel/trace/trace_events_filter.c | 80 ++++++++++++++++++++++++++++-------
1 files changed, 64 insertions(+), 16 deletions(-)
diff --git a/kernel/trace/trace_events_filter.c b/kernel/trace/trace_events_filter.c
index 932f605..1c14cf2 100644
--- a/kernel/trace/trace_events_filter.c
+++ b/kernel/trace/trace_events_filter.c
@@ -570,17 +570,28 @@ static void __free_preds(struct event_filter *filter)
filter->n_preds = 0;
}
+static void reset_preds(struct event_filter *filter)
+{
+ struct filter_pred *pred;
+ int n_preds = filter->n_preds;
+ int i;
+
+ filter->n_preds = 0;
+ if (!filter->preds)
+ return;
+
+ for (i = 0; i < n_preds; i++) {
+ pred = filter->preds[i];
+ pred->fn = filter_pred_none;
+ }
+}
+
static void filter_disable_preds(struct ftrace_event_call *call)
{
struct event_filter *filter = call->filter;
- int i;
call->flags &= ~TRACE_EVENT_FL_FILTERED;
- if (filter->preds) {
- for (i = 0; i < filter->n_preds; i++)
- filter->preds[i]->fn = filter_pred_none;
- }
- filter->n_preds = 0;
+ reset_preds(filter);
}
static void __free_filter(struct event_filter *filter)
@@ -620,15 +631,18 @@ static int __alloc_preds(struct event_filter *filter, int n_preds)
if (filter->preds) {
if (filter->a_preds < n_preds) {
- /* We need to reallocate */
- filter->n_preds = 0;
/*
- * It is possible that the filter is currently
- * being used. We need to zero out the number
- * of preds, wait on preemption and then free
- * the preds.
+ * We need to reallocate.
+ * We should have already have zeroed out
+ * the pred count and called synchronized_sched()
+ * to make sure no one is using the preds.
*/
synchronize_sched();
+ if (WARN_ON_ONCE(filter->n_preds)) {
+ /* We need to reset it now */
+ filter->n_preds = 0;
+ synchronize_sched();
+ }
__free_preds(filter);
}
}
@@ -1267,6 +1281,7 @@ static int replace_preds(struct ftrace_event_call *call,
return err;
}
+ n_preds = 0;
list_for_each_entry(elt, &ps->postfix, list) {
if (elt->op == OP_NONE) {
if (!operand1)
@@ -1327,6 +1342,30 @@ static int replace_system_preds(struct event_subsystem *system,
/* try to see if the filter can be applied */
err = replace_preds(call, filter, ps, filter_string, true);
if (err)
+ goto fail;
+ }
+
+ /* set all filter pred counts to zero */
+ list_for_each_entry(call, &ftrace_events, list) {
+ struct event_filter *filter = call->filter;
+
+ if (strcmp(call->class->system, system->name) != 0)
+ continue;
+
+ reset_preds(filter);
+ }
+
+ /*
+ * Since some of the preds may be used under preemption
+ * we need to wait for them to finish before we may
+ * reallocate them.
+ */
+ synchronize_sched();
+
+ list_for_each_entry(call, &ftrace_events, list) {
+ struct event_filter *filter = call->filter;
+
+ if (strcmp(call->class->system, system->name) != 0)
continue;
/* really apply the filter */
@@ -1341,11 +1380,13 @@ static int replace_system_preds(struct event_subsystem *system,
fail = false;
}
- if (fail) {
- parse_error(ps, FILT_ERR_BAD_SUBSYS_FILTER, 0);
- return -EINVAL;
- }
+ if (fail)
+ goto fail;
+
return 0;
+ fail:
+ parse_error(ps, FILT_ERR_BAD_SUBSYS_FILTER, 0);
+ return -EINVAL;
}
int apply_event_filter(struct ftrace_event_call *call, char *filter_string)
@@ -1380,6 +1421,13 @@ int apply_event_filter(struct ftrace_event_call *call, char *filter_string)
goto out;
}
+ /*
+ * Make sure all the pred counts are zero so that
+ * no task is using it when we reallocate the preds array.
+ */
+ reset_preds(call->filter);
+ synchronize_sched();
+
err = replace_preds(call, call->filter, ps, filter_string, false);
if (err)
append_filter_err(ps, call->filter);
--
1.7.2.3
next prev parent reply other threads:[~2011-01-28 4:33 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-01-28 4:21 [RFC][PATCH 00/12] tracing/filter: Remove 32 pred limit and add short circuits Steven Rostedt
2011-01-28 4:21 ` [RFC][PATCH 01/12] tracing/filter: Have no filter return a match Steven Rostedt
2011-01-28 4:21 ` [RFC][PATCH 02/12] tracing/filter: Move OR and AND logic out of fn() method Steven Rostedt
2011-01-28 4:21 ` [RFC][PATCH 03/12] tracing/filter: Dynamically allocate preds Steven Rostedt
2011-01-28 4:21 ` Steven Rostedt [this message]
2011-01-28 4:21 ` [RFC][PATCH 05/12] tracing/filter: Allocate the preds in an array Steven Rostedt
2011-01-28 4:21 ` [RFC][PATCH 06/12] tracing/filter: Free pred array on disabling of filter Steven Rostedt
2011-01-28 4:21 ` [RFC][PATCH 07/12] tracing/filter: Use a tree instead of stack for filter_match_preds() Steven Rostedt
2011-01-28 4:21 ` [RFC][PATCH 08/12] tracing/filter: Optimize short ciruit check Steven Rostedt
2011-01-28 5:37 ` Steven Rostedt
2011-01-28 4:21 ` [RFC][PATCH 09/12] tracing/filter: Check the created pred tree Steven Rostedt
2011-01-28 4:21 ` [RFC][PATCH 10/12] tracing/filter: Optimize filter by folding the tree Steven Rostedt
2011-01-28 4:21 ` [RFC][PATCH 11/12] tracing/filter: Move MAX_FILTER_PRED to local tracing directory Steven Rostedt
2011-01-28 4:21 ` [RFC][PATCH 12/12] tracing/filter: Increase the max preds to 2^14 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=20110128043344.249936586@goodmis.org \
--to=rostedt@goodmis.org \
--cc=akpm@linux-foundation.org \
--cc=fweisbec@gmail.com \
--cc=laijs@cn.fujitsu.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mathieu.desnoyers@efficios.com \
--cc=mingo@elte.hu \
--cc=tzanussi@gmail.com \
--subject='Re: [RFC][PATCH 04/12] tracing/filter: Call synchronize_sched() just once for system filters' \
/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
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).