1
2
3
4
5
6
7
8
9
10
11
12#ifndef __IDR_H__
13#define __IDR_H__
14
15#include <linux/types.h>
16#include <linux/bitops.h>
17#include <linux/init.h>
18#include <linux/rcupdate.h>
19
20#if BITS_PER_LONG == 32
21# define IDR_BITS 5
22# define IDR_FULL 0xfffffffful
23
24
25
26# define TOP_LEVEL_FULL (IDR_FULL >> 30)
27#elif BITS_PER_LONG == 64
28# define IDR_BITS 6
29# define IDR_FULL 0xfffffffffffffffful
30
31
32
33# define TOP_LEVEL_FULL (IDR_FULL >> 62)
34#else
35# error "BITS_PER_LONG is not 32 or 64"
36#endif
37
38#define IDR_SIZE (1 << IDR_BITS)
39#define IDR_MASK ((1 << IDR_BITS)-1)
40
41#define MAX_ID_SHIFT (sizeof(int)*8 - 1)
42#define MAX_ID_BIT (1U << MAX_ID_SHIFT)
43#define MAX_ID_MASK (MAX_ID_BIT - 1)
44
45
46#define MAX_LEVEL (MAX_ID_SHIFT + IDR_BITS - 1) / IDR_BITS
47
48
49#define IDR_FREE_MAX MAX_LEVEL + MAX_LEVEL
50
51struct idr_layer {
52 unsigned long bitmap;
53 struct idr_layer *ary[1<<IDR_BITS];
54 int count;
55 struct rcu_head rcu_head;
56};
57
58struct idr {
59 struct idr_layer *top;
60 struct idr_layer *id_free;
61 int layers;
62 int id_free_cnt;
63 spinlock_t lock;
64};
65
66#define IDR_INIT(name) \
67{ \
68 .top = NULL, \
69 .id_free = NULL, \
70 .layers = 0, \
71 .id_free_cnt = 0, \
72 .lock = __SPIN_LOCK_UNLOCKED(name.lock), \
73}
74#define DEFINE_IDR(name) struct idr name = IDR_INIT(name)
75
76
77#define IDR_NEED_TO_GROW -2
78#define IDR_NOMORE_SPACE -3
79
80#define _idr_rc_to_errno(rc) ((rc) == -1 ? -EAGAIN : -ENOSPC)
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102void *idr_find(struct idr *idp, int id);
103int idr_pre_get(struct idr *idp, gfp_t gfp_mask);
104int idr_get_new(struct idr *idp, void *ptr, int *id);
105int idr_get_new_above(struct idr *idp, void *ptr, int starting_id, int *id);
106int idr_for_each(struct idr *idp,
107 int (*fn)(int id, void *p, void *data), void *data);
108void *idr_replace(struct idr *idp, void *ptr, int id);
109void idr_remove(struct idr *idp, int id);
110void idr_remove_all(struct idr *idp);
111void idr_destroy(struct idr *idp);
112void idr_init(struct idr *idp);
113
114
115
116
117
118
119#define IDA_CHUNK_SIZE 128
120#define IDA_BITMAP_LONGS (128 / sizeof(long) - 1)
121#define IDA_BITMAP_BITS (IDA_BITMAP_LONGS * sizeof(long) * 8)
122
123struct ida_bitmap {
124 long nr_busy;
125 unsigned long bitmap[IDA_BITMAP_LONGS];
126};
127
128struct ida {
129 struct idr idr;
130 struct ida_bitmap *free_bitmap;
131};
132
133#define IDA_INIT(name) { .idr = IDR_INIT(name), .free_bitmap = NULL, }
134#define DEFINE_IDA(name) struct ida name = IDA_INIT(name)
135
136int ida_pre_get(struct ida *ida, gfp_t gfp_mask);
137int ida_get_new_above(struct ida *ida, int starting_id, int *p_id);
138int ida_get_new(struct ida *ida, int *p_id);
139void ida_remove(struct ida *ida, int id);
140void ida_destroy(struct ida *ida);
141void ida_init(struct ida *ida);
142
143void __init idr_init_cache(void);
144
145#endif
146