c6fc018a7a
Add setting feature that can add config variables with their values to a config file (i.e. user or system config file) or modify config key-value pairs in a config file. For the syntax examples: perf config [<file-option>] [section.name[=value] ...] e.g. You can set the ui.show-headers to false with # perf config ui.show-headers=false If you want to add or modify several config items, you can do like # perf config annotate.show_nr_jumps=false kmem.default=slab Committer notes: Testing it: $ perf config -l top.children=true report.children=false $ $ perf config top.children=false $ perf config -l top.children=false report.children=false $ $ perf config kmem.default=slab $ perf config -l top.children=false report.children=false kmem.default=slab $ Signed-off-by: Taeung Song <treeze.taeung@gmail.com> Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Nambong Ha <over3025@gmail.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Wang Nan <wangnan0@huawei.com> Cc: Wookje Kwon <aweee0@gmail.com> Link: http://lkml.kernel.org/r/1478241862-31230-5-git-send-email-treeze.taeung@gmail.com [ Combined patch with docs update with this one ] Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
69 lines
2.0 KiB
C
69 lines
2.0 KiB
C
#ifndef __PERF_CONFIG_H
|
|
#define __PERF_CONFIG_H
|
|
|
|
#include <stdbool.h>
|
|
#include <linux/list.h>
|
|
|
|
struct perf_config_item {
|
|
char *name;
|
|
char *value;
|
|
struct list_head node;
|
|
};
|
|
|
|
struct perf_config_section {
|
|
char *name;
|
|
struct list_head items;
|
|
struct list_head node;
|
|
};
|
|
|
|
struct perf_config_set {
|
|
struct list_head sections;
|
|
};
|
|
|
|
extern const char *config_exclusive_filename;
|
|
|
|
typedef int (*config_fn_t)(const char *, const char *, void *);
|
|
int perf_default_config(const char *, const char *, void *);
|
|
int perf_config(config_fn_t fn, void *);
|
|
int perf_config_int(const char *, const char *);
|
|
u64 perf_config_u64(const char *, const char *);
|
|
int perf_config_bool(const char *, const char *);
|
|
int config_error_nonbool(const char *);
|
|
const char *perf_etc_perfconfig(void);
|
|
|
|
struct perf_config_set *perf_config_set__new(void);
|
|
void perf_config_set__delete(struct perf_config_set *set);
|
|
int perf_config_set__collect(struct perf_config_set *set,
|
|
const char *var, const char *value);
|
|
void perf_config__init(void);
|
|
void perf_config__exit(void);
|
|
void perf_config__refresh(void);
|
|
|
|
/**
|
|
* perf_config_sections__for_each - iterate thru all the sections
|
|
* @list: list_head instance to iterate
|
|
* @section: struct perf_config_section iterator
|
|
*/
|
|
#define perf_config_sections__for_each_entry(list, section) \
|
|
list_for_each_entry(section, list, node)
|
|
|
|
/**
|
|
* perf_config_items__for_each - iterate thru all the items
|
|
* @list: list_head instance to iterate
|
|
* @item: struct perf_config_item iterator
|
|
*/
|
|
#define perf_config_items__for_each_entry(list, item) \
|
|
list_for_each_entry(item, list, node)
|
|
|
|
/**
|
|
* perf_config_set__for_each - iterate thru all the config section-item pairs
|
|
* @set: evlist instance to iterate
|
|
* @section: struct perf_config_section iterator
|
|
* @item: struct perf_config_item iterator
|
|
*/
|
|
#define perf_config_set__for_each_entry(set, section, item) \
|
|
perf_config_sections__for_each_entry(&set->sections, section) \
|
|
perf_config_items__for_each_entry(§ion->items, item)
|
|
|
|
#endif /* __PERF_CONFIG_H */
|