diff options
author | Christian König <christian.koenig@amd.com> | 2017-08-07 09:47:51 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2017-08-17 15:46:01 -0400 |
commit | 97cbb28451c21212cc20f2a5e6c074ba33150c3d (patch) | |
tree | 755660b357958975e12eae60658e8494899405db /drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c | |
parent | 12d4ac584465845af3c7fba090a82c8ee84180d1 (diff) |
drm/amdgpu: move debug print into the MM managers
Instead of the separate switch/case in the calling function.
Signed-off-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c index e0520974e863..8b2c294f6f79 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c | |||
@@ -1641,8 +1641,6 @@ error_free: | |||
1641 | 1641 | ||
1642 | #if defined(CONFIG_DEBUG_FS) | 1642 | #if defined(CONFIG_DEBUG_FS) |
1643 | 1643 | ||
1644 | extern void amdgpu_gtt_mgr_print(struct seq_file *m, struct ttm_mem_type_manager | ||
1645 | *man); | ||
1646 | static int amdgpu_mm_dump_table(struct seq_file *m, void *data) | 1644 | static int amdgpu_mm_dump_table(struct seq_file *m, void *data) |
1647 | { | 1645 | { |
1648 | struct drm_info_node *node = (struct drm_info_node *)m->private; | 1646 | struct drm_info_node *node = (struct drm_info_node *)m->private; |
@@ -1653,17 +1651,6 @@ static int amdgpu_mm_dump_table(struct seq_file *m, void *data) | |||
1653 | struct drm_printer p = drm_seq_file_printer(m); | 1651 | struct drm_printer p = drm_seq_file_printer(m); |
1654 | 1652 | ||
1655 | man->func->debug(man, &p); | 1653 | man->func->debug(man, &p); |
1656 | switch (ttm_pl) { | ||
1657 | case TTM_PL_VRAM: | ||
1658 | seq_printf(m, "man size:%llu pages, ram usage:%lluMB, vis usage:%lluMB\n", | ||
1659 | adev->mman.bdev.man[ttm_pl].size, | ||
1660 | (u64)atomic64_read(&adev->vram_usage) >> 20, | ||
1661 | (u64)atomic64_read(&adev->vram_vis_usage) >> 20); | ||
1662 | break; | ||
1663 | case TTM_PL_TT: | ||
1664 | amdgpu_gtt_mgr_print(m, &adev->mman.bdev.man[TTM_PL_TT]); | ||
1665 | break; | ||
1666 | } | ||
1667 | return 0; | 1654 | return 0; |
1668 | } | 1655 | } |
1669 | 1656 | ||