Re: [PATCH 1/4] perf config: Introduce default_config_item for all default config key-value pairs

2016-05-11 Thread Taeung Song
Hi, Arnaldo On 05/11/2016 12:05 AM, Arnaldo Carvalho de Melo wrote: Em Tue, May 10, 2016 at 08:49:16PM +0900, Taeung Song escreveu: Hi, Arnaldo, Namhyung and jirka :) On 05/10/2016 02:17 AM, Arnaldo Carvalho de Melo wrote: Em Mon, May 09, 2016 at 08:41:46PM +0900, Taeung Song escreveu: We

Re: [PATCH 1/4] perf config: Introduce default_config_item for all default config key-value pairs

2016-05-11 Thread Taeung Song
Hi, Arnaldo On 05/11/2016 12:05 AM, Arnaldo Carvalho de Melo wrote: Em Tue, May 10, 2016 at 08:49:16PM +0900, Taeung Song escreveu: Hi, Arnaldo, Namhyung and jirka :) On 05/10/2016 02:17 AM, Arnaldo Carvalho de Melo wrote: Em Mon, May 09, 2016 at 08:41:46PM +0900, Taeung Song escreveu: We

Re: [PATCH 1/4] perf config: Introduce default_config_item for all default config key-value pairs

2016-05-10 Thread Arnaldo Carvalho de Melo
Em Tue, May 10, 2016 at 08:49:16PM +0900, Taeung Song escreveu: > Hi, Arnaldo, Namhyung and jirka :) > > On 05/10/2016 02:17 AM, Arnaldo Carvalho de Melo wrote: > > Em Mon, May 09, 2016 at 08:41:46PM +0900, Taeung Song escreveu: > > > We currently use values of actual type(int, bool, char *,

Re: [PATCH 1/4] perf config: Introduce default_config_item for all default config key-value pairs

2016-05-10 Thread Arnaldo Carvalho de Melo
Em Tue, May 10, 2016 at 08:49:16PM +0900, Taeung Song escreveu: > Hi, Arnaldo, Namhyung and jirka :) > > On 05/10/2016 02:17 AM, Arnaldo Carvalho de Melo wrote: > > Em Mon, May 09, 2016 at 08:41:46PM +0900, Taeung Song escreveu: > > > We currently use values of actual type(int, bool, char *,

Re: [PATCH 1/4] perf config: Introduce default_config_item for all default config key-value pairs

2016-05-10 Thread Taeung Song
Hi, Arnaldo, Namhyung and jirka :) On 05/10/2016 02:17 AM, Arnaldo Carvalho de Melo wrote: Em Mon, May 09, 2016 at 08:41:46PM +0900, Taeung Song escreveu: We currently use values of actual type(int, bool, char *, etc.) when initializing default perf config values. But I suggest using new

Re: [PATCH 1/4] perf config: Introduce default_config_item for all default config key-value pairs

2016-05-10 Thread Taeung Song
Hi, Arnaldo, Namhyung and jirka :) On 05/10/2016 02:17 AM, Arnaldo Carvalho de Melo wrote: Em Mon, May 09, 2016 at 08:41:46PM +0900, Taeung Song escreveu: We currently use values of actual type(int, bool, char *, etc.) when initializing default perf config values. But I suggest using new

Re: [PATCH 1/4] perf config: Introduce default_config_item for all default config key-value pairs

2016-05-09 Thread Arnaldo Carvalho de Melo
Em Mon, May 09, 2016 at 08:41:46PM +0900, Taeung Song escreveu: > We currently use values of actual type(int, bool, char *, etc.) > when initializing default perf config values. > > But I suggest using new config arrays(default_config_items) > that have all default perf config key-value pairs. >

Re: [PATCH 1/4] perf config: Introduce default_config_item for all default config key-value pairs

2016-05-09 Thread Arnaldo Carvalho de Melo
Em Mon, May 09, 2016 at 08:41:46PM +0900, Taeung Song escreveu: > We currently use values of actual type(int, bool, char *, etc.) > when initializing default perf config values. > > But I suggest using new config arrays(default_config_items) > that have all default perf config key-value pairs. >

[PATCH 1/4] perf config: Introduce default_config_item for all default config key-value pairs

2016-05-09 Thread Taeung Song
We currently use values of actual type(int, bool, char *, etc.) when initializing default perf config values. But I suggest using new config arrays(default_config_items) that have all default perf config key-value pairs. Because if we do, we can manage default perf config values at one spot

[PATCH 1/4] perf config: Introduce default_config_item for all default config key-value pairs

2016-05-09 Thread Taeung Song
We currently use values of actual type(int, bool, char *, etc.) when initializing default perf config values. But I suggest using new config arrays(default_config_items) that have all default perf config key-value pairs. Because if we do, we can manage default perf config values at one spot