diff options
author | Shaohua Li <shli@kernel.org> | 2013-10-14 21:05:02 -0400 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2013-10-25 06:55:59 -0400 |
commit | 7fc2ba17e8bf9f218cac10cc2a3de613d9d9086d (patch) | |
tree | 464baa951977743dc1da2dd1a0f595c50dc3e0a8 /lib | |
parent | e26b53d0b287056646a0dffce8bc6b0f053f3823 (diff) |
percpu_ida: add percpu_ida_for_each_free
Add a new API to iterate free ids. blk-mq-tag will use it.
Note, this doesn't guarantee to iterate all free ids restrictly. Caller
should be aware of this. blk-mq uses it to do sanity check for request
timedout, so can tolerate the limitation.
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Shaohua Li <shli@fusionio.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/percpu_ida.c | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/lib/percpu_ida.c b/lib/percpu_ida.c index a601d4259e13..0f51c1b556cf 100644 --- a/lib/percpu_ida.c +++ b/lib/percpu_ida.c | |||
@@ -327,3 +327,47 @@ err: | |||
327 | return -ENOMEM; | 327 | return -ENOMEM; |
328 | } | 328 | } |
329 | EXPORT_SYMBOL_GPL(__percpu_ida_init); | 329 | EXPORT_SYMBOL_GPL(__percpu_ida_init); |
330 | |||
331 | /** | ||
332 | * percpu_ida_for_each_free - iterate free ids of a pool | ||
333 | * @pool: pool to iterate | ||
334 | * @fn: interate callback function | ||
335 | * @data: parameter for @fn | ||
336 | * | ||
337 | * Note, this doesn't guarantee to iterate all free ids restrictly. Some free | ||
338 | * ids might be missed, some might be iterated duplicated, and some might | ||
339 | * be iterated and not free soon. | ||
340 | */ | ||
341 | int percpu_ida_for_each_free(struct percpu_ida *pool, percpu_ida_cb fn, | ||
342 | void *data) | ||
343 | { | ||
344 | unsigned long flags; | ||
345 | struct percpu_ida_cpu *remote; | ||
346 | unsigned cpu, i, err = 0; | ||
347 | |||
348 | local_irq_save(flags); | ||
349 | for_each_possible_cpu(cpu) { | ||
350 | remote = per_cpu_ptr(pool->tag_cpu, cpu); | ||
351 | spin_lock(&remote->lock); | ||
352 | for (i = 0; i < remote->nr_free; i++) { | ||
353 | err = fn(remote->freelist[i], data); | ||
354 | if (err) | ||
355 | break; | ||
356 | } | ||
357 | spin_unlock(&remote->lock); | ||
358 | if (err) | ||
359 | goto out; | ||
360 | } | ||
361 | |||
362 | spin_lock(&pool->lock); | ||
363 | for (i = 0; i < pool->nr_free; i++) { | ||
364 | err = fn(pool->freelist[i], data); | ||
365 | if (err) | ||
366 | break; | ||
367 | } | ||
368 | spin_unlock(&pool->lock); | ||
369 | out: | ||
370 | local_irq_restore(flags); | ||
371 | return err; | ||
372 | } | ||
373 | EXPORT_SYMBOL_GPL(percpu_ida_for_each_free); | ||