Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1763762AbZDAMY2 (ORCPT ); Wed, 1 Apr 2009 08:24:28 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1757885AbZDAMYQ (ORCPT ); Wed, 1 Apr 2009 08:24:16 -0400 Received: from mx3.mail.elte.hu ([157.181.1.138]:34896 "EHLO mx3.mail.elte.hu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757422AbZDAMYP (ORCPT ); Wed, 1 Apr 2009 08:24:15 -0400 Date: Wed, 1 Apr 2009 14:24:08 +0200 From: Ingo Molnar To: Tom Zanussi Cc: linux-kernel , Steven Rostedt , fweisbec@gmail.com Subject: Re: [PATCH] tracing/filters: allow event filters to be set only when not tracing Message-ID: <20090401122408.GG12966@elte.hu> References: <1238390546.6368.65.camel@bookworm> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1238390546.6368.65.camel@bookworm> User-Agent: Mutt/1.5.18 (2008-05-17) X-ELTE-VirusStatus: clean X-ELTE-SpamScore: -1.5 X-ELTE-SpamLevel: X-ELTE-SpamCheck: no X-ELTE-SpamVersion: ELTE 2.0 X-ELTE-SpamCheck-Details: score=-1.5 required=5.9 tests=BAYES_00 autolearn=no SpamAssassin version=3.2.5 -1.5 BAYES_00 BODY: Bayesian spam probability is 0 to 1% [score: 0.0000] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 950 Lines: 26 * Tom Zanussi wrote: > This patch adds code allowing the event filter to be set only if > there's no active tracing going on. > --- a/kernel/trace/trace_events.c > +++ b/kernel/trace/trace_events.c > @@ -498,6 +498,9 @@ event_filter_write(struct file *filp, const char __user *ubuf, size_t cnt, > struct filter_pred *pred; > int err; > > + if (tracing_is_enabled() && (!tracer_is_nop() || call->enabled)) > + return -EBUSY; hm, but it would be the normal use-case to set filters on the fly. To experiment around with them and shape them until the output is just right. Having to turn the tracer on/off during that seems quite counterproductive to that use-case. Ingo -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/