All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH  v2] Fix header-name to read state name and adjust column width
@ 2017-07-31  9:02 Seeteena Thoufeek
  2017-09-25  8:38 ` seeteena
  0 siblings, 1 reply; 5+ messages in thread
From: Seeteena Thoufeek @ 2017-07-31  9:02 UTC (permalink / raw)
  To: trenn, linux-pm, linux-kernel, rafael.j.wysocki; +Cc: s1seetee

The names of the idle states in the output of cpupower monitor
command are truncated to 4 characters. Hence, On POWER9, since
the states are named "stop0, stop1, stop2, stop4, stop11",
this output is ambiguous

root:~# cpupower monitor
               |Idle_Stats
 PKG |CORE|CPU | snoo | stop | stop
    0|   8|   0|  0.00|  0.00|  2.79
    0|   8|   1|  0.00|  0.00| 70.68

In this patch, we modify the output to print the state name
and adjust the column width, that results in a legible output.

root:~#cpupower monitor
              |Idle_Stats
PKG |CORE|CPU |snooze|stop0_li|stop1_li
   0|   8|   0|  0.00|    0.00|   60.04
   0|   8|   1|  0.00|    0.00|   38.97
   0|   8|   2|  0.00|    0.00|    0.00
   0|   8|   3|  0.00|    0.00|    0.00
   0|  12|   4|  0.00|    0.00|   99.25
   0|  12|   5|  0.00|    0.00|    0.00
   0|  12|   6|  0.00|    0.00|   99.71
   0|  12|   7|  0.00|    0.00|   99.85
   8|2048|   8|  0.00|    0.00|   54.66
   8|2048|   9|  0.00|    0.00|    0.00
   8|2048|  10|  0.00|    0.00|    0.00
   8|2048|  11|  0.00|    0.00|   97.83
   8|2052|  12|  0.00|    0.00|    0.00
   8|2052|  13|  0.00|    0.00|    0.00
   8|2052|  14|  0.00|    0.00|    1.99
   8|2052|  15|  0.00|    0.00|   99.87

Tested on POWER8, POWER9 and x86.

Signed-off-by: Seeteena Thoufeek <s1seetee@linux.vnet.ibm.com>
---
 .../cpupower/utils/idle_monitor/cpupower-monitor.c | 47 +++++++++++++++-------
 .../cpupower/utils/idle_monitor/cpupower-monitor.h |  7 +++-
 2 files changed, 37 insertions(+), 17 deletions(-)

diff --git a/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.c b/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.c
index 05f953f..cf3a1ad 100644
--- a/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.c
+++ b/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.c
@@ -21,7 +21,10 @@
 #include "idle_monitor/cpupower-monitor.h"
 #include "idle_monitor/idle_monitors.h"
 #include "helpers/helpers.h"
-
+#define xstr(s) str(s)
+#define str(s) #s
+#define COL_WIDTH_MIN   6
+#define COL_WIDTH_MAX   8
 /* Define pointers to all monitors.  */
 #define DEF(x) & x ## _monitor ,
 struct cpuidle_monitor *all_monitors[] = {
@@ -85,7 +88,7 @@ int fill_string_with_spaces(char *s, int n)
 void print_header(int topology_depth)
 {
 	int unsigned mon;
-	int state, need_len;
+	int state, need_len, name_len;
 	cstate_t s;
 	char buf[128] = "";
 	int percent_width = 4;
@@ -116,17 +119,19 @@ void print_header(int topology_depth)
 	for (mon = 0; mon < avail_monitors; mon++) {
 		if (mon != 0)
 			printf("|| ");
-		else
-			printf(" ");
 		for (state = 0; state < monitors[mon]->hw_states_num; state++) {
 			if (state != 0)
-				printf(" | ");
+				printf("|");
 			s = monitors[mon]->hw_states[state];
-			sprintf(buf, "%s", s.name);
+			name_len = strlen(s.name);
+			if (name_len <= COL_WIDTH_MIN)
+				percent_width = COL_WIDTH_MIN;
+			else
+				percent_width = COL_WIDTH_MAX;
+			sprintf(buf, "%.*s", percent_width, s.name);
 			fill_string_with_spaces(buf, percent_width);
 			printf("%s", buf);
 		}
-		printf(" ");
 	}
 	printf("\n");
 }
@@ -134,11 +139,12 @@ void print_header(int topology_depth)
 
 void print_results(int topology_depth, int cpu)
 {
-	unsigned int mon;
-	int state, ret;
+	unsigned int mon, percent_width, name_len, width;
+	int state, ret, i;
 	double percent;
 	unsigned long long result;
 	cstate_t s;
+	char buf[128] = "";
 
 	/* Be careful CPUs may got resorted for pkg value do not just use cpu */
 	if (!bitmask_isbitset(cpus_chosen, cpu_top.core_info[cpu].cpu))
@@ -163,23 +169,34 @@ void print_results(int topology_depth, int cpu)
 				printf("|");
 
 			s = monitors[mon]->hw_states[state];
-
+			name_len = strlen(s.name);
+			if (name_len > COL_WIDTH_MIN) {
+				percent_width = COL_WIDTH_MAX;
+				width = percent_width - COL_WIDTH_MIN;
+				fill_string_with_spaces(buf, width);
+				printf("%s", buf);
+			}
 			if (s.get_count_percent) {
 				ret = s.get_count_percent(s.id, &percent,
 						  cpu_top.core_info[cpu].cpu);
 				if (ret)
-					printf("******");
+					for (i = 0; i < COL_WIDTH_MIN; i++)
+						printf("*");
 				else if (percent >= 100.0)
-					printf("%6.1f", percent);
+					printf("%"xstr(COL_WIDTH_MIN)".1f",
+						  percent);
 				else
-					printf("%6.2f", percent);
+					printf("%"xstr(COL_WIDTH_MIN)".2f",
+						  percent);
 			} else if (s.get_count) {
 				ret = s.get_count(s.id, &result,
 						  cpu_top.core_info[cpu].cpu);
 				if (ret)
-					printf("******");
+					for (i = 0; i < COL_WIDTH_MIN; i++)
+						printf("*");
 				else
-					printf("%6llu", result);
+					printf("%"xstr(COL_WIDTH_MIN)"llu",
+						  result);
 			} else {
 				printf(_("Monitor %s, Counter %s has no count "
 					 "function. Implementation error\n"),
diff --git a/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.h b/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.h
index 9e43f33..1f6bc23 100644
--- a/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.h
+++ b/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.h
@@ -15,9 +15,12 @@
 
 #define MONITORS_MAX 20
 #define MONITOR_NAME_LEN 20
-#define CSTATE_NAME_LEN 5
+#define CSTATE_NAME_LEN 16
 #define CSTATE_DESC_LEN 60
-
+/*
+ *  CSTATE_NAME_LEN is limited by the CPUIDLE_NAME_LEN defined
+ *  in include/linux/cpuidle.h.
+ */
 int cpu_count;
 
 /* Hard to define the right names ...: */
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH v2] Fix header-name to read state name and adjust column width
  2017-07-31  9:02 [PATCH v2] Fix header-name to read state name and adjust column width Seeteena Thoufeek
@ 2017-09-25  8:38 ` seeteena
  0 siblings, 0 replies; 5+ messages in thread
From: seeteena @ 2017-09-25  8:38 UTC (permalink / raw)
  To: trenn, linux-pm, linux-kernel, rafael.j.wysocki


Any update on this patch ?


On 07/31/2017 02:32 PM, Seeteena Thoufeek wrote:
> The names of the idle states in the output of cpupower monitor
> command are truncated to 4 characters. Hence, On POWER9, since
> the states are named "stop0, stop1, stop2, stop4, stop11",
> this output is ambiguous
>
> root:~# cpupower monitor
>                 |Idle_Stats
>   PKG |CORE|CPU | snoo | stop | stop
>      0|   8|   0|  0.00|  0.00|  2.79
>      0|   8|   1|  0.00|  0.00| 70.68
>
> In this patch, we modify the output to print the state name
> and adjust the column width, that results in a legible output.
>
> root:~#cpupower monitor
>                |Idle_Stats
> PKG |CORE|CPU |snooze|stop0_li|stop1_li
>     0|   8|   0|  0.00|    0.00|   60.04
>     0|   8|   1|  0.00|    0.00|   38.97
>     0|   8|   2|  0.00|    0.00|    0.00
>     0|   8|   3|  0.00|    0.00|    0.00
>     0|  12|   4|  0.00|    0.00|   99.25
>     0|  12|   5|  0.00|    0.00|    0.00
>     0|  12|   6|  0.00|    0.00|   99.71
>     0|  12|   7|  0.00|    0.00|   99.85
>     8|2048|   8|  0.00|    0.00|   54.66
>     8|2048|   9|  0.00|    0.00|    0.00
>     8|2048|  10|  0.00|    0.00|    0.00
>     8|2048|  11|  0.00|    0.00|   97.83
>     8|2052|  12|  0.00|    0.00|    0.00
>     8|2052|  13|  0.00|    0.00|    0.00
>     8|2052|  14|  0.00|    0.00|    1.99
>     8|2052|  15|  0.00|    0.00|   99.87
>
> Tested on POWER8, POWER9 and x86.
>
> Signed-off-by: Seeteena Thoufeek <s1seetee@linux.vnet.ibm.com>
> ---
>   .../cpupower/utils/idle_monitor/cpupower-monitor.c | 47 +++++++++++++++-------
>   .../cpupower/utils/idle_monitor/cpupower-monitor.h |  7 +++-
>   2 files changed, 37 insertions(+), 17 deletions(-)
>
> diff --git a/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.c b/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.c
> index 05f953f..cf3a1ad 100644
> --- a/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.c
> +++ b/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.c
> @@ -21,7 +21,10 @@
>   #include "idle_monitor/cpupower-monitor.h"
>   #include "idle_monitor/idle_monitors.h"
>   #include "helpers/helpers.h"
> -
> +#define xstr(s) str(s)
> +#define str(s) #s
> +#define COL_WIDTH_MIN   6
> +#define COL_WIDTH_MAX   8
>   /* Define pointers to all monitors.  */
>   #define DEF(x) & x ## _monitor ,
>   struct cpuidle_monitor *all_monitors[] = {
> @@ -85,7 +88,7 @@ int fill_string_with_spaces(char *s, int n)
>   void print_header(int topology_depth)
>   {
>   	int unsigned mon;
> -	int state, need_len;
> +	int state, need_len, name_len;
>   	cstate_t s;
>   	char buf[128] = "";
>   	int percent_width = 4;
> @@ -116,17 +119,19 @@ void print_header(int topology_depth)
>   	for (mon = 0; mon < avail_monitors; mon++) {
>   		if (mon != 0)
>   			printf("|| ");
> -		else
> -			printf(" ");
>   		for (state = 0; state < monitors[mon]->hw_states_num; state++) {
>   			if (state != 0)
> -				printf(" | ");
> +				printf("|");
>   			s = monitors[mon]->hw_states[state];
> -			sprintf(buf, "%s", s.name);
> +			name_len = strlen(s.name);
> +			if (name_len <= COL_WIDTH_MIN)
> +				percent_width = COL_WIDTH_MIN;
> +			else
> +				percent_width = COL_WIDTH_MAX;
> +			sprintf(buf, "%.*s", percent_width, s.name);
>   			fill_string_with_spaces(buf, percent_width);
>   			printf("%s", buf);
>   		}
> -		printf(" ");
>   	}
>   	printf("\n");
>   }
> @@ -134,11 +139,12 @@ void print_header(int topology_depth)
>
>   void print_results(int topology_depth, int cpu)
>   {
> -	unsigned int mon;
> -	int state, ret;
> +	unsigned int mon, percent_width, name_len, width;
> +	int state, ret, i;
>   	double percent;
>   	unsigned long long result;
>   	cstate_t s;
> +	char buf[128] = "";
>
>   	/* Be careful CPUs may got resorted for pkg value do not just use cpu */
>   	if (!bitmask_isbitset(cpus_chosen, cpu_top.core_info[cpu].cpu))
> @@ -163,23 +169,34 @@ void print_results(int topology_depth, int cpu)
>   				printf("|");
>
>   			s = monitors[mon]->hw_states[state];
> -
> +			name_len = strlen(s.name);
> +			if (name_len > COL_WIDTH_MIN) {
> +				percent_width = COL_WIDTH_MAX;
> +				width = percent_width - COL_WIDTH_MIN;
> +				fill_string_with_spaces(buf, width);
> +				printf("%s", buf);
> +			}
>   			if (s.get_count_percent) {
>   				ret = s.get_count_percent(s.id, &percent,
>   						  cpu_top.core_info[cpu].cpu);
>   				if (ret)
> -					printf("******");
> +					for (i = 0; i < COL_WIDTH_MIN; i++)
> +						printf("*");
>   				else if (percent >= 100.0)
> -					printf("%6.1f", percent);
> +					printf("%"xstr(COL_WIDTH_MIN)".1f",
> +						  percent);
>   				else
> -					printf("%6.2f", percent);
> +					printf("%"xstr(COL_WIDTH_MIN)".2f",
> +						  percent);
>   			} else if (s.get_count) {
>   				ret = s.get_count(s.id, &result,
>   						  cpu_top.core_info[cpu].cpu);
>   				if (ret)
> -					printf("******");
> +					for (i = 0; i < COL_WIDTH_MIN; i++)
> +						printf("*");
>   				else
> -					printf("%6llu", result);
> +					printf("%"xstr(COL_WIDTH_MIN)"llu",
> +						  result);
>   			} else {
>   				printf(_("Monitor %s, Counter %s has no count "
>   					 "function. Implementation error\n"),
> diff --git a/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.h b/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.h
> index 9e43f33..1f6bc23 100644
> --- a/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.h
> +++ b/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.h
> @@ -15,9 +15,12 @@
>
>   #define MONITORS_MAX 20
>   #define MONITOR_NAME_LEN 20
> -#define CSTATE_NAME_LEN 5
> +#define CSTATE_NAME_LEN 16
>   #define CSTATE_DESC_LEN 60
> -
> +/*
> + *  CSTATE_NAME_LEN is limited by the CPUIDLE_NAME_LEN defined
> + *  in include/linux/cpuidle.h.
> + */
>   int cpu_count;
>
>   /* Hard to define the right names ...: */

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH  v2] Fix header-name to read state name and adjust column width
  2017-07-31  9:20 Seeteena Thoufeek
@ 2017-08-04 10:00 ` Gautham R Shenoy
  0 siblings, 0 replies; 5+ messages in thread
From: Gautham R Shenoy @ 2017-08-04 10:00 UTC (permalink / raw)
  To: Seeteena Thoufeek; +Cc: trenn, linux-pm, linux-kernel

On Mon, Jul 31, 2017 at 02:50:22PM +0530, Seeteena Thoufeek wrote:
> The names of the idle states in the output of cpupower monitor
> command are truncated to 4 characters. Hence, On POWER9, since
> the states are named "stop0, stop1, stop2, stop4, stop11",
> this output is ambiguous
> 
> root:~# cpupower monitor
>                |Idle_Stats
>  PKG |CORE|CPU | snoo | stop | stop
>     0|   8|   0|  0.00|  0.00|  2.79
>     0|   8|   1|  0.00|  0.00| 70.68
> 
> In this patch, we modify the output to print the state name
> and adjust the column width, that results in a legible output.
> 
> root:~#cpupower monitor
>               |Idle_Stats
> PKG |CORE|CPU |snooze|stop0_li|stop1_li
>    0|   8|   0|  0.00|    0.00|   60.04
>    0|   8|   1|  0.00|    0.00|   38.97
>    0|   8|   2|  0.00|    0.00|    0.00
>    0|   8|   3|  0.00|    0.00|    0.00
>    0|  12|   4|  0.00|    0.00|   99.25
>    0|  12|   5|  0.00|    0.00|    0.00
>    0|  12|   6|  0.00|    0.00|   99.71
>    0|  12|   7|  0.00|    0.00|   99.85
>    8|2048|   8|  0.00|    0.00|   54.66
>    8|2048|   9|  0.00|    0.00|    0.00
>    8|2048|  10|  0.00|    0.00|    0.00
>    8|2048|  11|  0.00|    0.00|   97.83
>    8|2052|  12|  0.00|    0.00|    0.00
>    8|2052|  13|  0.00|    0.00|    0.00
>    8|2052|  14|  0.00|    0.00|    1.99
>    8|2052|  15|  0.00|    0.00|   99.87
> 
> Tested on POWER8, POWER9 and x86.

Some comments below.

> 
> Signed-off-by: Seeteena Thoufeek <s1seetee@linux.vnet.ibm.com>
> ---
>  .../cpupower/utils/idle_monitor/cpupower-monitor.c | 47 +++++++++++++++-------
>  .../cpupower/utils/idle_monitor/cpupower-monitor.h |  7 +++-
>  2 files changed, 37 insertions(+), 17 deletions(-)
> 
> diff --git a/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.c b/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.c
> index 05f953f..cf3a1ad 100644
> --- a/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.c
> +++ b/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.c
> @@ -21,7 +21,10 @@
>  #include "idle_monitor/cpupower-monitor.h"
>  #include "idle_monitor/idle_monitors.h"
>  #include "helpers/helpers.h"
> -
> +#define xstr(s) str(s)
> +#define str(s) #s
> +#define COL_WIDTH_MIN   6
> +#define COL_WIDTH_MAX   8
>  /* Define pointers to all monitors.  */
>  #define DEF(x) & x ## _monitor ,
>  struct cpuidle_monitor *all_monitors[] = {
> @@ -85,7 +88,7 @@ int fill_string_with_spaces(char *s, int n)
>  void print_header(int topology_depth)
>  {
>  	int unsigned mon;
> -	int state, need_len;
> +	int state, need_len, name_len;
>  	cstate_t s;
>  	char buf[128] = "";
>  	int percent_width = 4;
> @@ -116,17 +119,19 @@ void print_header(int topology_depth)
>  	for (mon = 0; mon < avail_monitors; mon++) {
>  		if (mon != 0)
>  			printf("|| ");
> -		else
> -			printf(" ");
>  		for (state = 0; state < monitors[mon]->hw_states_num; state++) {
>  			if (state != 0)
> -				printf(" | ");
> +				printf("|");
>  			s = monitors[mon]->hw_states[state];
> -			sprintf(buf, "%s", s.name);
> +			name_len = strlen(s.name);
> +			if (name_len <= COL_WIDTH_MIN)
> +				percent_width = COL_WIDTH_MIN;
> +			else
> +				percent_width = COL_WIDTH_MAX;
> +			sprintf(buf, "%.*s", percent_width, s.name);
>  			fill_string_with_spaces(buf, percent_width);
>  			printf("%s", buf);
>  		}
> -		printf(" ");
>  	}
>  	printf("\n");
>  }
> @@ -134,11 +139,12 @@ void print_header(int topology_depth)
> 
>  void print_results(int topology_depth, int cpu)
>  {
> -	unsigned int mon;
> -	int state, ret;
> +	unsigned int mon, percent_width, name_len, width;
> +	int state, ret, i;
>  	double percent;
>  	unsigned long long result;
>  	cstate_t s;
> +	char buf[128] = "";
> 
>  	/* Be careful CPUs may got resorted for pkg value do not just use cpu */
>  	if (!bitmask_isbitset(cpus_chosen, cpu_top.core_info[cpu].cpu))
> @@ -163,23 +169,34 @@ void print_results(int topology_depth, int cpu)
>  				printf("|");
> 
>  			s = monitors[mon]->hw_states[state];
> -
> +			name_len = strlen(s.name);
> +			if (name_len > COL_WIDTH_MIN) {
> +				percent_width = COL_WIDTH_MAX;
> +				width = percent_width - COL_WIDTH_MIN;
> +				fill_string_with_spaces(buf, width);
> +				printf("%s", buf);
> +			}
>  			if (s.get_count_percent) {
>  				ret = s.get_count_percent(s.id, &percent,
>  						  cpu_top.core_info[cpu].cpu);
>  				if (ret)
> -					printf("******");
> +					for (i = 0; i < COL_WIDTH_MIN; i++)
> +						printf("*");

While this will compile, since the for loop spans over multiple lines,
could you please use braces around the if block ?

>  				else if (percent >= 100.0)
> -					printf("%6.1f", percent);
> +					printf("%"xstr(COL_WIDTH_MIN)".1f",
> +						  percent);

Ditto.
>  				else
> -					printf("%6.2f", percent);
> +					printf("%"xstr(COL_WIDTH_MIN)".2f",
> +						  percent);

Likewise.
>  			} else if (s.get_count) {
>  				ret = s.get_count(s.id, &result,
>  						  cpu_top.core_info[cpu].cpu);
>  				if (ret)
> -					printf("******");
> +					for (i = 0; i < COL_WIDTH_MIN; i++)
> +						printf("*");

Same here.
>  				else
> -					printf("%6llu", result);
> +					printf("%"xstr(COL_WIDTH_MIN)"llu",
> +						  result);

... and here.
>  			} else {
>  				printf(_("Monitor %s, Counter %s has no count "
>  					 "function. Implementation error\n"),
> diff --git a/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.h b/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.h
> index 9e43f33..1f6bc23 100644
> --- a/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.h
> +++ b/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.h
> @@ -15,9 +15,12 @@
> 
>  #define MONITORS_MAX 20
>  #define MONITOR_NAME_LEN 20
> -#define CSTATE_NAME_LEN 5
> +#define CSTATE_NAME_LEN 16
>  #define CSTATE_DESC_LEN 60
> -
> +/*
> + *  CSTATE_NAME_LEN is limited by the CPUIDLE_NAME_LEN defined
> + *  in include/linux/cpuidle.h.
> + */

This comment should go above the definition of CSTATE_NAME_LEN.

>  int cpu_count;
> 
>  /* Hard to define the right names ...: */

Otherwise the patch looks good to me.
> -- 
> 1.8.3.1
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH  v2] Fix header-name to read state name and adjust column width
@ 2017-07-31  9:20 Seeteena Thoufeek
  2017-08-04 10:00 ` Gautham R Shenoy
  0 siblings, 1 reply; 5+ messages in thread
From: Seeteena Thoufeek @ 2017-07-31  9:20 UTC (permalink / raw)
  To: trenn, linux-pm, linux-kernel; +Cc: s1seetee

The names of the idle states in the output of cpupower monitor
command are truncated to 4 characters. Hence, On POWER9, since
the states are named "stop0, stop1, stop2, stop4, stop11",
this output is ambiguous

root:~# cpupower monitor
               |Idle_Stats
 PKG |CORE|CPU | snoo | stop | stop
    0|   8|   0|  0.00|  0.00|  2.79
    0|   8|   1|  0.00|  0.00| 70.68

In this patch, we modify the output to print the state name
and adjust the column width, that results in a legible output.

root:~#cpupower monitor
              |Idle_Stats
PKG |CORE|CPU |snooze|stop0_li|stop1_li
   0|   8|   0|  0.00|    0.00|   60.04
   0|   8|   1|  0.00|    0.00|   38.97
   0|   8|   2|  0.00|    0.00|    0.00
   0|   8|   3|  0.00|    0.00|    0.00
   0|  12|   4|  0.00|    0.00|   99.25
   0|  12|   5|  0.00|    0.00|    0.00
   0|  12|   6|  0.00|    0.00|   99.71
   0|  12|   7|  0.00|    0.00|   99.85
   8|2048|   8|  0.00|    0.00|   54.66
   8|2048|   9|  0.00|    0.00|    0.00
   8|2048|  10|  0.00|    0.00|    0.00
   8|2048|  11|  0.00|    0.00|   97.83
   8|2052|  12|  0.00|    0.00|    0.00
   8|2052|  13|  0.00|    0.00|    0.00
   8|2052|  14|  0.00|    0.00|    1.99
   8|2052|  15|  0.00|    0.00|   99.87

Tested on POWER8, POWER9 and x86.

Signed-off-by: Seeteena Thoufeek <s1seetee@linux.vnet.ibm.com>
---
 .../cpupower/utils/idle_monitor/cpupower-monitor.c | 47 +++++++++++++++-------
 .../cpupower/utils/idle_monitor/cpupower-monitor.h |  7 +++-
 2 files changed, 37 insertions(+), 17 deletions(-)

diff --git a/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.c b/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.c
index 05f953f..cf3a1ad 100644
--- a/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.c
+++ b/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.c
@@ -21,7 +21,10 @@
 #include "idle_monitor/cpupower-monitor.h"
 #include "idle_monitor/idle_monitors.h"
 #include "helpers/helpers.h"
-
+#define xstr(s) str(s)
+#define str(s) #s
+#define COL_WIDTH_MIN   6
+#define COL_WIDTH_MAX   8
 /* Define pointers to all monitors.  */
 #define DEF(x) & x ## _monitor ,
 struct cpuidle_monitor *all_monitors[] = {
@@ -85,7 +88,7 @@ int fill_string_with_spaces(char *s, int n)
 void print_header(int topology_depth)
 {
 	int unsigned mon;
-	int state, need_len;
+	int state, need_len, name_len;
 	cstate_t s;
 	char buf[128] = "";
 	int percent_width = 4;
@@ -116,17 +119,19 @@ void print_header(int topology_depth)
 	for (mon = 0; mon < avail_monitors; mon++) {
 		if (mon != 0)
 			printf("|| ");
-		else
-			printf(" ");
 		for (state = 0; state < monitors[mon]->hw_states_num; state++) {
 			if (state != 0)
-				printf(" | ");
+				printf("|");
 			s = monitors[mon]->hw_states[state];
-			sprintf(buf, "%s", s.name);
+			name_len = strlen(s.name);
+			if (name_len <= COL_WIDTH_MIN)
+				percent_width = COL_WIDTH_MIN;
+			else
+				percent_width = COL_WIDTH_MAX;
+			sprintf(buf, "%.*s", percent_width, s.name);
 			fill_string_with_spaces(buf, percent_width);
 			printf("%s", buf);
 		}
-		printf(" ");
 	}
 	printf("\n");
 }
@@ -134,11 +139,12 @@ void print_header(int topology_depth)
 
 void print_results(int topology_depth, int cpu)
 {
-	unsigned int mon;
-	int state, ret;
+	unsigned int mon, percent_width, name_len, width;
+	int state, ret, i;
 	double percent;
 	unsigned long long result;
 	cstate_t s;
+	char buf[128] = "";
 
 	/* Be careful CPUs may got resorted for pkg value do not just use cpu */
 	if (!bitmask_isbitset(cpus_chosen, cpu_top.core_info[cpu].cpu))
@@ -163,23 +169,34 @@ void print_results(int topology_depth, int cpu)
 				printf("|");
 
 			s = monitors[mon]->hw_states[state];
-
+			name_len = strlen(s.name);
+			if (name_len > COL_WIDTH_MIN) {
+				percent_width = COL_WIDTH_MAX;
+				width = percent_width - COL_WIDTH_MIN;
+				fill_string_with_spaces(buf, width);
+				printf("%s", buf);
+			}
 			if (s.get_count_percent) {
 				ret = s.get_count_percent(s.id, &percent,
 						  cpu_top.core_info[cpu].cpu);
 				if (ret)
-					printf("******");
+					for (i = 0; i < COL_WIDTH_MIN; i++)
+						printf("*");
 				else if (percent >= 100.0)
-					printf("%6.1f", percent);
+					printf("%"xstr(COL_WIDTH_MIN)".1f",
+						  percent);
 				else
-					printf("%6.2f", percent);
+					printf("%"xstr(COL_WIDTH_MIN)".2f",
+						  percent);
 			} else if (s.get_count) {
 				ret = s.get_count(s.id, &result,
 						  cpu_top.core_info[cpu].cpu);
 				if (ret)
-					printf("******");
+					for (i = 0; i < COL_WIDTH_MIN; i++)
+						printf("*");
 				else
-					printf("%6llu", result);
+					printf("%"xstr(COL_WIDTH_MIN)"llu",
+						  result);
 			} else {
 				printf(_("Monitor %s, Counter %s has no count "
 					 "function. Implementation error\n"),
diff --git a/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.h b/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.h
index 9e43f33..1f6bc23 100644
--- a/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.h
+++ b/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.h
@@ -15,9 +15,12 @@
 
 #define MONITORS_MAX 20
 #define MONITOR_NAME_LEN 20
-#define CSTATE_NAME_LEN 5
+#define CSTATE_NAME_LEN 16
 #define CSTATE_DESC_LEN 60
-
+/*
+ *  CSTATE_NAME_LEN is limited by the CPUIDLE_NAME_LEN defined
+ *  in include/linux/cpuidle.h.
+ */
 int cpu_count;
 
 /* Hard to define the right names ...: */
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH  v2] Fix header-name to read state name and adjust column width
@ 2017-07-31  9:07 Seeteena Thoufeek
  0 siblings, 0 replies; 5+ messages in thread
From: Seeteena Thoufeek @ 2017-07-31  9:07 UTC (permalink / raw)
  To: trenn, linux-pm, linux-kernel, rafael.j.wysocki; +Cc: s1seetee

The names of the idle states in the output of cpupower monitor
command are truncated to 4 characters. Hence, On POWER9, since
the states are named "stop0, stop1, stop2, stop4, stop11",
this output is ambiguous

root:~# cpupower monitor
               |Idle_Stats
 PKG |CORE|CPU | snoo | stop | stop
    0|   8|   0|  0.00|  0.00|  2.79
    0|   8|   1|  0.00|  0.00| 70.68

In this patch, we modify the output to print the state name
and adjust the column width, that results in a legible output.

root:~#cpupower monitor
              |Idle_Stats
PKG |CORE|CPU |snooze|stop0_li|stop1_li
   0|   8|   0|  0.00|    0.00|   60.04
   0|   8|   1|  0.00|    0.00|   38.97
   0|   8|   2|  0.00|    0.00|    0.00
   0|   8|   3|  0.00|    0.00|    0.00
   0|  12|   4|  0.00|    0.00|   99.25
   0|  12|   5|  0.00|    0.00|    0.00
   0|  12|   6|  0.00|    0.00|   99.71
   0|  12|   7|  0.00|    0.00|   99.85
   8|2048|   8|  0.00|    0.00|   54.66
   8|2048|   9|  0.00|    0.00|    0.00
   8|2048|  10|  0.00|    0.00|    0.00
   8|2048|  11|  0.00|    0.00|   97.83
   8|2052|  12|  0.00|    0.00|    0.00
   8|2052|  13|  0.00|    0.00|    0.00
   8|2052|  14|  0.00|    0.00|    1.99
   8|2052|  15|  0.00|    0.00|   99.87

Tested on POWER8, POWER9 and x86.

Signed-off-by: Seeteena Thoufeek <s1seetee@linux.vnet.ibm.com>
---
 .../cpupower/utils/idle_monitor/cpupower-monitor.c | 47 +++++++++++++++-------
 .../cpupower/utils/idle_monitor/cpupower-monitor.h |  7 +++-
 2 files changed, 37 insertions(+), 17 deletions(-)

diff --git a/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.c b/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.c
index 05f953f..cf3a1ad 100644
--- a/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.c
+++ b/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.c
@@ -21,7 +21,10 @@
 #include "idle_monitor/cpupower-monitor.h"
 #include "idle_monitor/idle_monitors.h"
 #include "helpers/helpers.h"
-
+#define xstr(s) str(s)
+#define str(s) #s
+#define COL_WIDTH_MIN   6
+#define COL_WIDTH_MAX   8
 /* Define pointers to all monitors.  */
 #define DEF(x) & x ## _monitor ,
 struct cpuidle_monitor *all_monitors[] = {
@@ -85,7 +88,7 @@ int fill_string_with_spaces(char *s, int n)
 void print_header(int topology_depth)
 {
 	int unsigned mon;
-	int state, need_len;
+	int state, need_len, name_len;
 	cstate_t s;
 	char buf[128] = "";
 	int percent_width = 4;
@@ -116,17 +119,19 @@ void print_header(int topology_depth)
 	for (mon = 0; mon < avail_monitors; mon++) {
 		if (mon != 0)
 			printf("|| ");
-		else
-			printf(" ");
 		for (state = 0; state < monitors[mon]->hw_states_num; state++) {
 			if (state != 0)
-				printf(" | ");
+				printf("|");
 			s = monitors[mon]->hw_states[state];
-			sprintf(buf, "%s", s.name);
+			name_len = strlen(s.name);
+			if (name_len <= COL_WIDTH_MIN)
+				percent_width = COL_WIDTH_MIN;
+			else
+				percent_width = COL_WIDTH_MAX;
+			sprintf(buf, "%.*s", percent_width, s.name);
 			fill_string_with_spaces(buf, percent_width);
 			printf("%s", buf);
 		}
-		printf(" ");
 	}
 	printf("\n");
 }
@@ -134,11 +139,12 @@ void print_header(int topology_depth)
 
 void print_results(int topology_depth, int cpu)
 {
-	unsigned int mon;
-	int state, ret;
+	unsigned int mon, percent_width, name_len, width;
+	int state, ret, i;
 	double percent;
 	unsigned long long result;
 	cstate_t s;
+	char buf[128] = "";
 
 	/* Be careful CPUs may got resorted for pkg value do not just use cpu */
 	if (!bitmask_isbitset(cpus_chosen, cpu_top.core_info[cpu].cpu))
@@ -163,23 +169,34 @@ void print_results(int topology_depth, int cpu)
 				printf("|");
 
 			s = monitors[mon]->hw_states[state];
-
+			name_len = strlen(s.name);
+			if (name_len > COL_WIDTH_MIN) {
+				percent_width = COL_WIDTH_MAX;
+				width = percent_width - COL_WIDTH_MIN;
+				fill_string_with_spaces(buf, width);
+				printf("%s", buf);
+			}
 			if (s.get_count_percent) {
 				ret = s.get_count_percent(s.id, &percent,
 						  cpu_top.core_info[cpu].cpu);
 				if (ret)
-					printf("******");
+					for (i = 0; i < COL_WIDTH_MIN; i++)
+						printf("*");
 				else if (percent >= 100.0)
-					printf("%6.1f", percent);
+					printf("%"xstr(COL_WIDTH_MIN)".1f",
+						  percent);
 				else
-					printf("%6.2f", percent);
+					printf("%"xstr(COL_WIDTH_MIN)".2f",
+						  percent);
 			} else if (s.get_count) {
 				ret = s.get_count(s.id, &result,
 						  cpu_top.core_info[cpu].cpu);
 				if (ret)
-					printf("******");
+					for (i = 0; i < COL_WIDTH_MIN; i++)
+						printf("*");
 				else
-					printf("%6llu", result);
+					printf("%"xstr(COL_WIDTH_MIN)"llu",
+						  result);
 			} else {
 				printf(_("Monitor %s, Counter %s has no count "
 					 "function. Implementation error\n"),
diff --git a/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.h b/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.h
index 9e43f33..1f6bc23 100644
--- a/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.h
+++ b/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.h
@@ -15,9 +15,12 @@
 
 #define MONITORS_MAX 20
 #define MONITOR_NAME_LEN 20
-#define CSTATE_NAME_LEN 5
+#define CSTATE_NAME_LEN 16
 #define CSTATE_DESC_LEN 60
-
+/*
+ *  CSTATE_NAME_LEN is limited by the CPUIDLE_NAME_LEN defined
+ *  in include/linux/cpuidle.h.
+ */
 int cpu_count;
 
 /* Hard to define the right names ...: */
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-09-25  8:38 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-07-31  9:02 [PATCH v2] Fix header-name to read state name and adjust column width Seeteena Thoufeek
2017-09-25  8:38 ` seeteena
2017-07-31  9:07 Seeteena Thoufeek
2017-07-31  9:20 Seeteena Thoufeek
2017-08-04 10:00 ` Gautham R Shenoy

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.