Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932091AbZKCHfS (ORCPT ); Tue, 3 Nov 2009 02:35:18 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754990AbZKCHfR (ORCPT ); Tue, 3 Nov 2009 02:35:17 -0500 Received: from mx3.mail.elte.hu ([157.181.1.138]:43425 "EHLO mx3.mail.elte.hu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752960AbZKCHfQ (ORCPT ); Tue, 3 Nov 2009 02:35:16 -0500 Date: Tue, 3 Nov 2009 08:34:53 +0100 From: Ingo Molnar To: Hitoshi Mitake Cc: linux-kernel@vger.kernel.org, Rusty Russell , Thomas Gleixner , Peter Zijlstra , Mike Galbraith , Arnaldo Carvalho de Melo , =?iso-8859-1?Q?Fr=E9d=E9ric=5FWeisbecker?= Subject: Re: [RFC][PATCH 2/7] Adding general performance benchmarking subsystem to perf. Message-ID: <20091103073453.GD19928@elte.hu> References: <20091103.133645.1116588942663460777.mitake@dcl.info.waseda.ac.jp> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20091103.133645.1116588942663460777.mitake@dcl.info.waseda.ac.jp> User-Agent: Mutt/1.5.19 (2009-01-05) X-ELTE-SpamScore: 0.0 X-ELTE-SpamLevel: X-ELTE-SpamCheck: no X-ELTE-SpamVersion: ELTE 2.0 X-ELTE-SpamCheck-Details: score=0.0 required=5.9 tests=none autolearn=no SpamAssassin version=3.2.5 _SUMMARY_ Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1382 Lines: 43 * Hitoshi Mitake wrote: > > Adding general performance benchmarking subsystem to perf. > This patch add new file: bench-suite.h > > bench-suite.h contains prototypes of benchmark suite functions. > > Signed-off-by: Hitoshi Mitake > Cc: Rusty Russell > Cc: Thomas Gleixner > Cc: Peter Zijlstra > Cc: Mike Galbraith > --- > tools/perf/bench-suite.h | 7 +++++++ > 1 files changed, 7 insertions(+), 0 deletions(-) > create mode 100644 tools/perf/bench-suite.h > > diff --git a/tools/perf/bench-suite.h b/tools/perf/bench-suite.h > new file mode 100644 > index 0000000..65f6f55 > --- /dev/null > +++ b/tools/perf/bench-suite.h > @@ -0,0 +1,7 @@ > +#ifndef BENCH_SUITE_H > +#define BENCH_SUITE_H > + > +extern int bench_sched_messaging(int argc, const char **argv, const char *prefix); > +extern int bench_sched_pipe(int argc, const char **argv, const char *prefix); > + > +#endif Please put new headers into tools/*.h. Also, could we name it bench.h? It's a bit shorter :) 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/