From: Thomas F. <tlf...@li...> - 2014-11-19 00:01:19
|
This patch removes "SMT is on" as a possible output when the smt option is used. Instead, only the number of SMT threads will be displayed. Signed-off-by: Thomas Falcon <tlf...@li...> --- src/ppc64_cpu.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/ppc64_cpu.c b/src/ppc64_cpu.c index 4df4cdc..d0a45c8 100644 --- a/src/ppc64_cpu.c +++ b/src/ppc64_cpu.c @@ -504,8 +504,6 @@ static int do_smt(char *state) if (smt_state == 1) printf("SMT is off\n"); - else if (smt_state == threads_per_cpu) - printf("SMT is on\n"); else if (smt_state == -1) printf("Inconsistent state: mix of ST and SMT cores\n"); else -- 2.1.2 |