projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
00c2f6b
)
drm/vram-helper: call the ttm manager debug function
author
Dave Airlie
<airlied@redhat.com>
Tue, 4 Aug 2020 02:55:45 +0000
(12:55 +1000)
committer
Dave Airlie
<airlied@redhat.com>
Thu, 6 Aug 2020 02:16:51 +0000
(12:16 +1000)
This code was assuming there was a drm_mm here, don't do
that call the correct API.
v2: use the new exported interface.
Reviewed-by: Thomas Zimmermann <tzimmermann@suse.de>
Reviewed-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Link:
https://patchwork.freedesktop.org/patch/msgid/20200804025632.3868079-13-airlied@gmail.com
drivers/gpu/drm/drm_gem_vram_helper.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/drm_gem_vram_helper.c
b/drivers/gpu/drm/drm_gem_vram_helper.c
index a93a00966f3ac8cbc7130e0b86e5f65bc4482f33..c20aee2fddf388b8fc072eee991d85689432bae0 100644
(file)
--- a/
drivers/gpu/drm/drm_gem_vram_helper.c
+++ b/
drivers/gpu/drm/drm_gem_vram_helper.c
@@
-1075,12
+1075,10
@@
static int drm_vram_mm_debugfs(struct seq_file *m, void *data)
{
struct drm_info_node *node = (struct drm_info_node *) m->private;
struct drm_vram_mm *vmm = node->minor->dev->vram_mm;
- struct
drm_mm *mm = vmm->bdev.man[TTM_PL_VRAM].priv
;
+ struct
ttm_mem_type_manager *man = &vmm->bdev.man[TTM_PL_VRAM]
;
struct drm_printer p = drm_seq_file_printer(m);
- spin_lock(&ttm_bo_glob.lru_lock);
- drm_mm_print(mm, &p);
- spin_unlock(&ttm_bo_glob.lru_lock);
+ ttm_mem_type_manager_debug(man, &p);
return 0;
}