]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
drm/todo: remove task for idr_init_base()
authorDanilo Krummrich <dakr@redhat.com>
Fri, 1 Jul 2022 19:02:27 +0000 (21:02 +0200)
committerMaxime Ripard <maxime@cerno.tech>
Thu, 28 Jul 2022 14:36:49 +0000 (16:36 +0200)
All IDRs in the DRM core and drivers which are applicable for using
idr_init_base() over idr_init() should be set up to use a proper base in
order to avoid unnecessary tree walks.

Signed-off-by: Danilo Krummrich <dakr@redhat.com>
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
Link: https://lore.kernel.org/r/20220701190227.284783-3-dakr@redhat.com
Documentation/gpu/todo.rst

index 10bfb50908d1e22eb6216598f2dd90e7be678e69..de226ccc2c542b721be85dbcb47a819d4ea3b5e4 100644 (file)
@@ -322,18 +322,6 @@ Contact: Daniel Vetter, Noralf Tronnes
 
 Level: Advanced
 
-idr_init_base()
----------------
-
-DRM core&drivers uses a lot of idr (integer lookup directories) for mapping
-userspace IDs to internal objects, and in most places ID=0 means NULL and hence
-is never used. Switching to idr_init_base() for these would make the idr more
-efficient.
-
-Contact: Daniel Vetter
-
-Level: Starter
-
 struct drm_gem_object_funcs
 ---------------------------