drm/qxl/ttm: call ttm manager debug (v2)
authorDave Airlie <airlied@redhat.com>
Tue, 4 Aug 2020 02:55:44 +0000 (12:55 +1000)
committerDave Airlie <airlied@redhat.com>
Thu, 6 Aug 2020 02:16:47 +0000 (12:16 +1000)
v2: use the new exported interface.
This code was poking inside a struct and assuming it was a drm_mm
at the start. Call the proper API.

Reviewed-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200804025632.3868079-12-airlied@gmail.com
drivers/gpu/drm/qxl/qxl_ttm.c

index 32069e4..10109a3 100644 (file)
@@ -280,12 +280,10 @@ void qxl_ttm_fini(struct qxl_device *qdev)
 static int qxl_mm_dump_table(struct seq_file *m, void *data)
 {
        struct drm_info_node *node = (struct drm_info_node *)m->private;
-       struct drm_mm *mm = (struct drm_mm *)node->info_ent->data;
+       struct ttm_mem_type_manager *man = (struct ttm_mem_type_manager *)node->info_ent->data;
        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;
 }
 #endif
@@ -306,9 +304,9 @@ void qxl_ttm_debugfs_init(struct qxl_device *qdev)
                qxl_mem_types_list[i].show = &qxl_mm_dump_table;
                qxl_mem_types_list[i].driver_features = 0;
                if (i == 0)
-                       qxl_mem_types_list[i].data = qdev->mman.bdev.man[TTM_PL_VRAM].priv;
+                       qxl_mem_types_list[i].data = &qdev->mman.bdev.man[TTM_PL_VRAM];
                else
-                       qxl_mem_types_list[i].data = qdev->mman.bdev.man[TTM_PL_PRIV].priv;
+                       qxl_mem_types_list[i].data = &qdev->mman.bdev.man[TTM_PL_PRIV];
 
        }
        qxl_debugfs_add_files(qdev, qxl_mem_types_list, i);