Re: [Intel-gfx] [PATCH 6/6] drm/i915: Implement fdinfo memory stats printing

2023-09-27 Thread Tvrtko Ursulin
On 27/09/2023 14:23, Tvrtko Ursulin wrote: On 27/09/2023 07:54, Andi Shyti wrote: Hi Tvrtko, Use the newly added drm_print_memory_stats helper to show memory utilisation of our objects in drm/driver specific fdinfo output. To collect the stats we walk the per memory regions object lists an

Re: [Intel-gfx] [PATCH 6/6] drm/i915: Implement fdinfo memory stats printing

2023-09-27 Thread Tvrtko Ursulin
On 27/09/2023 07:54, Andi Shyti wrote: Hi Tvrtko, Use the newly added drm_print_memory_stats helper to show memory utilisation of our objects in drm/driver specific fdinfo output. To collect the stats we walk the per memory regions object lists and accumulate object size into the respective

Re: [Intel-gfx] [PATCH 6/6] drm/i915: Implement fdinfo memory stats printing

2023-09-27 Thread kernel test robot
Hi Tvrtko, kernel test robot noticed the following build warnings: [auto build test WARNING on drm-tip/drm-tip] url: https://github.com/intel-lab-lkp/linux/commits/Tvrtko-Ursulin/drm-i915-Add-ability-for-tracking-buffer-objects-per-client/20230922-214929 base: git://anongit.freedesktop.org

Re: [Intel-gfx] [PATCH 6/6] drm/i915: Implement fdinfo memory stats printing

2023-09-26 Thread Andi Shyti
Hi Tvrtko, > Use the newly added drm_print_memory_stats helper to show memory > utilisation of our objects in drm/driver specific fdinfo output. > > To collect the stats we walk the per memory regions object lists > and accumulate object size into the respective drm_memory_stats > categories. >

Re: [Intel-gfx] [PATCH 6/6] drm/i915: Implement fdinfo memory stats printing

2023-09-26 Thread Iddamsetty, Aravind
On 22-09-2023 19:17, Tvrtko Ursulin wrote: > From: Tvrtko Ursulin > > Use the newly added drm_print_memory_stats helper to show memory > utilisation of our objects in drm/driver specific fdinfo output. > > To collect the stats we walk the per memory regions object lists > and accumulate objec

[Intel-gfx] [PATCH 6/6] drm/i915: Implement fdinfo memory stats printing

2023-09-22 Thread Tvrtko Ursulin
From: Tvrtko Ursulin Use the newly added drm_print_memory_stats helper to show memory utilisation of our objects in drm/driver specific fdinfo output. To collect the stats we walk the per memory regions object lists and accumulate object size into the respective drm_memory_stats categories. v2: