Re: [PATCH 01/14] perf tool: Introduce perf_hpp__list for period related columns

2012-11-29 Thread Namhyung Kim
Hi, On Thu, 29 Nov 2012 16:44:59 +0900, Namhyung Kim wrote: > Hi Jiri, > > On Wed, 28 Nov 2012 14:52:36 +0100, Jiri Olsa wrote: >> Adding perf_hpp__list list to register and contain all period >> related columns the command is interested in. >> >> This way we get rid of static array holding all

Re: [PATCH 01/14] perf tool: Introduce perf_hpp__list for period related columns

2012-11-29 Thread Namhyung Kim
Hi, On Thu, 29 Nov 2012 16:44:59 +0900, Namhyung Kim wrote: Hi Jiri, On Wed, 28 Nov 2012 14:52:36 +0100, Jiri Olsa wrote: Adding perf_hpp__list list to register and contain all period related columns the command is interested in. This way we get rid of static array holding all possible

Re: [PATCH 01/14] perf tool: Introduce perf_hpp__list for period related columns

2012-11-28 Thread Namhyung Kim
Hi Jiri, On Wed, 28 Nov 2012 14:52:36 +0100, Jiri Olsa wrote: > Adding perf_hpp__list list to register and contain all period > related columns the command is interested in. > > This way we get rid of static array holding all possible > columns and enable commands to register their own columns.

[PATCH 01/14] perf tool: Introduce perf_hpp__list for period related columns

2012-11-28 Thread Jiri Olsa
Adding perf_hpp__list list to register and contain all period related columns the command is interested in. This way we get rid of static array holding all possible columns and enable commands to register their own columns. It'll be handy for diff command in future to process and display data

[PATCH 01/14] perf tool: Introduce perf_hpp__list for period related columns

2012-11-28 Thread Jiri Olsa
Adding perf_hpp__list list to register and contain all period related columns the command is interested in. This way we get rid of static array holding all possible columns and enable commands to register their own columns. It'll be handy for diff command in future to process and display data

Re: [PATCH 01/14] perf tool: Introduce perf_hpp__list for period related columns

2012-11-28 Thread Namhyung Kim
Hi Jiri, On Wed, 28 Nov 2012 14:52:36 +0100, Jiri Olsa wrote: Adding perf_hpp__list list to register and contain all period related columns the command is interested in. This way we get rid of static array holding all possible columns and enable commands to register their own columns. But