diff options
| author | Josh Triplett <josh@joshtriplett.org> | 2013-08-20 17:20:16 -0700 | 
|---|---|---|
| committer | Len Brown <len.brown@intel.com> | 2014-01-18 22:34:09 -0500 | 
| commit | 95aebc44e73b05d4e95774b983a63909de638808 (patch) | |
| tree | 90b0ae555877d88f166d651fb938c58b24d301ed /tools/power | |
| parent | 74823419761c11830ea1819365f82cf3d48795cb (diff) | |
| download | linux-95aebc44e73b05d4e95774b983a63909de638808.tar.bz2 | |
turbostat: Add a helper to parse a single int out of a file
Many different chunks of code in turbostat open a file, parse a single
int out of it, and close it.  Factor that out into a common function.
Signed-off-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'tools/power')
| -rw-r--r-- | tools/power/x86/turbostat/turbostat.c | 81 | 
1 files changed, 24 insertions, 57 deletions
diff --git a/tools/power/x86/turbostat/turbostat.c b/tools/power/x86/turbostat/turbostat.c index 4f7b88b035c3..f7b5d6f83d28 100644 --- a/tools/power/x86/turbostat/turbostat.c +++ b/tools/power/x86/turbostat/turbostat.c @@ -21,6 +21,7 @@  #define _GNU_SOURCE  #include MSRHEADER +#include <stdarg.h>  #include <stdio.h>  #include <unistd.h>  #include <sys/types.h> @@ -1174,27 +1175,38 @@ void free_all_buffers(void)  }  /* - * cpu_is_first_sibling_in_core(cpu) - * return 1 if given CPU is 1st HT sibling in the core + * Parse a file containing a single int.   */ -int cpu_is_first_sibling_in_core(int cpu) +int parse_int_file(const char *fmt, ...)  { -	char path[64]; +	va_list args; +	char path[PATH_MAX];  	FILE *filep; -	int first_cpu; +	int value; -	sprintf(path, "/sys/devices/system/cpu/cpu%d/topology/thread_siblings_list", cpu); +	va_start(args, fmt); +	vsnprintf(path, sizeof(path), fmt, args); +	va_end(args);  	filep = fopen(path, "r"); -	if (filep == NULL) { +	if (!filep) {  		perror(path);  		exit(1);  	} -	if (fscanf(filep, "%d", &first_cpu) != 1) { +	if (fscanf(filep, "%d", &value) != 1) {  		perror(path);  		exit(1);  	}  	fclose(filep); -	return (cpu == first_cpu); +	return value; +} + +/* + * cpu_is_first_sibling_in_core(cpu) + * return 1 if given CPU is 1st HT sibling in the core + */ +int cpu_is_first_sibling_in_core(int cpu) +{ +	return cpu == parse_int_file("/sys/devices/system/cpu/cpu%d/topology/thread_siblings_list", cpu);  }  /* @@ -1203,62 +1215,17 @@ int cpu_is_first_sibling_in_core(int cpu)   */  int cpu_is_first_core_in_package(int cpu)  { -	char path[64]; -	FILE *filep; -	int first_cpu; - -	sprintf(path, "/sys/devices/system/cpu/cpu%d/topology/core_siblings_list", cpu); -	filep = fopen(path, "r"); -	if (filep == NULL) { -		perror(path); -		exit(1); -	} -	if (fscanf(filep, "%d", &first_cpu) != 1) { -		perror(path); -		exit(1); -	} -	fclose(filep); -	return (cpu == first_cpu); +	return cpu == parse_int_file("/sys/devices/system/cpu/cpu%d/topology/core_siblings_list", cpu);  }  int get_physical_package_id(int cpu)  { -	char path[80]; -	FILE *filep; -	int pkg; - -	sprintf(path, "/sys/devices/system/cpu/cpu%d/topology/physical_package_id", cpu); -	filep = fopen(path, "r"); -	if (filep == NULL) { -		perror(path); -		exit(1); -	} -	if (fscanf(filep, "%d", &pkg) != 1) { -		perror(path); -		exit(1); -	} -	fclose(filep); -	return pkg; +	return parse_int_file("/sys/devices/system/cpu/cpu%d/topology/physical_package_id", cpu);  }  int get_core_id(int cpu)  { -	char path[80]; -	FILE *filep; -	int core; - -	sprintf(path, "/sys/devices/system/cpu/cpu%d/topology/core_id", cpu); -	filep = fopen(path, "r"); -	if (filep == NULL) { -		perror(path); -		exit(1); -	} -	if (fscanf(filep, "%d", &core) != 1) { -		perror(path); -		exit(1); -	} -	fclose(filep); -	return core; +	return parse_int_file("/sys/devices/system/cpu/cpu%d/topology/core_id", cpu);  }  int get_num_ht_siblings(int cpu)  |