Hi Tvrtko,
On 2023-10-12 at 09:15:42 +0100, Tvrtko Ursulin wrote:
> From: Tvrtko Ursulin <[email protected]>
> 
> I will need some record of which regions were found for intel_gpu_top so
> lets just copy over the region name from the map on the first match.
> 
> Signed-off-by: Tvrtko Ursulin <[email protected]>

Reviewed-by: Kamil Konieczny <[email protected]>

> ---
>  lib/igt_drm_fdinfo.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/lib/igt_drm_fdinfo.c b/lib/igt_drm_fdinfo.c
> index b72822894782..222ccbfb1fd6 100644
> --- a/lib/igt_drm_fdinfo.c
> +++ b/lib/igt_drm_fdinfo.c
> @@ -148,6 +148,10 @@ static int parse_region(char *line, struct 
> drm_client_fdinfo *info,
>               for (i = 0; i < region_entries; i++) {
>                       if (!strncmp(name, region_map[i], name_len)) {
>                               found = i;
> +                             if (!info->region_names[info->num_regions][0]) {
> +                                     assert(name_len < 
> sizeof(info->region_names[i]));
> +                                     strncpy(info->region_names[i], name, 
> name_len);
> +                             }
>                               break;
>                       }
>               }
> -- 
> 2.39.2
> 

Reply via email to