Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751475AbaLCRxU (ORCPT ); Wed, 3 Dec 2014 12:53:20 -0500 Received: from mail-qg0-f45.google.com ([209.85.192.45]:59029 "EHLO mail-qg0-f45.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751088AbaLCRxT (ORCPT ); Wed, 3 Dec 2014 12:53:19 -0500 MIME-Version: 1.0 In-Reply-To: <20141203034033.19a30e2f@gandalf.local.home> References: <20141203031334.174087814@goodmis.org> <20141203032106.156623189@goodmis.org> <20141203034033.19a30e2f@gandalf.local.home> Date: Wed, 3 Dec 2014 09:53:18 -0800 Message-ID: Subject: Re: [PATCH 3/3] ftracetests: Add test to test event filter logic From: Alexei Starovoitov To: Steven Rostedt Cc: LKML , Ingo Molnar , Andrew Morton , Masami Hiramatsu , Theodore Tso Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Dec 3, 2014 at 12:40 AM, Steven Rostedt wrote: > On Tue, 2 Dec 2014 22:22:16 -0800 > Alexei Starovoitov wrote: > >> On Tue, Dec 2, 2014 at 7:13 PM, Steven Rostedt wrote: >> > From: "Steven Rostedt (Red Hat)" >> > >> > Add a test to test the event filter logic. It currently tests the >> > following filters against sched:sched_switch event. >> > >> > ( prev_pid != 0 ) >> > ( prev_pid == 0 ) >> > ( prev_pid < 100 ) >> > ( prev_pid <= $$ ) >> > ( prev_pid > 100 ) >> > ( prev_pid >= $$ ) >> > ! ( prev_pid != 0 ) >> > ! ( prev_pid == 0 ) >> > ! ( prev_pid < 100 ) >> > ! ( prev_pid <= $$ ) >> > ! ( prev_pid > 100 ) >> > ! ( prev_pid >= $$ ) >> > ( prev_pid != 0 && next_pid > 10 ) >> > ( prev_pid != 0 || next_pid > 10 ) >> > ! ( prev_pid != 0 && next_pid > 10 ) >> > ! ( prev_pid != 0 || next_pid > 10 ) >> > ( prev_pid & 1 ) >> > ( prev_pid & 2 ) >> > ( prev_pid & 4 ) >> > ( prev_pid & 8 ) >> > ( prev_pid & 16 ) >> > ! ( prev_pid & 1 ) >> > ! ( prev_pid & 2 ) >> > ! ( prev_pid & 4 ) >> > ! ( prev_pid & 8 ) >> > ! ( prev_pid & 16 ) >> > ( next_comm ~ "ftrace-test-fil" ) >> > ( next_comm != "ftrace-test-fil" ) >> > ! ( next_comm ~ "ftrace-test-fil" ) >> > ! ( next_comm != "ftrace-test-fil" ) >> >> thanks for the tests! >> Since you're adding full support for 'not', >> I think would be good to have few more tests >> where ! is not a top node. Like: >> (prev_pid != 0 && !(next_pid & 2)) >> and another one with ! at multiple levels, like: >> (prev_pid != 0 && !(next_pid != 2 && !(prev_pid > 3))) >> ... or reject them during parsing. > > Sure, would you like to add them :-) > > I spent more time on this than I should have. I have other things to > work on and this little project has already put me behind on my other > tasks. aren't we all starting to hack things only to realize that the scope of work is too large? ;) Anyway, will try to add these tests when your patches land. -- 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/