From: Konstantin Khlebnikov Date: Wed, 29 Apr 2020 16:23:41 +0000 (+0300) Subject: perf tools: Simplify checking if SMT is active. X-Git-Tag: v5.15~3782^2~10^2~53 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bb629484d924118e3b1d8652177040115adcba01;p=platform%2Fkernel%2Flinux-starfive.git perf tools: Simplify checking if SMT is active. SMT now could be disabled via "/sys/devices/system/cpu/smt/control". Status is shown in "/sys/devices/system/cpu/smt/active" simply as "0" / "1". If this knob isn't here then fallback to checking topology as before. Signed-off-by: Konstantin Khlebnikov Cc: Andi Kleen Cc: Dmitry Monakhov Cc: Jiri Olsa Cc: Kan Liang Cc: Peter Zijlstra Link: http://lore.kernel.org/lkml/158817741394.748034.9273604089138009552.stgit@buzz Signed-off-by: Arnaldo Carvalho de Melo --- diff --git a/tools/perf/util/smt.c b/tools/perf/util/smt.c index 8481842..20bacd5 100644 --- a/tools/perf/util/smt.c +++ b/tools/perf/util/smt.c @@ -15,6 +15,9 @@ int smt_on(void) if (cached) return cached_result; + if (sysfs__read_int("devices/system/cpu/smt/active", &cached_result) > 0) + goto done; + ncpu = sysconf(_SC_NPROCESSORS_CONF); for (cpu = 0; cpu < ncpu; cpu++) { unsigned long long siblings; @@ -42,6 +45,7 @@ int smt_on(void) } if (!cached) { cached_result = 0; +done: cached = true; } return cached_result;