diff options
| author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2013-05-01 08:47:44 -0700 | 
|---|---|---|
| committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2013-05-01 08:47:44 -0700 | 
| commit | bf61c8840efe60fd8f91446860b63338fb424158 (patch) | |
| tree | 7a71832407a4f0d6346db773343f4c3ae2257b19 /tools/perf/util/pmu.c | |
| parent | 5846115b30f3a881e542c8bfde59a699c1c13740 (diff) | |
| parent | 0c6a61657da78098472fd0eb71cc01f2387fa1bb (diff) | |
| download | olio-linux-3.10-bf61c8840efe60fd8f91446860b63338fb424158.tar.xz olio-linux-3.10-bf61c8840efe60fd8f91446860b63338fb424158.zip  | |
Merge branch 'next' into for-linus
Prepare first set of updates for 3.10 merge window.
Diffstat (limited to 'tools/perf/util/pmu.c')
| -rw-r--r-- | tools/perf/util/pmu.c | 238 | 
1 files changed, 39 insertions, 199 deletions
diff --git a/tools/perf/util/pmu.c b/tools/perf/util/pmu.c index 8a2229da594..4c6f9c490a8 100644 --- a/tools/perf/util/pmu.c +++ b/tools/perf/util/pmu.c @@ -1,4 +1,3 @@ -  #include <linux/list.h>  #include <sys/types.h>  #include <sys/stat.h> @@ -11,6 +10,19 @@  #include "parse-events.h"  #include "cpumap.h" +struct perf_pmu_alias { +	char *name; +	struct list_head terms; +	struct list_head list; +}; + +struct perf_pmu_format { +	char *name; +	int value; +	DECLARE_BITMAP(bits, PERF_PMU_FORMAT_BITS); +	struct list_head list; +}; +  #define EVENT_SOURCE_DEVICE_PATH "/bus/event_source/devices/"  int perf_pmu_parse(struct list_head *list, char *name); @@ -22,7 +34,7 @@ static LIST_HEAD(pmus);   * Parse & process all the sysfs attributes located under   * the directory specified in 'dir' parameter.   */ -static int pmu_format_parse(char *dir, struct list_head *head) +int perf_pmu__format_parse(char *dir, struct list_head *head)  {  	struct dirent *evt_ent;  	DIR *format_dir; @@ -77,7 +89,7 @@ static int pmu_format(char *name, struct list_head *format)  	if (stat(path, &st) < 0)  		return 0;	/* no error if format does not exist */ -	if (pmu_format_parse(path, format)) +	if (perf_pmu__format_parse(path, format))  		return -1;  	return 0; @@ -85,7 +97,7 @@ static int pmu_format(char *name, struct list_head *format)  static int perf_pmu__new_alias(struct list_head *list, char *name, FILE *file)  { -	struct perf_pmu__alias *alias; +	struct perf_pmu_alias *alias;  	char buf[256];  	int ret; @@ -164,7 +176,7 @@ static int pmu_aliases(char *name, struct list_head *head)  		 "%s/bus/event_source/devices/%s/events", sysfs, name);  	if (stat(path, &st) < 0) -		return -1; +		return 0;	 /* no error if 'events' does not exist */  	if (pmu_aliases_parse(path, head))  		return -1; @@ -172,15 +184,15 @@ static int pmu_aliases(char *name, struct list_head *head)  	return 0;  } -static int pmu_alias_terms(struct perf_pmu__alias *alias, +static int pmu_alias_terms(struct perf_pmu_alias *alias,  			   struct list_head *terms)  { -	struct parse_events__term *term, *clone; +	struct parse_events_term *term, *clone;  	LIST_HEAD(list);  	int ret;  	list_for_each_entry(term, &alias->terms, list) { -		ret = parse_events__term_clone(&clone, term); +		ret = parse_events_term__clone(&clone, term);  		if (ret) {  			parse_events__free_terms(&list);  			return ret; @@ -296,6 +308,9 @@ static struct perf_pmu *pmu_lookup(char *name)  	if (pmu_format(name, &format))  		return NULL; +	if (pmu_aliases(name, &aliases)) +		return NULL; +  	if (pmu_type(name, &type))  		return NULL; @@ -305,8 +320,6 @@ static struct perf_pmu *pmu_lookup(char *name)  	pmu->cpus = pmu_cpumask(name); -	pmu_aliases(name, &aliases); -  	INIT_LIST_HEAD(&pmu->format);  	INIT_LIST_HEAD(&pmu->aliases);  	list_splice(&format, &pmu->format); @@ -359,10 +372,10 @@ struct perf_pmu *perf_pmu__find(char *name)  	return pmu_lookup(name);  } -static struct perf_pmu__format* +static struct perf_pmu_format *  pmu_find_format(struct list_head *formats, char *name)  { -	struct perf_pmu__format *format; +	struct perf_pmu_format *format;  	list_for_each_entry(format, formats, list)  		if (!strcmp(format->name, name)) @@ -402,9 +415,9 @@ static __u64 pmu_format_value(unsigned long *format, __u64 value)   */  static int pmu_config_term(struct list_head *formats,  			   struct perf_event_attr *attr, -			   struct parse_events__term *term) +			   struct parse_events_term *term)  { -	struct perf_pmu__format *format; +	struct perf_pmu_format *format;  	__u64 *vp;  	/* @@ -445,10 +458,11 @@ static int pmu_config_term(struct list_head *formats,  	return 0;  } -static int pmu_config(struct list_head *formats, struct perf_event_attr *attr, -		      struct list_head *head_terms) +int perf_pmu__config_terms(struct list_head *formats, +			   struct perf_event_attr *attr, +			   struct list_head *head_terms)  { -	struct parse_events__term *term; +	struct parse_events_term *term;  	list_for_each_entry(term, head_terms, list)  		if (pmu_config_term(formats, attr, term)) @@ -466,13 +480,13 @@ int perf_pmu__config(struct perf_pmu *pmu, struct perf_event_attr *attr,  		     struct list_head *head_terms)  {  	attr->type = pmu->type; -	return pmu_config(&pmu->format, attr, head_terms); +	return perf_pmu__config_terms(&pmu->format, attr, head_terms);  } -static struct perf_pmu__alias *pmu_find_alias(struct perf_pmu *pmu, -					      struct parse_events__term *term) +static struct perf_pmu_alias *pmu_find_alias(struct perf_pmu *pmu, +					     struct parse_events_term *term)  { -	struct perf_pmu__alias *alias; +	struct perf_pmu_alias *alias;  	char *name;  	if (parse_events__is_hardcoded_term(term)) @@ -505,8 +519,8 @@ static struct perf_pmu__alias *pmu_find_alias(struct perf_pmu *pmu,   */  int perf_pmu__check_alias(struct perf_pmu *pmu, struct list_head *head_terms)  { -	struct parse_events__term *term, *h; -	struct perf_pmu__alias *alias; +	struct parse_events_term *term, *h; +	struct perf_pmu_alias *alias;  	int ret;  	list_for_each_entry_safe(term, h, head_terms, list) { @@ -525,7 +539,7 @@ int perf_pmu__check_alias(struct perf_pmu *pmu, struct list_head *head_terms)  int perf_pmu__new_format(struct list_head *list, char *name,  			 int config, unsigned long *bits)  { -	struct perf_pmu__format *format; +	struct perf_pmu_format *format;  	format = zalloc(sizeof(*format));  	if (!format) @@ -546,181 +560,7 @@ void perf_pmu__set_format(unsigned long *bits, long from, long to)  	if (!to)  		to = from; -	memset(bits, 0, BITS_TO_LONGS(PERF_PMU_FORMAT_BITS)); +	memset(bits, 0, BITS_TO_BYTES(PERF_PMU_FORMAT_BITS));  	for (b = from; b <= to; b++)  		set_bit(b, bits);  } - -/* Simulated format definitions. */ -static struct test_format { -	const char *name; -	const char *value; -} test_formats[] = { -	{ "krava01", "config:0-1,62-63\n", }, -	{ "krava02", "config:10-17\n", }, -	{ "krava03", "config:5\n", }, -	{ "krava11", "config1:0,2,4,6,8,20-28\n", }, -	{ "krava12", "config1:63\n", }, -	{ "krava13", "config1:45-47\n", }, -	{ "krava21", "config2:0-3,10-13,20-23,30-33,40-43,50-53,60-63\n", }, -	{ "krava22", "config2:8,18,48,58\n", }, -	{ "krava23", "config2:28-29,38\n", }, -}; - -#define TEST_FORMATS_CNT (sizeof(test_formats) / sizeof(struct test_format)) - -/* Simulated users input. */ -static struct parse_events__term test_terms[] = { -	{ -		.config    = (char *) "krava01", -		.val.num   = 15, -		.type_val  = PARSE_EVENTS__TERM_TYPE_NUM, -		.type_term = PARSE_EVENTS__TERM_TYPE_USER, -	}, -	{ -		.config    = (char *) "krava02", -		.val.num   = 170, -		.type_val  = PARSE_EVENTS__TERM_TYPE_NUM, -		.type_term = PARSE_EVENTS__TERM_TYPE_USER, -	}, -	{ -		.config    = (char *) "krava03", -		.val.num   = 1, -		.type_val  = PARSE_EVENTS__TERM_TYPE_NUM, -		.type_term = PARSE_EVENTS__TERM_TYPE_USER, -	}, -	{ -		.config    = (char *) "krava11", -		.val.num   = 27, -		.type_val  = PARSE_EVENTS__TERM_TYPE_NUM, -		.type_term = PARSE_EVENTS__TERM_TYPE_USER, -	}, -	{ -		.config    = (char *) "krava12", -		.val.num   = 1, -		.type_val  = PARSE_EVENTS__TERM_TYPE_NUM, -		.type_term = PARSE_EVENTS__TERM_TYPE_USER, -	}, -	{ -		.config    = (char *) "krava13", -		.val.num   = 2, -		.type_val  = PARSE_EVENTS__TERM_TYPE_NUM, -		.type_term = PARSE_EVENTS__TERM_TYPE_USER, -	}, -	{ -		.config    = (char *) "krava21", -		.val.num   = 119, -		.type_val  = PARSE_EVENTS__TERM_TYPE_NUM, -		.type_term = PARSE_EVENTS__TERM_TYPE_USER, -	}, -	{ -		.config    = (char *) "krava22", -		.val.num   = 11, -		.type_val  = PARSE_EVENTS__TERM_TYPE_NUM, -		.type_term = PARSE_EVENTS__TERM_TYPE_USER, -	}, -	{ -		.config    = (char *) "krava23", -		.val.num   = 2, -		.type_val  = PARSE_EVENTS__TERM_TYPE_NUM, -		.type_term = PARSE_EVENTS__TERM_TYPE_USER, -	}, -}; -#define TERMS_CNT (sizeof(test_terms) / sizeof(struct parse_events__term)) - -/* - * Prepare format directory data, exported by kernel - * at /sys/bus/event_source/devices/<dev>/format. - */ -static char *test_format_dir_get(void) -{ -	static char dir[PATH_MAX]; -	unsigned int i; - -	snprintf(dir, PATH_MAX, "/tmp/perf-pmu-test-format-XXXXXX"); -	if (!mkdtemp(dir)) -		return NULL; - -	for (i = 0; i < TEST_FORMATS_CNT; i++) { -		static char name[PATH_MAX]; -		struct test_format *format = &test_formats[i]; -		FILE *file; - -		snprintf(name, PATH_MAX, "%s/%s", dir, format->name); - -		file = fopen(name, "w"); -		if (!file) -			return NULL; - -		if (1 != fwrite(format->value, strlen(format->value), 1, file)) -			break; - -		fclose(file); -	} - -	return dir; -} - -/* Cleanup format directory. */ -static int test_format_dir_put(char *dir) -{ -	char buf[PATH_MAX]; -	snprintf(buf, PATH_MAX, "rm -f %s/*\n", dir); -	if (system(buf)) -		return -1; - -	snprintf(buf, PATH_MAX, "rmdir %s\n", dir); -	return system(buf); -} - -static struct list_head *test_terms_list(void) -{ -	static LIST_HEAD(terms); -	unsigned int i; - -	for (i = 0; i < TERMS_CNT; i++) -		list_add_tail(&test_terms[i].list, &terms); - -	return &terms; -} - -#undef TERMS_CNT - -int perf_pmu__test(void) -{ -	char *format = test_format_dir_get(); -	LIST_HEAD(formats); -	struct list_head *terms = test_terms_list(); -	int ret; - -	if (!format) -		return -EINVAL; - -	do { -		struct perf_event_attr attr; - -		memset(&attr, 0, sizeof(attr)); - -		ret = pmu_format_parse(format, &formats); -		if (ret) -			break; - -		ret = pmu_config(&formats, &attr, terms); -		if (ret) -			break; - -		ret = -EINVAL; - -		if (attr.config  != 0xc00000000002a823) -			break; -		if (attr.config1 != 0x8000400000000145) -			break; -		if (attr.config2 != 0x0400000020041d07) -			break; - -		ret = 0; -	} while (0); - -	test_format_dir_put(format); -	return ret; -}  |