drm/ttm: fix resource manager size type and description
authorChristian König <christian.koenig@amd.com>
Mon, 14 Feb 2022 06:28:38 +0000 (07:28 +0100)
committerChristian König <christian.koenig@amd.com>
Mon, 14 Feb 2022 13:34:36 +0000 (14:34 +0100)
Leave the man->size units as driver defined.

Signed-off-by: Christian König <christian.koenig@amd.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220214093439.2989-1-christian.koenig@amd.com
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
drivers/gpu/drm/ttm/ttm_resource.c
include/drm/ttm/ttm_resource.h

index 68344c9..8204b70 100644 (file)
@@ -153,19 +153,19 @@ void ttm_resource_set_bo(struct ttm_resource *res,
  *
  * @man: memory manager object to init
  * @bdev: ttm device this manager belongs to
- * @p_size: size managed area in pages.
+ * @size: size of managed resources in arbitrary units
  *
  * Initialise core parts of a manager object.
  */
 void ttm_resource_manager_init(struct ttm_resource_manager *man,
                               struct ttm_device *bdev,
-                              unsigned long p_size)
+                              uint64_t size)
 {
        unsigned i;
 
        spin_lock_init(&man->move_lock);
        man->bdev = bdev;
-       man->size = p_size;
+       man->size = size;
 
        for (i = 0; i < TTM_MAX_BO_PRIORITY; ++i)
                INIT_LIST_HEAD(&man->lru[i]);
index 69eea9d..555a11f 100644 (file)
@@ -278,7 +278,7 @@ void ttm_resource_set_bo(struct ttm_resource *res,
 
 void ttm_resource_manager_init(struct ttm_resource_manager *man,
                               struct ttm_device *bdev,
-                              unsigned long p_size);
+                              uint64_t size);
 
 int ttm_resource_manager_evict_all(struct ttm_device *bdev,
                                   struct ttm_resource_manager *man);