idr: add idr_layer->prefix
[linux-2.6-block.git] / include / linux / idr.h
CommitLineData
1da177e4
LT
1/*
2 * include/linux/idr.h
3 *
4 * 2002-10-18 written by Jim Houston jim.houston@ccur.com
5 * Copyright (C) 2002 by Concurrent Computer Corporation
6 * Distributed under the GNU GPL license version 2.
7 *
8 * Small id to pointer translation service avoiding fixed sized
9 * tables.
10 */
f668ab1a
LT
11
12#ifndef __IDR_H__
13#define __IDR_H__
14
1da177e4
LT
15#include <linux/types.h>
16#include <linux/bitops.h>
199f0ca5 17#include <linux/init.h>
2027d1ab 18#include <linux/rcupdate.h>
1da177e4 19
050a6b47
TH
20/*
21 * We want shallower trees and thus more bits covered at each layer. 8
22 * bits gives us large enough first layer for most use cases and maximum
23 * tree depth of 4. Each idr_layer is slightly larger than 2k on 64bit and
24 * 1k on 32bit.
25 */
26#define IDR_BITS 8
1da177e4
LT
27#define IDR_SIZE (1 << IDR_BITS)
28#define IDR_MASK ((1 << IDR_BITS)-1)
29
1da177e4 30struct idr_layer {
54616283 31 int prefix; /* the ID prefix of this idr_layer */
1d9b2e1e 32 DECLARE_BITMAP(bitmap, IDR_SIZE); /* A zero bit means "space here" */
d2c2486b 33 struct idr_layer __rcu *ary[1<<IDR_BITS];
4106ecaf
TH
34 int count; /* When zero, we can release it */
35 int layer; /* distance from leaf */
36 struct rcu_head rcu_head;
1da177e4
LT
37};
38
39struct idr {
4106ecaf
TH
40 struct idr_layer __rcu *top;
41 struct idr_layer *id_free;
42 int layers; /* only valid w/o concurrent changes */
43 int id_free_cnt;
44 spinlock_t lock;
1da177e4
LT
45};
46
4106ecaf
TH
47#define IDR_INIT(name) \
48{ \
49 .lock = __SPIN_LOCK_UNLOCKED(name.lock), \
1da177e4
LT
50}
51#define DEFINE_IDR(name) struct idr name = IDR_INIT(name)
52
f9c46d6e 53/**
56083ab1 54 * DOC: idr sync
f9c46d6e
ND
55 * idr synchronization (stolen from radix-tree.h)
56 *
57 * idr_find() is able to be called locklessly, using RCU. The caller must
58 * ensure calls to this function are made within rcu_read_lock() regions.
59 * Other readers (lock-free or otherwise) and modifications may be running
60 * concurrently.
61 *
62 * It is still required that the caller manage the synchronization and
63 * lifetimes of the items. So if RCU lock-free lookups are used, typically
64 * this would mean that the items have their own locks, or are amenable to
65 * lock-free access; and that the items are freed by RCU (or only freed after
66 * having been deleted from the idr tree *and* a synchronize_rcu() grace
67 * period).
68 */
69
1da177e4
LT
70/*
71 * This is what we export.
72 */
73
74void *idr_find(struct idr *idp, int id);
fd4f2df2 75int idr_pre_get(struct idr *idp, gfp_t gfp_mask);
1da177e4 76int idr_get_new_above(struct idr *idp, void *ptr, int starting_id, int *id);
d5c7409f
TH
77void idr_preload(gfp_t gfp_mask);
78int idr_alloc(struct idr *idp, void *ptr, int start, int end, gfp_t gfp_mask);
96d7fa42
KH
79int idr_for_each(struct idr *idp,
80 int (*fn)(int id, void *p, void *data), void *data);
38460b48 81void *idr_get_next(struct idr *idp, int *nextid);
5806f07c 82void *idr_replace(struct idr *idp, void *ptr, int id);
1da177e4 83void idr_remove(struct idr *idp, int id);
d5c7409f 84void idr_free(struct idr *idp, int id);
8d3b3591 85void idr_destroy(struct idr *idp);
1da177e4 86void idr_init(struct idr *idp);
f668ab1a 87
d5c7409f
TH
88/**
89 * idr_preload_end - end preload section started with idr_preload()
90 *
91 * Each idr_preload() should be matched with an invocation of this
92 * function. See idr_preload() for details.
93 */
94static inline void idr_preload_end(void)
95{
96 preempt_enable();
97}
98
49038ef4
TH
99/**
100 * idr_get_new - allocate new idr entry
101 * @idp: idr handle
102 * @ptr: pointer you want associated with the id
103 * @id: pointer to the allocated handle
104 *
105 * Simple wrapper around idr_get_new_above() w/ @starting_id of zero.
106 */
107static inline int idr_get_new(struct idr *idp, void *ptr, int *id)
108{
109 return idr_get_new_above(idp, ptr, 0, id);
110}
111
112/**
113 * idr_for_each_entry - iterate over an idr's elements of a given type
114 * @idp: idr handle
115 * @entry: the type * to use as cursor
116 * @id: id entry's key
117 */
118#define idr_for_each_entry(idp, entry, id) \
119 for (id = 0, entry = (typeof(entry))idr_get_next((idp), &(id)); \
120 entry != NULL; \
121 ++id, entry = (typeof(entry))idr_get_next((idp), &(id)))
122
fe6e24ec
TH
123void __idr_remove_all(struct idr *idp); /* don't use */
124
125/**
126 * idr_remove_all - remove all ids from the given idr tree
127 * @idp: idr handle
128 *
129 * If you're trying to destroy @idp, calling idr_destroy() is enough.
130 * This is going away. Don't use.
131 */
132static inline void __deprecated idr_remove_all(struct idr *idp)
133{
134 __idr_remove_all(idp);
135}
72dba584
TH
136
137/*
138 * IDA - IDR based id allocator, use when translation from id to
139 * pointer isn't necessary.
ed9f524a
NK
140 *
141 * IDA_BITMAP_LONGS is calculated to be one less to accommodate
142 * ida_bitmap->nr_busy so that the whole struct fits in 128 bytes.
72dba584
TH
143 */
144#define IDA_CHUNK_SIZE 128 /* 128 bytes per chunk */
ed9f524a
NK
145#define IDA_BITMAP_LONGS (IDA_CHUNK_SIZE / sizeof(long) - 1)
146#define IDA_BITMAP_BITS (IDA_BITMAP_LONGS * sizeof(long) * 8)
72dba584
TH
147
148struct ida_bitmap {
149 long nr_busy;
150 unsigned long bitmap[IDA_BITMAP_LONGS];
151};
152
153struct ida {
154 struct idr idr;
155 struct ida_bitmap *free_bitmap;
156};
157
eece09ec 158#define IDA_INIT(name) { .idr = IDR_INIT((name).idr), .free_bitmap = NULL, }
72dba584
TH
159#define DEFINE_IDA(name) struct ida name = IDA_INIT(name)
160
161int ida_pre_get(struct ida *ida, gfp_t gfp_mask);
162int ida_get_new_above(struct ida *ida, int starting_id, int *p_id);
72dba584
TH
163void ida_remove(struct ida *ida, int id);
164void ida_destroy(struct ida *ida);
165void ida_init(struct ida *ida);
166
88eca020
RR
167int ida_simple_get(struct ida *ida, unsigned int start, unsigned int end,
168 gfp_t gfp_mask);
169void ida_simple_remove(struct ida *ida, unsigned int id);
170
9749f30f 171/**
49038ef4
TH
172 * ida_get_new - allocate new ID
173 * @ida: idr handle
174 * @p_id: pointer to the allocated handle
175 *
176 * Simple wrapper around ida_get_new_above() w/ @starting_id of zero.
9749f30f 177 */
49038ef4
TH
178static inline int ida_get_new(struct ida *ida, int *p_id)
179{
180 return ida_get_new_above(ida, 0, p_id);
181}
182
183void __init idr_init_cache(void);
9749f30f 184
f668ab1a 185#endif /* __IDR_H__ */