diff options
author | Samuel Pitoiset <[email protected]> | 2017-01-23 21:44:45 +0100 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-01-25 15:19:21 +0100 |
commit | cff199ceb7c68db51efc85f34cd45ccede790d4a (patch) | |
tree | a1e2b3390ab294abbeb2a8237c0276c657f567cd /src/gallium/winsys/amdgpu/drm/amdgpu_winsys.h | |
parent | 56495080ed910c8fb7cd02aa5e3b14e0fb823c6d (diff) |
gallium/radeon: add a new HUD query for the number of mapped buffers
Useful when debugging applications which map a ton of buffers
and also because we used to run into Linux's limit on the number
of simultaneous mmap() calls.
v2: - update the commit message
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/winsys/amdgpu/drm/amdgpu_winsys.h')
-rw-r--r-- | src/gallium/winsys/amdgpu/drm/amdgpu_winsys.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/winsys/amdgpu/drm/amdgpu_winsys.h b/src/gallium/winsys/amdgpu/drm/amdgpu_winsys.h index c56c342a53a..b19d9767dad 100644 --- a/src/gallium/winsys/amdgpu/drm/amdgpu_winsys.h +++ b/src/gallium/winsys/amdgpu/drm/amdgpu_winsys.h @@ -64,6 +64,7 @@ struct amdgpu_winsys { uint64_t buffer_wait_time; /* time spent in buffer_wait in ns */ uint64_t num_gfx_IBs; uint64_t num_sdma_IBs; + uint64_t num_mapped_buffers; struct radeon_info info; |