summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: fa4ee54)
raw | patch | inline | side by side (parent: fa4ee54)
author | Vincent Brillault <git@lerya.net> | |
Fri, 22 Aug 2014 22:26:22 +0000 (00:26 +0200) | ||
committer | Vincent Brillault <git@lerya.net> | |
Sat, 28 Feb 2015 06:35:40 +0000 (07:35 +0100) |
src/turbostat.c | patch | blob | history |
diff --git a/src/turbostat.c b/src/turbostat.c
index 9337e90f695b100abc3c5d7b8b00f20c00a1a762..5022c5689a012ae5aa6b269cd21df933ea887001 100644 (file)
--- a/src/turbostat.c
+++ b/src/turbostat.c
static unsigned int has_invariant_tsc;
static unsigned int do_nehalem_platform_info;
static int do_smi;
-static unsigned int show_pkg;
-static unsigned int show_core;
-static unsigned int show_cpu;
static unsigned int do_rapl;
static unsigned int do_dts;
static unsigned int do_ptm;
ret = for_all_proc_cpus(count_cpus);
if (ret < 0)
return ret;
- if (topo.num_cpus > 1)
- show_cpu = 1;
DEBUG("num_cpus %d max_cpu_num %d\n", topo.num_cpus, topo.max_cpu_num);
topo.num_cores_per_pkg = max_core_id + 1;
DEBUG("max_core_id %d, sizing for %d cores per package\n",
max_core_id, topo.num_cores_per_pkg);
- if (topo.num_cores_per_pkg > 1)
- show_core = 1;
topo.num_packages = max_package_id + 1;
DEBUG("max_package_id %d, sizing for %d packages\n",
max_package_id, topo.num_packages);
- if (topo.num_packages > 1)
- show_pkg = 1;
topo.num_threads_per_core = max_siblings;
DEBUG("max_siblings %d\n", max_siblings);