diff options
author | Matthew Wilcox <mawilcox@microsoft.com> | 2018-06-07 20:10:45 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2018-06-07 20:34:39 -0400 |
commit | b94078e69533ba237e2c229bca61bae47e6fafcc (patch) | |
tree | 2122fc9875a583326661ca72092b1b0f325d8ffd /lib | |
parent | ca1250bbd4e0b852cafbc94d4d2610171107b252 (diff) |
lib/idr.c: remove simple_ida_lock
Improve the scalability of the IDA by using the per-IDA xa_lock rather
than the global simple_ida_lock. IDAs are not typically used in
performance-sensitive locations, but since we have this lock anyway, we
can use it. It is also a step towards converting the IDA from the radix
tree to the XArray.
[akpm@linux-foundation.org: idr.c needs xarray.h]
Link: http://lkml.kernel.org/r/20180331125332.GF13332@bombadil.infradead.org
Signed-off-by: Matthew Wilcox <mawilcox@microsoft.com>
Reviewed-by: Andrew Morton <akpm@linux-foundation.org>
Cc: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Tejun Heo <tj@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/idr.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -4,9 +4,9 @@ | |||
4 | #include <linux/idr.h> | 4 | #include <linux/idr.h> |
5 | #include <linux/slab.h> | 5 | #include <linux/slab.h> |
6 | #include <linux/spinlock.h> | 6 | #include <linux/spinlock.h> |
7 | #include <linux/xarray.h> | ||
7 | 8 | ||
8 | DEFINE_PER_CPU(struct ida_bitmap *, ida_bitmap); | 9 | DEFINE_PER_CPU(struct ida_bitmap *, ida_bitmap); |
9 | static DEFINE_SPINLOCK(simple_ida_lock); | ||
10 | 10 | ||
11 | /** | 11 | /** |
12 | * idr_alloc_u32() - Allocate an ID. | 12 | * idr_alloc_u32() - Allocate an ID. |
@@ -581,7 +581,7 @@ again: | |||
581 | if (!ida_pre_get(ida, gfp_mask)) | 581 | if (!ida_pre_get(ida, gfp_mask)) |
582 | return -ENOMEM; | 582 | return -ENOMEM; |
583 | 583 | ||
584 | spin_lock_irqsave(&simple_ida_lock, flags); | 584 | xa_lock_irqsave(&ida->ida_rt, flags); |
585 | ret = ida_get_new_above(ida, start, &id); | 585 | ret = ida_get_new_above(ida, start, &id); |
586 | if (!ret) { | 586 | if (!ret) { |
587 | if (id > max) { | 587 | if (id > max) { |
@@ -591,7 +591,7 @@ again: | |||
591 | ret = id; | 591 | ret = id; |
592 | } | 592 | } |
593 | } | 593 | } |
594 | spin_unlock_irqrestore(&simple_ida_lock, flags); | 594 | xa_unlock_irqrestore(&ida->ida_rt, flags); |
595 | 595 | ||
596 | if (unlikely(ret == -EAGAIN)) | 596 | if (unlikely(ret == -EAGAIN)) |
597 | goto again; | 597 | goto again; |
@@ -615,8 +615,8 @@ void ida_simple_remove(struct ida *ida, unsigned int id) | |||
615 | unsigned long flags; | 615 | unsigned long flags; |
616 | 616 | ||
617 | BUG_ON((int)id < 0); | 617 | BUG_ON((int)id < 0); |
618 | spin_lock_irqsave(&simple_ida_lock, flags); | 618 | xa_lock_irqsave(&ida->ida_rt, flags); |
619 | ida_remove(ida, id); | 619 | ida_remove(ida, id); |
620 | spin_unlock_irqrestore(&simple_ida_lock, flags); | 620 | xa_unlock_irqrestore(&ida->ida_rt, flags); |
621 | } | 621 | } |
622 | EXPORT_SYMBOL(ida_simple_remove); | 622 | EXPORT_SYMBOL(ida_simple_remove); |