diff options
author | Tejun Heo <tj@kernel.org> | 2013-02-27 20:04:03 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-02-27 22:10:15 -0500 |
commit | 69ee266b4c890aea7505388c4e394f5757166531 (patch) | |
tree | a135b37603b98044258d27dc4f5951983bc33a17 /drivers/dma | |
parent | 615f2e5c531bc57d5a190f321d697988e950ae4d (diff) |
dmaengine: convert to idr_alloc()
Convert to the much saner new idr interface.
Signed-off-by: Tejun Heo <tj@kernel.org>
Cc: Dan Williams <djbw@fb.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/dma')
-rw-r--r-- | drivers/dma/dmaengine.c | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/drivers/dma/dmaengine.c b/drivers/dma/dmaengine.c index 242b8c0a3de8..b2728d6ba2fd 100644 --- a/drivers/dma/dmaengine.c +++ b/drivers/dma/dmaengine.c | |||
@@ -686,18 +686,14 @@ static int get_dma_id(struct dma_device *device) | |||
686 | { | 686 | { |
687 | int rc; | 687 | int rc; |
688 | 688 | ||
689 | idr_retry: | ||
690 | if (!idr_pre_get(&dma_idr, GFP_KERNEL)) | ||
691 | return -ENOMEM; | ||
692 | mutex_lock(&dma_list_mutex); | 689 | mutex_lock(&dma_list_mutex); |
693 | rc = idr_get_new(&dma_idr, NULL, &device->dev_id); | ||
694 | mutex_unlock(&dma_list_mutex); | ||
695 | if (rc == -EAGAIN) | ||
696 | goto idr_retry; | ||
697 | else if (rc != 0) | ||
698 | return rc; | ||
699 | 690 | ||
700 | return 0; | 691 | rc = idr_alloc(&dma_idr, NULL, 0, 0, GFP_KERNEL); |
692 | if (rc >= 0) | ||
693 | device->dev_id = rc; | ||
694 | |||
695 | mutex_unlock(&dma_list_mutex); | ||
696 | return rc < 0 ? rc : 0; | ||
701 | } | 697 | } |
702 | 698 | ||
703 | /** | 699 | /** |