[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <83e5daa0708729d4a3b6fda61c6ab8d70e501606.1442263513.git.lduncan@suse.com>
Date: Wed, 16 Sep 2015 10:50:27 -0700
From: Lee Duncan <lduncan@...e.com>
To: linux-scsi@...r.kernel.org, James.Bottomley@...senPartnership.com
Cc: linux-kernel@...r.kernel.org, hare@...e.com, jthumshirn@...e.de,
hch@...radead.org, Lee Duncan <lduncan@...e.com>,
Gerd Hoffmann <kraxel@...hat.com>
Subject: [PATCH 09/17] Update the virtgpu driver to use idr helper functions.
Signed-off-by: Lee Duncan <lduncan@...e.com>
---
drivers/gpu/drm/virtio/virtgpu_vq.c | 15 ++++-----------
1 file changed, 4 insertions(+), 11 deletions(-)
diff --git a/drivers/gpu/drm/virtio/virtgpu_vq.c b/drivers/gpu/drm/virtio/virtgpu_vq.c
index 1698669f4185..380947dad306 100644
--- a/drivers/gpu/drm/virtio/virtgpu_vq.c
+++ b/drivers/gpu/drm/virtio/virtgpu_vq.c
@@ -41,21 +41,14 @@
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();
- *resid = handle;
+ *resid = idr_get_index_in_range(&vgdev->resource_idr,
+ &vgdev->resource_idr_lock,
+ NULL, 1, 0);
}
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);
+ idr_put_index(&vgdev->resource_idr, &vgdev->resource_idr_lock, id);
}
void virtio_gpu_ctrl_ack(struct virtqueue *vq)
--
2.1.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists