]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
drm/virtio: Replace IDRs with IDAs
authorMatthew Wilcox <willy@infradead.org>
Wed, 26 Sep 2018 16:00:28 +0000 (09:00 -0700)
committerGerd Hoffmann <kraxel@redhat.com>
Mon, 29 Oct 2018 21:50:55 +0000 (22:50 +0100)
These IDRs were only being used to allocate unique numbers, not to look
up pointers, so they can use the more space-efficient IDA instead.

Signed-off-by: Matthew Wilcox <willy@infradead.org>
Link: http://patchwork.freedesktop.org/patch/msgid/20180926160031.15721-2-willy@infradead.org
[ kraxel: resolve conflict ]

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
drivers/gpu/drm/virtio/virtgpu_drv.h
drivers/gpu/drm/virtio/virtgpu_kms.c
drivers/gpu/drm/virtio/virtgpu_object.c

index 78ad8f58edff0ef06cf2551d3d5f73b6dc8e368b..6474e83cbf3d5aaea86d03d3c6a8f9f56c1e0331 100644 (file)
@@ -191,8 +191,7 @@ struct virtio_gpu_device {
        struct kmem_cache *vbufs;
        bool vqs_ready;
 
-       struct idr      resource_idr;
-       spinlock_t resource_idr_lock;
+       struct ida      resource_ida;
 
        wait_queue_head_t resp_wq;
        /* current display info */
@@ -201,8 +200,7 @@ struct virtio_gpu_device {
 
        struct virtio_gpu_fence_driver fence_drv;
 
-       struct idr      ctx_id_idr;
-       spinlock_t ctx_id_idr_lock;
+       struct ida      ctx_id_ida;
 
        bool has_virgl_3d;
 
index 65060c08522d79b6df6eaeabe2499d98d67d80c6..e2604fe1b4aeaa39a9fa766e7b17437b0b358693 100644 (file)
@@ -55,21 +55,13 @@ static void virtio_gpu_config_changed_work_func(struct work_struct *work)
 static void virtio_gpu_ctx_id_get(struct virtio_gpu_device *vgdev,
                                  uint32_t *resid)
 {
-       int handle;
-
-       idr_preload(GFP_KERNEL);
-       spin_lock(&vgdev->ctx_id_idr_lock);
-       handle = idr_alloc(&vgdev->ctx_id_idr, NULL, 1, 0, 0);
-       spin_unlock(&vgdev->ctx_id_idr_lock);
-       idr_preload_end();
+       int handle = ida_alloc_min(&vgdev->ctx_id_ida, 1, GFP_KERNEL);
        *resid = handle;
 }
 
 static void virtio_gpu_ctx_id_put(struct virtio_gpu_device *vgdev, uint32_t id)
 {
-       spin_lock(&vgdev->ctx_id_idr_lock);
-       idr_remove(&vgdev->ctx_id_idr, id);
-       spin_unlock(&vgdev->ctx_id_idr_lock);
+       ida_free(&vgdev->ctx_id_ida, id);
 }
 
 static void virtio_gpu_context_create(struct virtio_gpu_device *vgdev,
@@ -151,10 +143,8 @@ int virtio_gpu_driver_load(struct drm_device *dev, unsigned long flags)
        vgdev->dev = dev->dev;
 
        spin_lock_init(&vgdev->display_info_lock);
-       spin_lock_init(&vgdev->ctx_id_idr_lock);
-       idr_init(&vgdev->ctx_id_idr);
-       spin_lock_init(&vgdev->resource_idr_lock);
-       idr_init(&vgdev->resource_idr);
+       ida_init(&vgdev->ctx_id_ida);
+       ida_init(&vgdev->resource_ida);
        init_waitqueue_head(&vgdev->resp_wq);
        virtio_gpu_init_vq(&vgdev->ctrlq, virtio_gpu_dequeue_ctrl_func);
        virtio_gpu_init_vq(&vgdev->cursorq, virtio_gpu_dequeue_cursor_func);
index 8bd1ebe13b623832ff3ecc01086a618586f1904f..77eac4eb06b1da2e1b6f249ccd1a23e1999fffe5 100644 (file)
 static void virtio_gpu_resource_id_get(struct virtio_gpu_device *vgdev,
                                       uint32_t *resid)
 {
-       int handle;
-
-       idr_preload(GFP_KERNEL);
-       spin_lock(&vgdev->resource_idr_lock);
-       handle = idr_alloc(&vgdev->resource_idr, NULL, 1, 0, GFP_NOWAIT);
-       spin_unlock(&vgdev->resource_idr_lock);
-       idr_preload_end();
+       int handle = ida_alloc_min(&vgdev->resource_ida, 1, GFP_KERNEL);
        *resid = handle;
 }
 
 static void virtio_gpu_resource_id_put(struct virtio_gpu_device *vgdev, uint32_t id)
 {
-       spin_lock(&vgdev->resource_idr_lock);
-       idr_remove(&vgdev->resource_idr, id);
-       spin_unlock(&vgdev->resource_idr_lock);
+       ida_free(&vgdev->resource_ida, id);
 }
 
 static void virtio_gpu_ttm_bo_destroy(struct ttm_buffer_object *tbo)