blob: 43b87b1c77a32bb6153ea1daf3f958c8c8e136d2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 */
Luben Tuikovf668ab12005-11-08 17:14:08 +010011
12#ifndef __IDR_H__
13#define __IDR_H__
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/types.h>
16#include <linux/bitops.h>
Akinobu Mita199f0ca2008-04-29 01:03:13 -070017#include <linux/init.h>
Nadia Derbey2027d1a2008-07-25 01:47:57 -070018#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Tejun Heo050a6b42013-02-27 17:05:06 -080020/*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#define IDR_SIZE (1 << IDR_BITS)
28#define IDR_MASK ((1 << IDR_BITS)-1)
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030struct idr_layer {
Tejun Heo1d9b2e12013-02-27 17:05:05 -080031 DECLARE_BITMAP(bitmap, IDR_SIZE); /* A zero bit means "space here" */
Arnd Bergmannd2c24862010-02-26 14:53:26 +010032 struct idr_layer __rcu *ary[1<<IDR_BITS];
Tejun Heo4106eca2013-02-27 17:03:51 -080033 int count; /* When zero, we can release it */
34 int layer; /* distance from leaf */
35 struct rcu_head rcu_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036};
37
38struct idr {
Tejun Heo4106eca2013-02-27 17:03:51 -080039 struct idr_layer __rcu *top;
40 struct idr_layer *id_free;
41 int layers; /* only valid w/o concurrent changes */
42 int id_free_cnt;
43 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044};
45
Tejun Heo4106eca2013-02-27 17:03:51 -080046#define IDR_INIT(name) \
47{ \
48 .lock = __SPIN_LOCK_UNLOCKED(name.lock), \
Linus Torvalds1da177e2005-04-16 15:20:36 -070049}
50#define DEFINE_IDR(name) struct idr name = IDR_INIT(name)
51
Nadia Derbeyf9c46d62008-07-25 01:48:01 -070052/**
Randy Dunlap56083ab2010-10-26 14:19:08 -070053 * DOC: idr sync
Nadia Derbeyf9c46d62008-07-25 01:48:01 -070054 * idr synchronization (stolen from radix-tree.h)
55 *
56 * idr_find() is able to be called locklessly, using RCU. The caller must
57 * ensure calls to this function are made within rcu_read_lock() regions.
58 * Other readers (lock-free or otherwise) and modifications may be running
59 * concurrently.
60 *
61 * It is still required that the caller manage the synchronization and
62 * lifetimes of the items. So if RCU lock-free lookups are used, typically
63 * this would mean that the items have their own locks, or are amenable to
64 * lock-free access; and that the items are freed by RCU (or only freed after
65 * having been deleted from the idr tree *and* a synchronize_rcu() grace
66 * period).
67 */
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/*
70 * This is what we export.
71 */
72
73void *idr_find(struct idr *idp, int id);
Al Virofd4f2df2005-10-21 03:18:50 -040074int idr_pre_get(struct idr *idp, gfp_t gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075int idr_get_new_above(struct idr *idp, void *ptr, int starting_id, int *id);
Tejun Heod5c74092013-02-27 17:03:55 -080076void idr_preload(gfp_t gfp_mask);
77int idr_alloc(struct idr *idp, void *ptr, int start, int end, gfp_t gfp_mask);
Kristian Hoegsberg96d7fa42007-07-15 23:37:24 -070078int idr_for_each(struct idr *idp,
79 int (*fn)(int id, void *p, void *data), void *data);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -070080void *idr_get_next(struct idr *idp, int *nextid);
Jeff Mahoney5806f072006-06-26 00:27:19 -070081void *idr_replace(struct idr *idp, void *ptr, int id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082void idr_remove(struct idr *idp, int id);
Tejun Heod5c74092013-02-27 17:03:55 -080083void idr_free(struct idr *idp, int id);
Andrew Morton8d3b3592005-10-23 12:57:18 -070084void idr_destroy(struct idr *idp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085void idr_init(struct idr *idp);
Luben Tuikovf668ab12005-11-08 17:14:08 +010086
Tejun Heo49038ef2013-02-27 17:03:52 -080087/**
Tejun Heod5c74092013-02-27 17:03:55 -080088 * idr_preload_end - end preload section started with idr_preload()
89 *
90 * Each idr_preload() should be matched with an invocation of this
91 * function. See idr_preload() for details.
92 */
93static inline void idr_preload_end(void)
94{
95 preempt_enable();
96}
97
98/**
Tejun Heo49038ef2013-02-27 17:03:52 -080099 * idr_get_new - allocate new idr entry
100 * @idp: idr handle
101 * @ptr: pointer you want associated with the id
102 * @id: pointer to the allocated handle
103 *
104 * Simple wrapper around idr_get_new_above() w/ @starting_id of zero.
105 */
106static inline int idr_get_new(struct idr *idp, void *ptr, int *id)
107{
108 return idr_get_new_above(idp, ptr, 0, id);
109}
110
111/**
112 * idr_for_each_entry - iterate over an idr's elements of a given type
113 * @idp: idr handle
114 * @entry: the type * to use as cursor
115 * @id: id entry's key
116 */
117#define idr_for_each_entry(idp, entry, id) \
118 for (id = 0, entry = (typeof(entry))idr_get_next((idp), &(id)); \
119 entry != NULL; \
120 ++id, entry = (typeof(entry))idr_get_next((idp), &(id)))
121
Tejun Heofe6e24e2013-02-27 17:03:50 -0800122void __idr_remove_all(struct idr *idp); /* don't use */
123
124/**
125 * idr_remove_all - remove all ids from the given idr tree
126 * @idp: idr handle
127 *
128 * If you're trying to destroy @idp, calling idr_destroy() is enough.
129 * This is going away. Don't use.
130 */
131static inline void __deprecated idr_remove_all(struct idr *idp)
132{
133 __idr_remove_all(idp);
134}
Tejun Heo72dba582007-06-14 03:45:13 +0900135
136/*
137 * IDA - IDR based id allocator, use when translation from id to
138 * pointer isn't necessary.
Namhyung Kimed9f5242010-09-16 01:30:19 +0900139 *
140 * IDA_BITMAP_LONGS is calculated to be one less to accommodate
141 * ida_bitmap->nr_busy so that the whole struct fits in 128 bytes.
Tejun Heo72dba582007-06-14 03:45:13 +0900142 */
143#define IDA_CHUNK_SIZE 128 /* 128 bytes per chunk */
Namhyung Kimed9f5242010-09-16 01:30:19 +0900144#define IDA_BITMAP_LONGS (IDA_CHUNK_SIZE / sizeof(long) - 1)
145#define IDA_BITMAP_BITS (IDA_BITMAP_LONGS * sizeof(long) * 8)
Tejun Heo72dba582007-06-14 03:45:13 +0900146
147struct ida_bitmap {
148 long nr_busy;
149 unsigned long bitmap[IDA_BITMAP_LONGS];
150};
151
152struct ida {
153 struct idr idr;
154 struct ida_bitmap *free_bitmap;
155};
156
Thomas Gleixnereece09e2011-07-17 21:25:03 +0200157#define IDA_INIT(name) { .idr = IDR_INIT((name).idr), .free_bitmap = NULL, }
Tejun Heo72dba582007-06-14 03:45:13 +0900158#define DEFINE_IDA(name) struct ida name = IDA_INIT(name)
159
160int ida_pre_get(struct ida *ida, gfp_t gfp_mask);
161int ida_get_new_above(struct ida *ida, int starting_id, int *p_id);
Tejun Heo72dba582007-06-14 03:45:13 +0900162void ida_remove(struct ida *ida, int id);
163void ida_destroy(struct ida *ida);
164void ida_init(struct ida *ida);
165
Rusty Russell88eca022011-08-03 16:21:06 -0700166int ida_simple_get(struct ida *ida, unsigned int start, unsigned int end,
167 gfp_t gfp_mask);
168void ida_simple_remove(struct ida *ida, unsigned int id);
169
Philipp Reisner9749f302011-07-20 14:59:37 +0200170/**
Tejun Heo49038ef2013-02-27 17:03:52 -0800171 * ida_get_new - allocate new ID
172 * @ida: idr handle
173 * @p_id: pointer to the allocated handle
174 *
175 * Simple wrapper around ida_get_new_above() w/ @starting_id of zero.
Philipp Reisner9749f302011-07-20 14:59:37 +0200176 */
Tejun Heo49038ef2013-02-27 17:03:52 -0800177static inline int ida_get_new(struct ida *ida, int *p_id)
178{
179 return ida_get_new_above(ida, 0, p_id);
180}
181
182void __init idr_init_cache(void);
Philipp Reisner9749f302011-07-20 14:59:37 +0200183
Luben Tuikovf668ab12005-11-08 17:14:08 +0100184#endif /* __IDR_H__ */