[PATCH i-g-t] tools/intel_gpu_top: Fix misaligned rendering

Kamil Konieczny kamil.konieczny at linux.intel.com
Mon Jan 15 15:29:07 UTC 2024


Hi anonymoustranquillity,
On 2024-01-14 at 21:26:36 +0000, anonymoustranquillity at proton.me wrote:
> Hello, 
> 
> there seems to be a problem with rendering in the interactive
> mode in intel_gpu_top, seems to be a simple off-by-one. Below
> is a patch. I am new to contributing via email, so I apologize
> if I did something wrong - I tried to follow CONTRIBUTING.md
> to the best of my ability.
> 
> Have a nice day,
> - Ity.

Thank you for patch, if you would like to use git and re-send
with the help of 'git format-patch -1' and then
'git send e-mail 0001-your-first.patch'

Before that setup your real name and e-mail in git configuration,
like "First Last <your at email-address.me>"

If it is too much bother someone can take it from here
but without your real name we cannot give you contribution
(except for link into patchwork).

+cc Tvrtko

Regards,
Kamil

> 
> ---
>  tools/intel_gpu_top.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/intel_gpu_top.c b/tools/intel_gpu_top.c
> index 046ead15a..24363e72f 100644
> --- a/tools/intel_gpu_top.c
> +++ b/tools/intel_gpu_top.c
> @@ -2178,7 +2178,7 @@ print_client(struct igt_drm_client *c, struct engines *engines, double t, int li
>  			len += *class_w;
>  		}
>  
> -		printf(" %-*s\n", con_w - len - 1, c->print_name);
> +		printf(" %-*s\n", con_w - len - 2, c->print_name);
>  	} else if (output_mode == JSON) {
>  		char buf[64];
>  
> -- 
> 2.43.0
> 


More information about the igt-dev mailing list