blob: bde6eecb0e87c069df5eb678376e7280ae8f0eac [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * 2002-10-18 written by Jim Houston jim.houston@ccur.com
3 * Copyright (C) 2002 by Concurrent Computer Corporation
4 * Distributed under the GNU GPL license version 2.
5 *
6 * Modified by George Anzinger to reuse immediately and to use
7 * find bit instructions. Also removed _irq on spinlocks.
8 *
Nadia Derbey3219b3b2008-07-25 01:48:00 -07009 * Modified by Nadia Derbey to make it RCU safe.
10 *
Jesper Juhle15ae2d2005-10-30 15:02:14 -080011 * Small id to pointer translation service.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 *
Jesper Juhle15ae2d2005-10-30 15:02:14 -080013 * It uses a radix tree like structure as a sparse array indexed
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * by the id to obtain the pointer. The bitmap makes allocating
Jesper Juhle15ae2d2005-10-30 15:02:14 -080015 * a new id quick.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 *
17 * You call it to allocate an id (an int) an associate with that id a
18 * pointer or what ever, we treat it as a (void *). You can pass this
19 * id to a user for him to pass back at a later time. You then pass
20 * that id to this code and it returns your pointer.
21
Jesper Juhle15ae2d2005-10-30 15:02:14 -080022 * You can release ids at any time. When all ids are released, most of
Fengguang Wu125c4c72012-10-04 17:13:15 -070023 * the memory is returned (we keep MAX_IDR_FREE) in a local pool so we
Jesper Juhle15ae2d2005-10-30 15:02:14 -080024 * don't need to go to the memory "store" during an id allocate, just
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 * so you don't need to be too concerned about locking and conflicts
26 * with the slab allocator.
27 */
28
29#ifndef TEST // to test in user space...
30#include <linux/slab.h>
31#include <linux/init.h>
Paul Gortmaker8bc3bcc2011-11-16 21:29:17 -050032#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#endif
Jeff Mahoney5806f072006-06-26 00:27:19 -070034#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/string.h>
36#include <linux/idr.h>
Rusty Russell88eca022011-08-03 16:21:06 -070037#include <linux/spinlock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Christoph Lametere18b8902006-12-06 20:33:20 -080039static struct kmem_cache *idr_layer_cache;
Rusty Russell88eca022011-08-03 16:21:06 -070040static DEFINE_SPINLOCK(simple_ida_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Nadia Derbey4ae53782008-07-25 01:47:58 -070042static struct idr_layer *get_from_free_list(struct idr *idp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043{
44 struct idr_layer *p;
Roland Dreierc259cc22006-07-14 00:24:23 -070045 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Roland Dreierc259cc22006-07-14 00:24:23 -070047 spin_lock_irqsave(&idp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 if ((p = idp->id_free)) {
49 idp->id_free = p->ary[0];
50 idp->id_free_cnt--;
51 p->ary[0] = NULL;
52 }
Roland Dreierc259cc22006-07-14 00:24:23 -070053 spin_unlock_irqrestore(&idp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 return(p);
55}
56
Nadia Derbeycf481c22008-07-25 01:48:02 -070057static void idr_layer_rcu_free(struct rcu_head *head)
58{
59 struct idr_layer *layer;
60
61 layer = container_of(head, struct idr_layer, rcu_head);
62 kmem_cache_free(idr_layer_cache, layer);
63}
64
65static inline void free_layer(struct idr_layer *p)
66{
67 call_rcu(&p->rcu_head, idr_layer_rcu_free);
68}
69
Sonny Rao1eec0052006-06-25 05:49:34 -070070/* only called when idp->lock is held */
Nadia Derbey4ae53782008-07-25 01:47:58 -070071static void __move_to_free_list(struct idr *idp, struct idr_layer *p)
Sonny Rao1eec0052006-06-25 05:49:34 -070072{
73 p->ary[0] = idp->id_free;
74 idp->id_free = p;
75 idp->id_free_cnt++;
76}
77
Nadia Derbey4ae53782008-07-25 01:47:58 -070078static void move_to_free_list(struct idr *idp, struct idr_layer *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
Roland Dreierc259cc22006-07-14 00:24:23 -070080 unsigned long flags;
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 /*
83 * Depends on the return element being zeroed.
84 */
Roland Dreierc259cc22006-07-14 00:24:23 -070085 spin_lock_irqsave(&idp->lock, flags);
Nadia Derbey4ae53782008-07-25 01:47:58 -070086 __move_to_free_list(idp, p);
Roland Dreierc259cc22006-07-14 00:24:23 -070087 spin_unlock_irqrestore(&idp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
Tejun Heoe33ac8b2007-06-14 03:45:12 +090090static void idr_mark_full(struct idr_layer **pa, int id)
91{
92 struct idr_layer *p = pa[0];
93 int l = 0;
94
95 __set_bit(id & IDR_MASK, &p->bitmap);
96 /*
97 * If this layer is full mark the bit in the layer above to
98 * show that this part of the radix tree is full. This may
99 * complete the layer above and require walking up the radix
100 * tree.
101 */
102 while (p->bitmap == IDR_FULL) {
103 if (!(p = pa[++l]))
104 break;
105 id = id >> IDR_BITS;
106 __set_bit((id & IDR_MASK), &p->bitmap);
107 }
108}
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110/**
Randy Dunlap56083ab2010-10-26 14:19:08 -0700111 * idr_pre_get - reserve resources for idr allocation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 * @idp: idr handle
113 * @gfp_mask: memory allocation flags
114 *
Naohiro Aota066a9be2010-10-26 14:23:03 -0700115 * This function should be called prior to calling the idr_get_new* functions.
116 * It preallocates enough memory to satisfy the worst possible allocation. The
117 * caller should pass in GFP_KERNEL if possible. This of course requires that
118 * no spinning locks be held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 *
Randy Dunlap56083ab2010-10-26 14:19:08 -0700120 * If the system is REALLY out of memory this function returns %0,
121 * otherwise %1.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 */
Al Virofd4f2df2005-10-21 03:18:50 -0400123int idr_pre_get(struct idr *idp, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Fengguang Wu125c4c72012-10-04 17:13:15 -0700125 while (idp->id_free_cnt < MAX_IDR_FREE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 struct idr_layer *new;
Andrew Morton5b019e92009-01-15 13:51:21 -0800127 new = kmem_cache_zalloc(idr_layer_cache, gfp_mask);
Jesper Juhle15ae2d2005-10-30 15:02:14 -0800128 if (new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 return (0);
Nadia Derbey4ae53782008-07-25 01:47:58 -0700130 move_to_free_list(idp, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 }
132 return 1;
133}
134EXPORT_SYMBOL(idr_pre_get);
135
Tejun Heo12d1b432013-02-27 17:03:53 -0800136/**
137 * sub_alloc - try to allocate an id without growing the tree depth
138 * @idp: idr handle
139 * @starting_id: id to start search at
140 * @id: pointer to the allocated handle
141 * @pa: idr_layer[MAX_IDR_LEVEL] used as backtrack buffer
142 *
143 * Allocate an id in range [@starting_id, INT_MAX] from @idp without
144 * growing its depth. Returns
145 *
146 * the allocated id >= 0 if successful,
147 * -EAGAIN if the tree needs to grow for allocation to succeed,
148 * -ENOSPC if the id space is exhausted,
149 * -ENOMEM if more idr_layers need to be allocated.
150 */
Tejun Heoe33ac8b2007-06-14 03:45:12 +0900151static int sub_alloc(struct idr *idp, int *starting_id, struct idr_layer **pa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
153 int n, m, sh;
154 struct idr_layer *p, *new;
Tejun Heo7aae6dd2007-06-14 03:45:12 +0900155 int l, id, oid;
Al Viro5ba25332007-10-14 19:35:50 +0100156 unsigned long bm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 id = *starting_id;
Tejun Heo7aae6dd2007-06-14 03:45:12 +0900159 restart:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 p = idp->top;
161 l = idp->layers;
162 pa[l--] = NULL;
163 while (1) {
164 /*
165 * We run around this while until we reach the leaf node...
166 */
167 n = (id >> (IDR_BITS*l)) & IDR_MASK;
168 bm = ~p->bitmap;
169 m = find_next_bit(&bm, IDR_SIZE, n);
170 if (m == IDR_SIZE) {
171 /* no space available go back to previous layer. */
172 l++;
Tejun Heo7aae6dd2007-06-14 03:45:12 +0900173 oid = id;
Jesper Juhle15ae2d2005-10-30 15:02:14 -0800174 id = (id | ((1 << (IDR_BITS * l)) - 1)) + 1;
Tejun Heo7aae6dd2007-06-14 03:45:12 +0900175
176 /* if already at the top layer, we need to grow */
Tejun Heod2e72762010-02-22 12:44:19 -0800177 if (id >= 1 << (idp->layers * IDR_BITS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 *starting_id = id;
Tejun Heo12d1b432013-02-27 17:03:53 -0800179 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 }
Tejun Heod2e72762010-02-22 12:44:19 -0800181 p = pa[l];
182 BUG_ON(!p);
Tejun Heo7aae6dd2007-06-14 03:45:12 +0900183
184 /* If we need to go up one layer, continue the
185 * loop; otherwise, restart from the top.
186 */
187 sh = IDR_BITS * (l + 1);
188 if (oid >> sh == id >> sh)
189 continue;
190 else
191 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 }
193 if (m != n) {
194 sh = IDR_BITS*l;
195 id = ((id >> sh) ^ n ^ m) << sh;
196 }
Fengguang Wu125c4c72012-10-04 17:13:15 -0700197 if ((id >= MAX_IDR_BIT) || (id < 0))
Tejun Heo12d1b432013-02-27 17:03:53 -0800198 return -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 if (l == 0)
200 break;
201 /*
202 * Create the layer below if it is missing.
203 */
204 if (!p->ary[m]) {
Nadia Derbey4ae53782008-07-25 01:47:58 -0700205 new = get_from_free_list(idp);
206 if (!new)
Tejun Heo12d1b432013-02-27 17:03:53 -0800207 return -ENOMEM;
Manfred Spraul6ff2d392008-12-01 13:14:02 -0800208 new->layer = l-1;
Nadia Derbey3219b3b2008-07-25 01:48:00 -0700209 rcu_assign_pointer(p->ary[m], new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 p->count++;
211 }
212 pa[l--] = p;
213 p = p->ary[m];
214 }
Tejun Heoe33ac8b2007-06-14 03:45:12 +0900215
216 pa[l] = p;
217 return id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
Tejun Heoe33ac8b2007-06-14 03:45:12 +0900220static int idr_get_empty_slot(struct idr *idp, int starting_id,
221 struct idr_layer **pa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 struct idr_layer *p, *new;
224 int layers, v, id;
Roland Dreierc259cc22006-07-14 00:24:23 -0700225 unsigned long flags;
Jesper Juhle15ae2d2005-10-30 15:02:14 -0800226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 id = starting_id;
228build_up:
229 p = idp->top;
230 layers = idp->layers;
231 if (unlikely(!p)) {
Nadia Derbey4ae53782008-07-25 01:47:58 -0700232 if (!(p = get_from_free_list(idp)))
Tejun Heo12d1b432013-02-27 17:03:53 -0800233 return -ENOMEM;
Manfred Spraul6ff2d392008-12-01 13:14:02 -0800234 p->layer = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 layers = 1;
236 }
237 /*
238 * Add a new layer to the top of the tree if the requested
239 * id is larger than the currently allocated space.
240 */
Fengguang Wu125c4c72012-10-04 17:13:15 -0700241 while ((layers < (MAX_IDR_LEVEL - 1)) && (id >= (1 << (layers*IDR_BITS)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 layers++;
Manfred Spraul711a49a2008-12-10 18:17:06 +0100243 if (!p->count) {
244 /* special case: if the tree is currently empty,
245 * then we grow the tree by moving the top node
246 * upwards.
247 */
248 p->layer++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 continue;
Manfred Spraul711a49a2008-12-10 18:17:06 +0100250 }
Nadia Derbey4ae53782008-07-25 01:47:58 -0700251 if (!(new = get_from_free_list(idp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 /*
253 * The allocation failed. If we built part of
254 * the structure tear it down.
255 */
Roland Dreierc259cc22006-07-14 00:24:23 -0700256 spin_lock_irqsave(&idp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 for (new = p; p && p != idp->top; new = p) {
258 p = p->ary[0];
259 new->ary[0] = NULL;
260 new->bitmap = new->count = 0;
Nadia Derbey4ae53782008-07-25 01:47:58 -0700261 __move_to_free_list(idp, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 }
Roland Dreierc259cc22006-07-14 00:24:23 -0700263 spin_unlock_irqrestore(&idp->lock, flags);
Tejun Heo12d1b432013-02-27 17:03:53 -0800264 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 }
266 new->ary[0] = p;
267 new->count = 1;
Manfred Spraul6ff2d392008-12-01 13:14:02 -0800268 new->layer = layers-1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 if (p->bitmap == IDR_FULL)
270 __set_bit(0, &new->bitmap);
271 p = new;
272 }
Nadia Derbey3219b3b2008-07-25 01:48:00 -0700273 rcu_assign_pointer(idp->top, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 idp->layers = layers;
Tejun Heoe33ac8b2007-06-14 03:45:12 +0900275 v = sub_alloc(idp, &id, pa);
Tejun Heo12d1b432013-02-27 17:03:53 -0800276 if (v == -EAGAIN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 goto build_up;
278 return(v);
279}
280
Tejun Heoe33ac8b2007-06-14 03:45:12 +0900281static int idr_get_new_above_int(struct idr *idp, void *ptr, int starting_id)
282{
Fengguang Wu125c4c72012-10-04 17:13:15 -0700283 struct idr_layer *pa[MAX_IDR_LEVEL];
Tejun Heoe33ac8b2007-06-14 03:45:12 +0900284 int id;
285
286 id = idr_get_empty_slot(idp, starting_id, pa);
287 if (id >= 0) {
288 /*
289 * Successfully found an empty slot. Install the user
290 * pointer and mark the slot full.
291 */
Nadia Derbey3219b3b2008-07-25 01:48:00 -0700292 rcu_assign_pointer(pa[0]->ary[id & IDR_MASK],
293 (struct idr_layer *)ptr);
Tejun Heoe33ac8b2007-06-14 03:45:12 +0900294 pa[0]->count++;
295 idr_mark_full(pa, id);
296 }
297
298 return id;
299}
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301/**
John McCutchan7c657f22005-08-26 14:02:04 -0400302 * idr_get_new_above - allocate new idr entry above or equal to a start id
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 * @idp: idr handle
Thadeu Lima de Souza Cascardo94e2bd62009-10-16 15:20:49 +0200304 * @ptr: pointer you want associated with the id
Naohiro Aotaea24ea82010-08-31 00:37:03 +0900305 * @starting_id: id to start search at
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 * @id: pointer to the allocated handle
307 *
308 * This is the allocate id function. It should be called with any
309 * required locks.
310 *
Naohiro Aota066a9be2010-10-26 14:23:03 -0700311 * If allocation from IDR's private freelist fails, idr_get_new_above() will
Randy Dunlap56083ab2010-10-26 14:19:08 -0700312 * return %-EAGAIN. The caller should retry the idr_pre_get() call to refill
Naohiro Aota066a9be2010-10-26 14:23:03 -0700313 * IDR's preallocation and then retry the idr_get_new_above() call.
314 *
Randy Dunlap56083ab2010-10-26 14:19:08 -0700315 * If the idr is full idr_get_new_above() will return %-ENOSPC.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 *
Randy Dunlap56083ab2010-10-26 14:19:08 -0700317 * @id returns a value in the range @starting_id ... %0x7fffffff
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 */
319int idr_get_new_above(struct idr *idp, void *ptr, int starting_id, int *id)
320{
321 int rv;
Jesper Juhle15ae2d2005-10-30 15:02:14 -0800322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 rv = idr_get_new_above_int(idp, ptr, starting_id);
Nadia Derbey944ca052008-07-25 01:47:59 -0700324 if (rv < 0)
Tejun Heo12d1b432013-02-27 17:03:53 -0800325 return rv == -ENOMEM ? -EAGAIN : rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 *id = rv;
327 return 0;
328}
329EXPORT_SYMBOL(idr_get_new_above);
330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331static void idr_remove_warning(int id)
332{
Nadia Derbeyf098ad62008-07-25 01:47:59 -0700333 printk(KERN_WARNING
334 "idr_remove called for id=%d which is not allocated.\n", id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 dump_stack();
336}
337
338static void sub_remove(struct idr *idp, int shift, int id)
339{
340 struct idr_layer *p = idp->top;
Fengguang Wu125c4c72012-10-04 17:13:15 -0700341 struct idr_layer **pa[MAX_IDR_LEVEL];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 struct idr_layer ***paa = &pa[0];
Nadia Derbeycf481c22008-07-25 01:48:02 -0700343 struct idr_layer *to_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 int n;
345
346 *paa = NULL;
347 *++paa = &idp->top;
348
349 while ((shift > 0) && p) {
350 n = (id >> shift) & IDR_MASK;
351 __clear_bit(n, &p->bitmap);
352 *++paa = &p->ary[n];
353 p = p->ary[n];
354 shift -= IDR_BITS;
355 }
356 n = id & IDR_MASK;
357 if (likely(p != NULL && test_bit(n, &p->bitmap))){
358 __clear_bit(n, &p->bitmap);
Nadia Derbeycf481c22008-07-25 01:48:02 -0700359 rcu_assign_pointer(p->ary[n], NULL);
360 to_free = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 while(*paa && ! --((**paa)->count)){
Nadia Derbeycf481c22008-07-25 01:48:02 -0700362 if (to_free)
363 free_layer(to_free);
364 to_free = **paa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 **paa-- = NULL;
366 }
Jesper Juhle15ae2d2005-10-30 15:02:14 -0800367 if (!*paa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 idp->layers = 0;
Nadia Derbeycf481c22008-07-25 01:48:02 -0700369 if (to_free)
370 free_layer(to_free);
Jesper Juhle15ae2d2005-10-30 15:02:14 -0800371 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 idr_remove_warning(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373}
374
375/**
Randy Dunlap56083ab2010-10-26 14:19:08 -0700376 * idr_remove - remove the given id and free its slot
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800377 * @idp: idr handle
378 * @id: unique key
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 */
380void idr_remove(struct idr *idp, int id)
381{
382 struct idr_layer *p;
Nadia Derbeycf481c22008-07-25 01:48:02 -0700383 struct idr_layer *to_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 /* Mask off upper bits we don't use for the search. */
Fengguang Wu125c4c72012-10-04 17:13:15 -0700386 id &= MAX_IDR_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 sub_remove(idp, (idp->layers - 1) * IDR_BITS, id);
Jesper Juhle15ae2d2005-10-30 15:02:14 -0800389 if (idp->top && idp->top->count == 1 && (idp->layers > 1) &&
Nadia Derbeycf481c22008-07-25 01:48:02 -0700390 idp->top->ary[0]) {
391 /*
392 * Single child at leftmost slot: we can shrink the tree.
393 * This level is not needed anymore since when layers are
394 * inserted, they are inserted at the top of the existing
395 * tree.
396 */
397 to_free = idp->top;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 p = idp->top->ary[0];
Nadia Derbeycf481c22008-07-25 01:48:02 -0700399 rcu_assign_pointer(idp->top, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 --idp->layers;
Nadia Derbeycf481c22008-07-25 01:48:02 -0700401 to_free->bitmap = to_free->count = 0;
402 free_layer(to_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
Fengguang Wu125c4c72012-10-04 17:13:15 -0700404 while (idp->id_free_cnt >= MAX_IDR_FREE) {
Nadia Derbey4ae53782008-07-25 01:47:58 -0700405 p = get_from_free_list(idp);
Nadia Derbeycf481c22008-07-25 01:48:02 -0700406 /*
407 * Note: we don't call the rcu callback here, since the only
408 * layers that fall into the freelist are those that have been
409 * preallocated.
410 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 kmem_cache_free(idr_layer_cache, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
Nadia Derbeyaf8e2a42008-05-01 04:34:57 -0700413 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414}
415EXPORT_SYMBOL(idr_remove);
416
Tejun Heofe6e24e2013-02-27 17:03:50 -0800417void __idr_remove_all(struct idr *idp)
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700418{
Oleg Nesterov6ace06dc2007-07-31 00:39:19 -0700419 int n, id, max;
Imre Deak2dcb22b2010-05-26 14:43:38 -0700420 int bt_mask;
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700421 struct idr_layer *p;
Fengguang Wu125c4c72012-10-04 17:13:15 -0700422 struct idr_layer *pa[MAX_IDR_LEVEL];
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700423 struct idr_layer **paa = &pa[0];
424
425 n = idp->layers * IDR_BITS;
426 p = idp->top;
Paul E. McKenney1b233362009-03-10 12:55:52 -0700427 rcu_assign_pointer(idp->top, NULL);
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700428 max = 1 << n;
429
430 id = 0;
Oleg Nesterov6ace06dc2007-07-31 00:39:19 -0700431 while (id < max) {
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700432 while (n > IDR_BITS && p) {
433 n -= IDR_BITS;
434 *paa++ = p;
435 p = p->ary[(id >> n) & IDR_MASK];
436 }
437
Imre Deak2dcb22b2010-05-26 14:43:38 -0700438 bt_mask = id;
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700439 id += 1 << n;
Imre Deak2dcb22b2010-05-26 14:43:38 -0700440 /* Get the highest bit that the above add changed from 0->1. */
441 while (n < fls(id ^ bt_mask)) {
Nadia Derbeycf481c22008-07-25 01:48:02 -0700442 if (p)
443 free_layer(p);
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700444 n += IDR_BITS;
445 p = *--paa;
446 }
447 }
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700448 idp->layers = 0;
449}
Tejun Heofe6e24e2013-02-27 17:03:50 -0800450EXPORT_SYMBOL(__idr_remove_all);
Kristian Hoegsberg23936cc2007-07-15 23:37:24 -0700451
452/**
Andrew Morton8d3b3592005-10-23 12:57:18 -0700453 * idr_destroy - release all cached layers within an idr tree
Naohiro Aotaea24ea82010-08-31 00:37:03 +0900454 * @idp: idr handle
Tejun Heo9bb26bc2013-02-27 17:03:35 -0800455 *
456 * Free all id mappings and all idp_layers. After this function, @idp is
457 * completely unused and can be freed / recycled. The caller is
458 * responsible for ensuring that no one else accesses @idp during or after
459 * idr_destroy().
460 *
461 * A typical clean-up sequence for objects stored in an idr tree will use
462 * idr_for_each() to free all objects, if necessay, then idr_destroy() to
463 * free up the id mappings and cached idr_layers.
Andrew Morton8d3b3592005-10-23 12:57:18 -0700464 */
465void idr_destroy(struct idr *idp)
466{
Tejun Heofe6e24e2013-02-27 17:03:50 -0800467 __idr_remove_all(idp);
Tejun Heo9bb26bc2013-02-27 17:03:35 -0800468
Andrew Morton8d3b3592005-10-23 12:57:18 -0700469 while (idp->id_free_cnt) {
Nadia Derbey4ae53782008-07-25 01:47:58 -0700470 struct idr_layer *p = get_from_free_list(idp);
Andrew Morton8d3b3592005-10-23 12:57:18 -0700471 kmem_cache_free(idr_layer_cache, p);
472 }
473}
474EXPORT_SYMBOL(idr_destroy);
475
476/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 * idr_find - return pointer for given id
478 * @idp: idr handle
479 * @id: lookup key
480 *
481 * Return the pointer given the id it has been registered with. A %NULL
482 * return indicates that @id is not valid or you passed %NULL in
483 * idr_get_new().
484 *
Nadia Derbeyf9c46d62008-07-25 01:48:01 -0700485 * This function can be called under rcu_read_lock(), given that the leaf
486 * pointers lifetimes are correctly managed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 */
488void *idr_find(struct idr *idp, int id)
489{
490 int n;
491 struct idr_layer *p;
492
Paul E. McKenney96be7532010-02-22 17:04:55 -0800493 p = rcu_dereference_raw(idp->top);
Manfred Spraul6ff2d392008-12-01 13:14:02 -0800494 if (!p)
495 return NULL;
496 n = (p->layer+1) * IDR_BITS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498 /* Mask off upper bits we don't use for the search. */
Fengguang Wu125c4c72012-10-04 17:13:15 -0700499 id &= MAX_IDR_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501 if (id >= (1 << n))
502 return NULL;
Manfred Spraul6ff2d392008-12-01 13:14:02 -0800503 BUG_ON(n == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 while (n > 0 && p) {
506 n -= IDR_BITS;
Manfred Spraul6ff2d392008-12-01 13:14:02 -0800507 BUG_ON(n != p->layer*IDR_BITS);
Paul E. McKenney96be7532010-02-22 17:04:55 -0800508 p = rcu_dereference_raw(p->ary[(id >> n) & IDR_MASK]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 }
510 return((void *)p);
511}
512EXPORT_SYMBOL(idr_find);
513
Jeff Mahoney5806f072006-06-26 00:27:19 -0700514/**
Kristian Hoegsberg96d7fa42007-07-15 23:37:24 -0700515 * idr_for_each - iterate through all stored pointers
516 * @idp: idr handle
517 * @fn: function to be called for each pointer
518 * @data: data passed back to callback function
519 *
520 * Iterate over the pointers registered with the given idr. The
521 * callback function will be called for each pointer currently
522 * registered, passing the id, the pointer and the data pointer passed
523 * to this function. It is not safe to modify the idr tree while in
524 * the callback, so functions such as idr_get_new and idr_remove are
525 * not allowed.
526 *
527 * We check the return of @fn each time. If it returns anything other
Randy Dunlap56083ab2010-10-26 14:19:08 -0700528 * than %0, we break out and return that value.
Kristian Hoegsberg96d7fa42007-07-15 23:37:24 -0700529 *
530 * The caller must serialize idr_for_each() vs idr_get_new() and idr_remove().
531 */
532int idr_for_each(struct idr *idp,
533 int (*fn)(int id, void *p, void *data), void *data)
534{
535 int n, id, max, error = 0;
536 struct idr_layer *p;
Fengguang Wu125c4c72012-10-04 17:13:15 -0700537 struct idr_layer *pa[MAX_IDR_LEVEL];
Kristian Hoegsberg96d7fa42007-07-15 23:37:24 -0700538 struct idr_layer **paa = &pa[0];
539
540 n = idp->layers * IDR_BITS;
Paul E. McKenney96be7532010-02-22 17:04:55 -0800541 p = rcu_dereference_raw(idp->top);
Kristian Hoegsberg96d7fa42007-07-15 23:37:24 -0700542 max = 1 << n;
543
544 id = 0;
545 while (id < max) {
546 while (n > 0 && p) {
547 n -= IDR_BITS;
548 *paa++ = p;
Paul E. McKenney96be7532010-02-22 17:04:55 -0800549 p = rcu_dereference_raw(p->ary[(id >> n) & IDR_MASK]);
Kristian Hoegsberg96d7fa42007-07-15 23:37:24 -0700550 }
551
552 if (p) {
553 error = fn(id, (void *)p, data);
554 if (error)
555 break;
556 }
557
558 id += 1 << n;
559 while (n < fls(id)) {
560 n += IDR_BITS;
561 p = *--paa;
562 }
563 }
564
565 return error;
566}
567EXPORT_SYMBOL(idr_for_each);
568
569/**
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700570 * idr_get_next - lookup next object of id to given id.
571 * @idp: idr handle
Naohiro Aotaea24ea82010-08-31 00:37:03 +0900572 * @nextidp: pointer to lookup key
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700573 *
574 * Returns pointer to registered object with id, which is next number to
Naohiro Aota1458ce12010-08-27 17:43:46 +0900575 * given id. After being looked up, *@nextidp will be updated for the next
576 * iteration.
Hugh Dickins9f7de822012-03-21 16:34:20 -0700577 *
578 * This function can be called under rcu_read_lock(), given that the leaf
579 * pointers lifetimes are correctly managed.
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700580 */
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700581void *idr_get_next(struct idr *idp, int *nextidp)
582{
Fengguang Wu125c4c72012-10-04 17:13:15 -0700583 struct idr_layer *p, *pa[MAX_IDR_LEVEL];
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700584 struct idr_layer **paa = &pa[0];
585 int id = *nextidp;
586 int n, max;
587
588 /* find first ent */
Paul E. McKenney94bfa3b2010-06-07 17:09:45 -0700589 p = rcu_dereference_raw(idp->top);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700590 if (!p)
591 return NULL;
Hugh Dickins9f7de822012-03-21 16:34:20 -0700592 n = (p->layer + 1) * IDR_BITS;
593 max = 1 << n;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700594
595 while (id < max) {
596 while (n > 0 && p) {
597 n -= IDR_BITS;
598 *paa++ = p;
Paul E. McKenney94bfa3b2010-06-07 17:09:45 -0700599 p = rcu_dereference_raw(p->ary[(id >> n) & IDR_MASK]);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700600 }
601
602 if (p) {
603 *nextidp = id;
604 return p;
605 }
606
Tejun Heo6cdae742013-02-27 17:03:34 -0800607 /*
608 * Proceed to the next layer at the current level. Unlike
609 * idr_for_each(), @id isn't guaranteed to be aligned to
610 * layer boundary at this point and adding 1 << n may
611 * incorrectly skip IDs. Make sure we jump to the
612 * beginning of the next layer using round_up().
613 */
614 id = round_up(id + 1, 1 << n);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700615 while (n < fls(id)) {
616 n += IDR_BITS;
617 p = *--paa;
618 }
619 }
620 return NULL;
621}
Ben Hutchings4d1ee802010-01-29 20:59:17 +0000622EXPORT_SYMBOL(idr_get_next);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700623
624
625/**
Jeff Mahoney5806f072006-06-26 00:27:19 -0700626 * idr_replace - replace pointer for given id
627 * @idp: idr handle
628 * @ptr: pointer you want associated with the id
629 * @id: lookup key
630 *
631 * Replace the pointer registered with an id and return the old value.
Randy Dunlap56083ab2010-10-26 14:19:08 -0700632 * A %-ENOENT return indicates that @id was not found.
633 * A %-EINVAL return indicates that @id was not within valid constraints.
Jeff Mahoney5806f072006-06-26 00:27:19 -0700634 *
Nadia Derbeycf481c22008-07-25 01:48:02 -0700635 * The caller must serialize with writers.
Jeff Mahoney5806f072006-06-26 00:27:19 -0700636 */
637void *idr_replace(struct idr *idp, void *ptr, int id)
638{
639 int n;
640 struct idr_layer *p, *old_p;
641
Jeff Mahoney5806f072006-06-26 00:27:19 -0700642 p = idp->top;
Manfred Spraul6ff2d392008-12-01 13:14:02 -0800643 if (!p)
644 return ERR_PTR(-EINVAL);
645
646 n = (p->layer+1) * IDR_BITS;
Jeff Mahoney5806f072006-06-26 00:27:19 -0700647
Fengguang Wu125c4c72012-10-04 17:13:15 -0700648 id &= MAX_IDR_MASK;
Jeff Mahoney5806f072006-06-26 00:27:19 -0700649
650 if (id >= (1 << n))
651 return ERR_PTR(-EINVAL);
652
653 n -= IDR_BITS;
654 while ((n > 0) && p) {
655 p = p->ary[(id >> n) & IDR_MASK];
656 n -= IDR_BITS;
657 }
658
659 n = id & IDR_MASK;
660 if (unlikely(p == NULL || !test_bit(n, &p->bitmap)))
661 return ERR_PTR(-ENOENT);
662
663 old_p = p->ary[n];
Nadia Derbeycf481c22008-07-25 01:48:02 -0700664 rcu_assign_pointer(p->ary[n], ptr);
Jeff Mahoney5806f072006-06-26 00:27:19 -0700665
666 return old_p;
667}
668EXPORT_SYMBOL(idr_replace);
669
Akinobu Mita199f0ca2008-04-29 01:03:13 -0700670void __init idr_init_cache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671{
Akinobu Mita199f0ca2008-04-29 01:03:13 -0700672 idr_layer_cache = kmem_cache_create("idr_layer_cache",
Andrew Morton5b019e92009-01-15 13:51:21 -0800673 sizeof(struct idr_layer), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674}
675
676/**
677 * idr_init - initialize idr handle
678 * @idp: idr handle
679 *
680 * This function is use to set up the handle (@idp) that you will pass
681 * to the rest of the functions.
682 */
683void idr_init(struct idr *idp)
684{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 memset(idp, 0, sizeof(struct idr));
686 spin_lock_init(&idp->lock);
687}
688EXPORT_SYMBOL(idr_init);
Tejun Heo72dba582007-06-14 03:45:13 +0900689
690
Randy Dunlap56083ab2010-10-26 14:19:08 -0700691/**
692 * DOC: IDA description
Tejun Heo72dba582007-06-14 03:45:13 +0900693 * IDA - IDR based ID allocator
694 *
Randy Dunlap56083ab2010-10-26 14:19:08 -0700695 * This is id allocator without id -> pointer translation. Memory
Tejun Heo72dba582007-06-14 03:45:13 +0900696 * usage is much lower than full blown idr because each id only
697 * occupies a bit. ida uses a custom leaf node which contains
698 * IDA_BITMAP_BITS slots.
699 *
700 * 2007-04-25 written by Tejun Heo <htejun@gmail.com>
701 */
702
703static void free_bitmap(struct ida *ida, struct ida_bitmap *bitmap)
704{
705 unsigned long flags;
706
707 if (!ida->free_bitmap) {
708 spin_lock_irqsave(&ida->idr.lock, flags);
709 if (!ida->free_bitmap) {
710 ida->free_bitmap = bitmap;
711 bitmap = NULL;
712 }
713 spin_unlock_irqrestore(&ida->idr.lock, flags);
714 }
715
716 kfree(bitmap);
717}
718
719/**
720 * ida_pre_get - reserve resources for ida allocation
721 * @ida: ida handle
722 * @gfp_mask: memory allocation flag
723 *
724 * This function should be called prior to locking and calling the
725 * following function. It preallocates enough memory to satisfy the
726 * worst possible allocation.
727 *
Randy Dunlap56083ab2010-10-26 14:19:08 -0700728 * If the system is REALLY out of memory this function returns %0,
729 * otherwise %1.
Tejun Heo72dba582007-06-14 03:45:13 +0900730 */
731int ida_pre_get(struct ida *ida, gfp_t gfp_mask)
732{
733 /* allocate idr_layers */
734 if (!idr_pre_get(&ida->idr, gfp_mask))
735 return 0;
736
737 /* allocate free_bitmap */
738 if (!ida->free_bitmap) {
739 struct ida_bitmap *bitmap;
740
741 bitmap = kmalloc(sizeof(struct ida_bitmap), gfp_mask);
742 if (!bitmap)
743 return 0;
744
745 free_bitmap(ida, bitmap);
746 }
747
748 return 1;
749}
750EXPORT_SYMBOL(ida_pre_get);
751
752/**
753 * ida_get_new_above - allocate new ID above or equal to a start id
754 * @ida: ida handle
Naohiro Aotaea24ea82010-08-31 00:37:03 +0900755 * @starting_id: id to start search at
Tejun Heo72dba582007-06-14 03:45:13 +0900756 * @p_id: pointer to the allocated handle
757 *
Wang Sheng-Huie3816c52011-10-31 17:12:36 -0700758 * Allocate new ID above or equal to @starting_id. It should be called
759 * with any required locks.
Tejun Heo72dba582007-06-14 03:45:13 +0900760 *
Randy Dunlap56083ab2010-10-26 14:19:08 -0700761 * If memory is required, it will return %-EAGAIN, you should unlock
Tejun Heo72dba582007-06-14 03:45:13 +0900762 * and go back to the ida_pre_get() call. If the ida is full, it will
Randy Dunlap56083ab2010-10-26 14:19:08 -0700763 * return %-ENOSPC.
Tejun Heo72dba582007-06-14 03:45:13 +0900764 *
Randy Dunlap56083ab2010-10-26 14:19:08 -0700765 * @p_id returns a value in the range @starting_id ... %0x7fffffff.
Tejun Heo72dba582007-06-14 03:45:13 +0900766 */
767int ida_get_new_above(struct ida *ida, int starting_id, int *p_id)
768{
Fengguang Wu125c4c72012-10-04 17:13:15 -0700769 struct idr_layer *pa[MAX_IDR_LEVEL];
Tejun Heo72dba582007-06-14 03:45:13 +0900770 struct ida_bitmap *bitmap;
771 unsigned long flags;
772 int idr_id = starting_id / IDA_BITMAP_BITS;
773 int offset = starting_id % IDA_BITMAP_BITS;
774 int t, id;
775
776 restart:
777 /* get vacant slot */
778 t = idr_get_empty_slot(&ida->idr, idr_id, pa);
Nadia Derbey944ca052008-07-25 01:47:59 -0700779 if (t < 0)
Tejun Heo12d1b432013-02-27 17:03:53 -0800780 return t == -ENOMEM ? -EAGAIN : t;
Tejun Heo72dba582007-06-14 03:45:13 +0900781
Fengguang Wu125c4c72012-10-04 17:13:15 -0700782 if (t * IDA_BITMAP_BITS >= MAX_IDR_BIT)
Tejun Heo72dba582007-06-14 03:45:13 +0900783 return -ENOSPC;
784
785 if (t != idr_id)
786 offset = 0;
787 idr_id = t;
788
789 /* if bitmap isn't there, create a new one */
790 bitmap = (void *)pa[0]->ary[idr_id & IDR_MASK];
791 if (!bitmap) {
792 spin_lock_irqsave(&ida->idr.lock, flags);
793 bitmap = ida->free_bitmap;
794 ida->free_bitmap = NULL;
795 spin_unlock_irqrestore(&ida->idr.lock, flags);
796
797 if (!bitmap)
798 return -EAGAIN;
799
800 memset(bitmap, 0, sizeof(struct ida_bitmap));
Nadia Derbey3219b3b2008-07-25 01:48:00 -0700801 rcu_assign_pointer(pa[0]->ary[idr_id & IDR_MASK],
802 (void *)bitmap);
Tejun Heo72dba582007-06-14 03:45:13 +0900803 pa[0]->count++;
804 }
805
806 /* lookup for empty slot */
807 t = find_next_zero_bit(bitmap->bitmap, IDA_BITMAP_BITS, offset);
808 if (t == IDA_BITMAP_BITS) {
809 /* no empty slot after offset, continue to the next chunk */
810 idr_id++;
811 offset = 0;
812 goto restart;
813 }
814
815 id = idr_id * IDA_BITMAP_BITS + t;
Fengguang Wu125c4c72012-10-04 17:13:15 -0700816 if (id >= MAX_IDR_BIT)
Tejun Heo72dba582007-06-14 03:45:13 +0900817 return -ENOSPC;
818
819 __set_bit(t, bitmap->bitmap);
820 if (++bitmap->nr_busy == IDA_BITMAP_BITS)
821 idr_mark_full(pa, idr_id);
822
823 *p_id = id;
824
825 /* Each leaf node can handle nearly a thousand slots and the
826 * whole idea of ida is to have small memory foot print.
827 * Throw away extra resources one by one after each successful
828 * allocation.
829 */
830 if (ida->idr.id_free_cnt || ida->free_bitmap) {
Nadia Derbey4ae53782008-07-25 01:47:58 -0700831 struct idr_layer *p = get_from_free_list(&ida->idr);
Tejun Heo72dba582007-06-14 03:45:13 +0900832 if (p)
833 kmem_cache_free(idr_layer_cache, p);
834 }
835
836 return 0;
837}
838EXPORT_SYMBOL(ida_get_new_above);
839
840/**
Tejun Heo72dba582007-06-14 03:45:13 +0900841 * ida_remove - remove the given ID
842 * @ida: ida handle
843 * @id: ID to free
844 */
845void ida_remove(struct ida *ida, int id)
846{
847 struct idr_layer *p = ida->idr.top;
848 int shift = (ida->idr.layers - 1) * IDR_BITS;
849 int idr_id = id / IDA_BITMAP_BITS;
850 int offset = id % IDA_BITMAP_BITS;
851 int n;
852 struct ida_bitmap *bitmap;
853
854 /* clear full bits while looking up the leaf idr_layer */
855 while ((shift > 0) && p) {
856 n = (idr_id >> shift) & IDR_MASK;
857 __clear_bit(n, &p->bitmap);
858 p = p->ary[n];
859 shift -= IDR_BITS;
860 }
861
862 if (p == NULL)
863 goto err;
864
865 n = idr_id & IDR_MASK;
866 __clear_bit(n, &p->bitmap);
867
868 bitmap = (void *)p->ary[n];
869 if (!test_bit(offset, bitmap->bitmap))
870 goto err;
871
872 /* update bitmap and remove it if empty */
873 __clear_bit(offset, bitmap->bitmap);
874 if (--bitmap->nr_busy == 0) {
875 __set_bit(n, &p->bitmap); /* to please idr_remove() */
876 idr_remove(&ida->idr, idr_id);
877 free_bitmap(ida, bitmap);
878 }
879
880 return;
881
882 err:
883 printk(KERN_WARNING
884 "ida_remove called for id=%d which is not allocated.\n", id);
885}
886EXPORT_SYMBOL(ida_remove);
887
888/**
889 * ida_destroy - release all cached layers within an ida tree
Naohiro Aotaea24ea82010-08-31 00:37:03 +0900890 * @ida: ida handle
Tejun Heo72dba582007-06-14 03:45:13 +0900891 */
892void ida_destroy(struct ida *ida)
893{
894 idr_destroy(&ida->idr);
895 kfree(ida->free_bitmap);
896}
897EXPORT_SYMBOL(ida_destroy);
898
899/**
Rusty Russell88eca022011-08-03 16:21:06 -0700900 * ida_simple_get - get a new id.
901 * @ida: the (initialized) ida.
902 * @start: the minimum id (inclusive, < 0x8000000)
903 * @end: the maximum id (exclusive, < 0x8000000 or 0)
904 * @gfp_mask: memory allocation flags
905 *
906 * Allocates an id in the range start <= id < end, or returns -ENOSPC.
907 * On memory allocation failure, returns -ENOMEM.
908 *
909 * Use ida_simple_remove() to get rid of an id.
910 */
911int ida_simple_get(struct ida *ida, unsigned int start, unsigned int end,
912 gfp_t gfp_mask)
913{
914 int ret, id;
915 unsigned int max;
Tejun Heo46cbc1d2011-11-02 13:38:46 -0700916 unsigned long flags;
Rusty Russell88eca022011-08-03 16:21:06 -0700917
918 BUG_ON((int)start < 0);
919 BUG_ON((int)end < 0);
920
921 if (end == 0)
922 max = 0x80000000;
923 else {
924 BUG_ON(end < start);
925 max = end - 1;
926 }
927
928again:
929 if (!ida_pre_get(ida, gfp_mask))
930 return -ENOMEM;
931
Tejun Heo46cbc1d2011-11-02 13:38:46 -0700932 spin_lock_irqsave(&simple_ida_lock, flags);
Rusty Russell88eca022011-08-03 16:21:06 -0700933 ret = ida_get_new_above(ida, start, &id);
934 if (!ret) {
935 if (id > max) {
936 ida_remove(ida, id);
937 ret = -ENOSPC;
938 } else {
939 ret = id;
940 }
941 }
Tejun Heo46cbc1d2011-11-02 13:38:46 -0700942 spin_unlock_irqrestore(&simple_ida_lock, flags);
Rusty Russell88eca022011-08-03 16:21:06 -0700943
944 if (unlikely(ret == -EAGAIN))
945 goto again;
946
947 return ret;
948}
949EXPORT_SYMBOL(ida_simple_get);
950
951/**
952 * ida_simple_remove - remove an allocated id.
953 * @ida: the (initialized) ida.
954 * @id: the id returned by ida_simple_get.
955 */
956void ida_simple_remove(struct ida *ida, unsigned int id)
957{
Tejun Heo46cbc1d2011-11-02 13:38:46 -0700958 unsigned long flags;
959
Rusty Russell88eca022011-08-03 16:21:06 -0700960 BUG_ON((int)id < 0);
Tejun Heo46cbc1d2011-11-02 13:38:46 -0700961 spin_lock_irqsave(&simple_ida_lock, flags);
Rusty Russell88eca022011-08-03 16:21:06 -0700962 ida_remove(ida, id);
Tejun Heo46cbc1d2011-11-02 13:38:46 -0700963 spin_unlock_irqrestore(&simple_ida_lock, flags);
Rusty Russell88eca022011-08-03 16:21:06 -0700964}
965EXPORT_SYMBOL(ida_simple_remove);
966
967/**
Tejun Heo72dba582007-06-14 03:45:13 +0900968 * ida_init - initialize ida handle
969 * @ida: ida handle
970 *
971 * This function is use to set up the handle (@ida) that you will pass
972 * to the rest of the functions.
973 */
974void ida_init(struct ida *ida)
975{
976 memset(ida, 0, sizeof(struct ida));
977 idr_init(&ida->idr);
978
979}
980EXPORT_SYMBOL(ida_init);