From 2b2c111af498de353e558ba8f8493429f22d0f81 Mon Sep 17 00:00:00 2001 From: Mete Durlu Date: Thu, 27 Apr 2023 09:40:10 +0200 Subject: [PATCH] hyptop: Show thread util by default Since SMT is being used by default on z systems, hyptop should show thread utilization by default on both system and system list window. Reviewed-by: Steffen Eiden Signed-off-by: Mete Durlu Signed-off-by: Steffen Eiden --- hyptop/dg_debugfs_lpar.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hyptop/dg_debugfs_lpar.c b/hyptop/dg_debugfs_lpar.c index a675bf9d..48880855 100644 --- a/hyptop/dg_debugfs_lpar.c +++ b/hyptop/dg_debugfs_lpar.c @@ -311,6 +311,7 @@ static struct sd_sys_item *l_sys_item_vec[] = { static struct sd_sys_item *l_sys_item_enable_vec[] = { &sd_sys_item_core_cnt, &sd_sys_item_core_diff, + &sd_sys_item_thread_diff, &sd_sys_item_mgm_diff, &sd_sys_item_core, &sd_sys_item_mgm, @@ -339,6 +340,7 @@ static struct sd_cpu_item *l_cpu_item_vec[] = { static struct sd_cpu_item *l_cpu_item_enable_vec[] = { &sd_cpu_item_type, &sd_cpu_item_core_diff, + &sd_cpu_item_thread_diff, &sd_cpu_item_mgm_diff, NULL, };