Browse Source

drm/amdgpu: add eviction counter

Keep track of the number of evictions since boot.

Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Christian König 9 years ago
parent
commit
dbd5ed60ac
2 changed files with 6 additions and 0 deletions
  1. 1 0
      drivers/gpu/drm/amd/amdgpu/amdgpu.h
  2. 5 0
      drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c

+ 1 - 0
drivers/gpu/drm/amd/amdgpu/amdgpu.h

@@ -2042,6 +2042,7 @@ struct amdgpu_device {
 	atomic64_t			vram_vis_usage;
 	atomic64_t			vram_vis_usage;
 	atomic64_t			gtt_usage;
 	atomic64_t			gtt_usage;
 	atomic64_t			num_bytes_moved;
 	atomic64_t			num_bytes_moved;
+	atomic64_t			num_evictions;
 	atomic_t			gpu_reset_counter;
 	atomic_t			gpu_reset_counter;
 
 
 	/* display */
 	/* display */

+ 5 - 0
drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c

@@ -397,6 +397,11 @@ static int amdgpu_bo_move(struct ttm_buffer_object *bo,
 		return -EINVAL;
 		return -EINVAL;
 
 
 	adev = amdgpu_get_adev(bo->bdev);
 	adev = amdgpu_get_adev(bo->bdev);
+
+	/* remember the eviction */
+	if (evict)
+		atomic64_inc(&adev->num_evictions);
+
 	if (old_mem->mem_type == TTM_PL_SYSTEM && bo->ttm == NULL) {
 	if (old_mem->mem_type == TTM_PL_SYSTEM && bo->ttm == NULL) {
 		amdgpu_move_null(bo, new_mem);
 		amdgpu_move_null(bo, new_mem);
 		return 0;
 		return 0;