Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2001 Momchil Velikov |
| 3 | * Portions Copyright (C) 2001 Christoph Hellwig |
Christoph Lameter | 201b626 | 2005-09-06 15:16:46 -0700 | [diff] [blame] | 4 | * Copyright (C) 2005 SGI, Christoph Lameter <clameter@sgi.com> |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 5 | * Copyright (C) 2006 Nick Piggin |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License as |
| 9 | * published by the Free Software Foundation; either version 2, or (at |
| 10 | * your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, but |
| 13 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 20 | */ |
| 21 | |
| 22 | #include <linux/errno.h> |
| 23 | #include <linux/init.h> |
| 24 | #include <linux/kernel.h> |
| 25 | #include <linux/module.h> |
| 26 | #include <linux/radix-tree.h> |
| 27 | #include <linux/percpu.h> |
| 28 | #include <linux/slab.h> |
| 29 | #include <linux/notifier.h> |
| 30 | #include <linux/cpu.h> |
| 31 | #include <linux/gfp.h> |
| 32 | #include <linux/string.h> |
| 33 | #include <linux/bitops.h> |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 34 | #include <linux/rcupdate.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
| 36 | |
| 37 | #ifdef __KERNEL__ |
Nick Piggin | cfd9b7d | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 38 | #define RADIX_TREE_MAP_SHIFT (CONFIG_BASE_SMALL ? 4 : 6) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #else |
| 40 | #define RADIX_TREE_MAP_SHIFT 3 /* For more stressful testing */ |
| 41 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
| 43 | #define RADIX_TREE_MAP_SIZE (1UL << RADIX_TREE_MAP_SHIFT) |
| 44 | #define RADIX_TREE_MAP_MASK (RADIX_TREE_MAP_SIZE-1) |
| 45 | |
| 46 | #define RADIX_TREE_TAG_LONGS \ |
| 47 | ((RADIX_TREE_MAP_SIZE + BITS_PER_LONG - 1) / BITS_PER_LONG) |
| 48 | |
| 49 | struct radix_tree_node { |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 50 | unsigned int height; /* Height from the bottom */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | unsigned int count; |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 52 | struct rcu_head rcu_head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | void *slots[RADIX_TREE_MAP_SIZE]; |
Jonathan Corbet | daff89f | 2006-03-25 03:08:05 -0800 | [diff] [blame] | 54 | unsigned long tags[RADIX_TREE_MAX_TAGS][RADIX_TREE_TAG_LONGS]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | }; |
| 56 | |
| 57 | struct radix_tree_path { |
Christoph Lameter | 201b626 | 2005-09-06 15:16:46 -0700 | [diff] [blame] | 58 | struct radix_tree_node *node; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | int offset; |
| 60 | }; |
| 61 | |
| 62 | #define RADIX_TREE_INDEX_BITS (8 /* CHAR_BIT */ * sizeof(unsigned long)) |
Jeff Moyer | 26fb158 | 2007-10-16 01:24:49 -0700 | [diff] [blame] | 63 | #define RADIX_TREE_MAX_PATH (DIV_ROUND_UP(RADIX_TREE_INDEX_BITS, \ |
| 64 | RADIX_TREE_MAP_SHIFT)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | |
Jeff Moyer | 26fb158 | 2007-10-16 01:24:49 -0700 | [diff] [blame] | 66 | /* |
| 67 | * The height_to_maxindex array needs to be one deeper than the maximum |
| 68 | * path as height 0 holds only 1 entry. |
| 69 | */ |
| 70 | static unsigned long height_to_maxindex[RADIX_TREE_MAX_PATH + 1] __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | |
| 72 | /* |
| 73 | * Radix tree node cache. |
| 74 | */ |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 75 | static struct kmem_cache *radix_tree_node_cachep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
| 77 | /* |
| 78 | * Per-cpu pool of preloaded nodes |
| 79 | */ |
| 80 | struct radix_tree_preload { |
| 81 | int nr; |
| 82 | struct radix_tree_node *nodes[RADIX_TREE_MAX_PATH]; |
| 83 | }; |
| 84 | DEFINE_PER_CPU(struct radix_tree_preload, radix_tree_preloads) = { 0, }; |
| 85 | |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 86 | static inline gfp_t root_gfp_mask(struct radix_tree_root *root) |
| 87 | { |
| 88 | return root->gfp_mask & __GFP_BITS_MASK; |
| 89 | } |
| 90 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | /* |
| 92 | * This assumes that the caller has performed appropriate preallocation, and |
| 93 | * that the caller has pinned this thread of control to the current CPU. |
| 94 | */ |
| 95 | static struct radix_tree_node * |
| 96 | radix_tree_node_alloc(struct radix_tree_root *root) |
| 97 | { |
Nick Piggin | e2848a0 | 2008-02-04 22:29:10 -0800 | [diff] [blame] | 98 | struct radix_tree_node *ret = NULL; |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 99 | gfp_t gfp_mask = root_gfp_mask(root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | |
Nick Piggin | e2848a0 | 2008-02-04 22:29:10 -0800 | [diff] [blame] | 101 | if (!(gfp_mask & __GFP_WAIT)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | struct radix_tree_preload *rtp; |
| 103 | |
Nick Piggin | e2848a0 | 2008-02-04 22:29:10 -0800 | [diff] [blame] | 104 | /* |
| 105 | * Provided the caller has preloaded here, we will always |
| 106 | * succeed in getting a node here (and never reach |
| 107 | * kmem_cache_alloc) |
| 108 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | rtp = &__get_cpu_var(radix_tree_preloads); |
| 110 | if (rtp->nr) { |
| 111 | ret = rtp->nodes[rtp->nr - 1]; |
| 112 | rtp->nodes[rtp->nr - 1] = NULL; |
| 113 | rtp->nr--; |
| 114 | } |
| 115 | } |
Nick Piggin | e2848a0 | 2008-02-04 22:29:10 -0800 | [diff] [blame] | 116 | if (ret == NULL) |
| 117 | ret = kmem_cache_alloc(radix_tree_node_cachep, |
| 118 | set_migrateflags(gfp_mask, __GFP_RECLAIMABLE)); |
| 119 | |
Nick Piggin | c0bc987 | 2007-10-16 01:24:42 -0700 | [diff] [blame] | 120 | BUG_ON(radix_tree_is_indirect_ptr(ret)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | return ret; |
| 122 | } |
| 123 | |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 124 | static void radix_tree_node_rcu_free(struct rcu_head *head) |
| 125 | { |
| 126 | struct radix_tree_node *node = |
| 127 | container_of(head, struct radix_tree_node, rcu_head); |
| 128 | kmem_cache_free(radix_tree_node_cachep, node); |
| 129 | } |
| 130 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | static inline void |
| 132 | radix_tree_node_free(struct radix_tree_node *node) |
| 133 | { |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 134 | call_rcu(&node->rcu_head, radix_tree_node_rcu_free); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | /* |
| 138 | * Load up this CPU's radix_tree_node buffer with sufficient objects to |
| 139 | * ensure that the addition of a single element in the tree cannot fail. On |
| 140 | * success, return zero, with preemption disabled. On error, return -ENOMEM |
| 141 | * with preemption not disabled. |
| 142 | */ |
Al Viro | dd0fc66 | 2005-10-07 07:46:04 +0100 | [diff] [blame] | 143 | int radix_tree_preload(gfp_t gfp_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | { |
| 145 | struct radix_tree_preload *rtp; |
| 146 | struct radix_tree_node *node; |
| 147 | int ret = -ENOMEM; |
| 148 | |
| 149 | preempt_disable(); |
| 150 | rtp = &__get_cpu_var(radix_tree_preloads); |
| 151 | while (rtp->nr < ARRAY_SIZE(rtp->nodes)) { |
| 152 | preempt_enable(); |
Mel Gorman | e12ba74 | 2007-10-16 01:25:52 -0700 | [diff] [blame] | 153 | node = kmem_cache_alloc(radix_tree_node_cachep, |
| 154 | set_migrateflags(gfp_mask, __GFP_RECLAIMABLE)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | if (node == NULL) |
| 156 | goto out; |
| 157 | preempt_disable(); |
| 158 | rtp = &__get_cpu_var(radix_tree_preloads); |
| 159 | if (rtp->nr < ARRAY_SIZE(rtp->nodes)) |
| 160 | rtp->nodes[rtp->nr++] = node; |
| 161 | else |
| 162 | kmem_cache_free(radix_tree_node_cachep, node); |
| 163 | } |
| 164 | ret = 0; |
| 165 | out: |
| 166 | return ret; |
| 167 | } |
David Chinner | d7f0923 | 2007-07-14 16:05:04 +1000 | [diff] [blame] | 168 | EXPORT_SYMBOL(radix_tree_preload); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | |
Jonathan Corbet | daff89f | 2006-03-25 03:08:05 -0800 | [diff] [blame] | 170 | static inline void tag_set(struct radix_tree_node *node, unsigned int tag, |
| 171 | int offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | { |
Nick Piggin | d527426 | 2006-01-08 01:01:41 -0800 | [diff] [blame] | 173 | __set_bit(offset, node->tags[tag]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | } |
| 175 | |
Jonathan Corbet | daff89f | 2006-03-25 03:08:05 -0800 | [diff] [blame] | 176 | static inline void tag_clear(struct radix_tree_node *node, unsigned int tag, |
| 177 | int offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | { |
Nick Piggin | d527426 | 2006-01-08 01:01:41 -0800 | [diff] [blame] | 179 | __clear_bit(offset, node->tags[tag]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | } |
| 181 | |
Jonathan Corbet | daff89f | 2006-03-25 03:08:05 -0800 | [diff] [blame] | 182 | static inline int tag_get(struct radix_tree_node *node, unsigned int tag, |
| 183 | int offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | { |
Nick Piggin | d527426 | 2006-01-08 01:01:41 -0800 | [diff] [blame] | 185 | return test_bit(offset, node->tags[tag]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | } |
| 187 | |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 188 | static inline void root_tag_set(struct radix_tree_root *root, unsigned int tag) |
| 189 | { |
Al Viro | 20241ad | 2006-10-10 22:47:57 +0100 | [diff] [blame] | 190 | root->gfp_mask |= (__force gfp_t)(1 << (tag + __GFP_BITS_SHIFT)); |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 191 | } |
| 192 | |
| 193 | |
| 194 | static inline void root_tag_clear(struct radix_tree_root *root, unsigned int tag) |
| 195 | { |
Al Viro | 20241ad | 2006-10-10 22:47:57 +0100 | [diff] [blame] | 196 | root->gfp_mask &= (__force gfp_t)~(1 << (tag + __GFP_BITS_SHIFT)); |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 197 | } |
| 198 | |
| 199 | static inline void root_tag_clear_all(struct radix_tree_root *root) |
| 200 | { |
| 201 | root->gfp_mask &= __GFP_BITS_MASK; |
| 202 | } |
| 203 | |
| 204 | static inline int root_tag_get(struct radix_tree_root *root, unsigned int tag) |
| 205 | { |
Al Viro | 20241ad | 2006-10-10 22:47:57 +0100 | [diff] [blame] | 206 | return (__force unsigned)root->gfp_mask & (1 << (tag + __GFP_BITS_SHIFT)); |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 207 | } |
| 208 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | /* |
Nick Piggin | 6e954b9 | 2006-01-08 01:01:40 -0800 | [diff] [blame] | 210 | * Returns 1 if any slot in the node has this tag set. |
| 211 | * Otherwise returns 0. |
| 212 | */ |
Jonathan Corbet | daff89f | 2006-03-25 03:08:05 -0800 | [diff] [blame] | 213 | static inline int any_tag_set(struct radix_tree_node *node, unsigned int tag) |
Nick Piggin | 6e954b9 | 2006-01-08 01:01:40 -0800 | [diff] [blame] | 214 | { |
| 215 | int idx; |
| 216 | for (idx = 0; idx < RADIX_TREE_TAG_LONGS; idx++) { |
| 217 | if (node->tags[tag][idx]) |
| 218 | return 1; |
| 219 | } |
| 220 | return 0; |
| 221 | } |
| 222 | |
| 223 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | * Return the maximum key which can be store into a |
| 225 | * radix tree with height HEIGHT. |
| 226 | */ |
| 227 | static inline unsigned long radix_tree_maxindex(unsigned int height) |
| 228 | { |
| 229 | return height_to_maxindex[height]; |
| 230 | } |
| 231 | |
| 232 | /* |
| 233 | * Extend a radix tree so it can store key @index. |
| 234 | */ |
| 235 | static int radix_tree_extend(struct radix_tree_root *root, unsigned long index) |
| 236 | { |
| 237 | struct radix_tree_node *node; |
| 238 | unsigned int height; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | int tag; |
| 240 | |
| 241 | /* Figure out what the height should be. */ |
| 242 | height = root->height + 1; |
| 243 | while (index > radix_tree_maxindex(height)) |
| 244 | height++; |
| 245 | |
| 246 | if (root->rnode == NULL) { |
| 247 | root->height = height; |
| 248 | goto out; |
| 249 | } |
| 250 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | do { |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 252 | unsigned int newheight; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | if (!(node = radix_tree_node_alloc(root))) |
| 254 | return -ENOMEM; |
| 255 | |
| 256 | /* Increase the height. */ |
Nick Piggin | c0bc987 | 2007-10-16 01:24:42 -0700 | [diff] [blame] | 257 | node->slots[0] = radix_tree_indirect_to_ptr(root->rnode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | |
| 259 | /* Propagate the aggregated tag info into the new root */ |
Jonathan Corbet | daff89f | 2006-03-25 03:08:05 -0800 | [diff] [blame] | 260 | for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++) { |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 261 | if (root_tag_get(root, tag)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | tag_set(node, tag, 0); |
| 263 | } |
| 264 | |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 265 | newheight = root->height+1; |
| 266 | node->height = newheight; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | node->count = 1; |
Nick Piggin | c0bc987 | 2007-10-16 01:24:42 -0700 | [diff] [blame] | 268 | node = radix_tree_ptr_to_indirect(node); |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 269 | rcu_assign_pointer(root->rnode, node); |
| 270 | root->height = newheight; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | } while (height > root->height); |
| 272 | out: |
| 273 | return 0; |
| 274 | } |
| 275 | |
| 276 | /** |
| 277 | * radix_tree_insert - insert into a radix tree |
| 278 | * @root: radix tree root |
| 279 | * @index: index key |
| 280 | * @item: item to insert |
| 281 | * |
| 282 | * Insert an item into the radix tree at position @index. |
| 283 | */ |
| 284 | int radix_tree_insert(struct radix_tree_root *root, |
| 285 | unsigned long index, void *item) |
| 286 | { |
Christoph Lameter | 201b626 | 2005-09-06 15:16:46 -0700 | [diff] [blame] | 287 | struct radix_tree_node *node = NULL, *slot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | unsigned int height, shift; |
| 289 | int offset; |
| 290 | int error; |
| 291 | |
Nick Piggin | c0bc987 | 2007-10-16 01:24:42 -0700 | [diff] [blame] | 292 | BUG_ON(radix_tree_is_indirect_ptr(item)); |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 293 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | /* Make sure the tree is high enough. */ |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 295 | if (index > radix_tree_maxindex(root->height)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | error = radix_tree_extend(root, index); |
| 297 | if (error) |
| 298 | return error; |
| 299 | } |
| 300 | |
Nick Piggin | c0bc987 | 2007-10-16 01:24:42 -0700 | [diff] [blame] | 301 | slot = radix_tree_indirect_to_ptr(root->rnode); |
| 302 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | height = root->height; |
| 304 | shift = (height-1) * RADIX_TREE_MAP_SHIFT; |
| 305 | |
| 306 | offset = 0; /* uninitialised var warning */ |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 307 | while (height > 0) { |
Christoph Lameter | 201b626 | 2005-09-06 15:16:46 -0700 | [diff] [blame] | 308 | if (slot == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | /* Have to add a child node. */ |
Christoph Lameter | 201b626 | 2005-09-06 15:16:46 -0700 | [diff] [blame] | 310 | if (!(slot = radix_tree_node_alloc(root))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | return -ENOMEM; |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 312 | slot->height = height; |
Christoph Lameter | 201b626 | 2005-09-06 15:16:46 -0700 | [diff] [blame] | 313 | if (node) { |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 314 | rcu_assign_pointer(node->slots[offset], slot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | node->count++; |
Christoph Lameter | 201b626 | 2005-09-06 15:16:46 -0700 | [diff] [blame] | 316 | } else |
Nick Piggin | c0bc987 | 2007-10-16 01:24:42 -0700 | [diff] [blame] | 317 | rcu_assign_pointer(root->rnode, |
| 318 | radix_tree_ptr_to_indirect(slot)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | } |
| 320 | |
| 321 | /* Go a level down */ |
| 322 | offset = (index >> shift) & RADIX_TREE_MAP_MASK; |
Christoph Lameter | 201b626 | 2005-09-06 15:16:46 -0700 | [diff] [blame] | 323 | node = slot; |
| 324 | slot = node->slots[offset]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | shift -= RADIX_TREE_MAP_SHIFT; |
| 326 | height--; |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 327 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | |
Christoph Lameter | 201b626 | 2005-09-06 15:16:46 -0700 | [diff] [blame] | 329 | if (slot != NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | return -EEXIST; |
Christoph Lameter | 201b626 | 2005-09-06 15:16:46 -0700 | [diff] [blame] | 331 | |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 332 | if (node) { |
| 333 | node->count++; |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 334 | rcu_assign_pointer(node->slots[offset], item); |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 335 | BUG_ON(tag_get(node, 0, offset)); |
| 336 | BUG_ON(tag_get(node, 1, offset)); |
| 337 | } else { |
Nick Piggin | c0bc987 | 2007-10-16 01:24:42 -0700 | [diff] [blame] | 338 | rcu_assign_pointer(root->rnode, item); |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 339 | BUG_ON(root_tag_get(root, 0)); |
| 340 | BUG_ON(root_tag_get(root, 1)); |
| 341 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | return 0; |
| 344 | } |
| 345 | EXPORT_SYMBOL(radix_tree_insert); |
| 346 | |
Hans Reiser | a433136 | 2005-11-07 00:59:29 -0800 | [diff] [blame] | 347 | /** |
| 348 | * radix_tree_lookup_slot - lookup a slot in a radix tree |
| 349 | * @root: radix tree root |
| 350 | * @index: index key |
| 351 | * |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 352 | * Returns: the slot corresponding to the position @index in the |
| 353 | * radix tree @root. This is useful for update-if-exists operations. |
| 354 | * |
| 355 | * This function cannot be called under rcu_read_lock, it must be |
| 356 | * excluded from writers, as must the returned slot for subsequent |
| 357 | * use by radix_tree_deref_slot() and radix_tree_replace slot. |
| 358 | * Caller must hold tree write locked across slot lookup and |
| 359 | * replace. |
Hans Reiser | a433136 | 2005-11-07 00:59:29 -0800 | [diff] [blame] | 360 | */ |
| 361 | void **radix_tree_lookup_slot(struct radix_tree_root *root, unsigned long index) |
| 362 | { |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 363 | unsigned int height, shift; |
| 364 | struct radix_tree_node *node, **slot; |
| 365 | |
| 366 | node = root->rnode; |
| 367 | if (node == NULL) |
| 368 | return NULL; |
| 369 | |
Nick Piggin | c0bc987 | 2007-10-16 01:24:42 -0700 | [diff] [blame] | 370 | if (!radix_tree_is_indirect_ptr(node)) { |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 371 | if (index > 0) |
| 372 | return NULL; |
| 373 | return (void **)&root->rnode; |
| 374 | } |
Nick Piggin | c0bc987 | 2007-10-16 01:24:42 -0700 | [diff] [blame] | 375 | node = radix_tree_indirect_to_ptr(node); |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 376 | |
| 377 | height = node->height; |
| 378 | if (index > radix_tree_maxindex(height)) |
| 379 | return NULL; |
| 380 | |
| 381 | shift = (height-1) * RADIX_TREE_MAP_SHIFT; |
| 382 | |
| 383 | do { |
| 384 | slot = (struct radix_tree_node **) |
| 385 | (node->slots + ((index>>shift) & RADIX_TREE_MAP_MASK)); |
| 386 | node = *slot; |
| 387 | if (node == NULL) |
| 388 | return NULL; |
| 389 | |
| 390 | shift -= RADIX_TREE_MAP_SHIFT; |
| 391 | height--; |
| 392 | } while (height > 0); |
| 393 | |
| 394 | return (void **)slot; |
Hans Reiser | a433136 | 2005-11-07 00:59:29 -0800 | [diff] [blame] | 395 | } |
| 396 | EXPORT_SYMBOL(radix_tree_lookup_slot); |
| 397 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | /** |
| 399 | * radix_tree_lookup - perform lookup operation on a radix tree |
| 400 | * @root: radix tree root |
| 401 | * @index: index key |
| 402 | * |
| 403 | * Lookup the item at the position @index in the radix tree @root. |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 404 | * |
| 405 | * This function can be called under rcu_read_lock, however the caller |
| 406 | * must manage lifetimes of leaf nodes (eg. RCU may also be used to free |
| 407 | * them safely). No RCU barriers are required to access or modify the |
| 408 | * returned item, however. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | */ |
| 410 | void *radix_tree_lookup(struct radix_tree_root *root, unsigned long index) |
| 411 | { |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 412 | unsigned int height, shift; |
| 413 | struct radix_tree_node *node, **slot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 415 | node = rcu_dereference(root->rnode); |
| 416 | if (node == NULL) |
| 417 | return NULL; |
| 418 | |
Nick Piggin | c0bc987 | 2007-10-16 01:24:42 -0700 | [diff] [blame] | 419 | if (!radix_tree_is_indirect_ptr(node)) { |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 420 | if (index > 0) |
| 421 | return NULL; |
Nick Piggin | c0bc987 | 2007-10-16 01:24:42 -0700 | [diff] [blame] | 422 | return node; |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 423 | } |
Nick Piggin | c0bc987 | 2007-10-16 01:24:42 -0700 | [diff] [blame] | 424 | node = radix_tree_indirect_to_ptr(node); |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 425 | |
| 426 | height = node->height; |
| 427 | if (index > radix_tree_maxindex(height)) |
| 428 | return NULL; |
| 429 | |
| 430 | shift = (height-1) * RADIX_TREE_MAP_SHIFT; |
| 431 | |
| 432 | do { |
| 433 | slot = (struct radix_tree_node **) |
| 434 | (node->slots + ((index>>shift) & RADIX_TREE_MAP_MASK)); |
| 435 | node = rcu_dereference(*slot); |
| 436 | if (node == NULL) |
| 437 | return NULL; |
| 438 | |
| 439 | shift -= RADIX_TREE_MAP_SHIFT; |
| 440 | height--; |
| 441 | } while (height > 0); |
| 442 | |
| 443 | return node; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | } |
| 445 | EXPORT_SYMBOL(radix_tree_lookup); |
| 446 | |
| 447 | /** |
| 448 | * radix_tree_tag_set - set a tag on a radix tree node |
| 449 | * @root: radix tree root |
| 450 | * @index: index key |
| 451 | * @tag: tag index |
| 452 | * |
Jonathan Corbet | daff89f | 2006-03-25 03:08:05 -0800 | [diff] [blame] | 453 | * Set the search tag (which must be < RADIX_TREE_MAX_TAGS) |
| 454 | * corresponding to @index in the radix tree. From |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | * the root all the way down to the leaf node. |
| 456 | * |
| 457 | * Returns the address of the tagged item. Setting a tag on a not-present |
| 458 | * item is a bug. |
| 459 | */ |
| 460 | void *radix_tree_tag_set(struct radix_tree_root *root, |
Jonathan Corbet | daff89f | 2006-03-25 03:08:05 -0800 | [diff] [blame] | 461 | unsigned long index, unsigned int tag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | { |
| 463 | unsigned int height, shift; |
Christoph Lameter | 201b626 | 2005-09-06 15:16:46 -0700 | [diff] [blame] | 464 | struct radix_tree_node *slot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | |
| 466 | height = root->height; |
Peter Zijlstra | 4c91c36 | 2006-06-23 02:03:25 -0700 | [diff] [blame] | 467 | BUG_ON(index > radix_tree_maxindex(height)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | |
Nick Piggin | c0bc987 | 2007-10-16 01:24:42 -0700 | [diff] [blame] | 469 | slot = radix_tree_indirect_to_ptr(root->rnode); |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 470 | shift = (height - 1) * RADIX_TREE_MAP_SHIFT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | |
| 472 | while (height > 0) { |
| 473 | int offset; |
| 474 | |
| 475 | offset = (index >> shift) & RADIX_TREE_MAP_MASK; |
Nick Piggin | d527426 | 2006-01-08 01:01:41 -0800 | [diff] [blame] | 476 | if (!tag_get(slot, tag, offset)) |
| 477 | tag_set(slot, tag, offset); |
Christoph Lameter | 201b626 | 2005-09-06 15:16:46 -0700 | [diff] [blame] | 478 | slot = slot->slots[offset]; |
| 479 | BUG_ON(slot == NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | shift -= RADIX_TREE_MAP_SHIFT; |
| 481 | height--; |
| 482 | } |
| 483 | |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 484 | /* set the root's tag bit */ |
| 485 | if (slot && !root_tag_get(root, tag)) |
| 486 | root_tag_set(root, tag); |
| 487 | |
Christoph Lameter | 201b626 | 2005-09-06 15:16:46 -0700 | [diff] [blame] | 488 | return slot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | } |
| 490 | EXPORT_SYMBOL(radix_tree_tag_set); |
| 491 | |
| 492 | /** |
| 493 | * radix_tree_tag_clear - clear a tag on a radix tree node |
| 494 | * @root: radix tree root |
| 495 | * @index: index key |
| 496 | * @tag: tag index |
| 497 | * |
Jonathan Corbet | daff89f | 2006-03-25 03:08:05 -0800 | [diff] [blame] | 498 | * Clear the search tag (which must be < RADIX_TREE_MAX_TAGS) |
| 499 | * corresponding to @index in the radix tree. If |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | * this causes the leaf node to have no tags set then clear the tag in the |
| 501 | * next-to-leaf node, etc. |
| 502 | * |
| 503 | * Returns the address of the tagged item on success, else NULL. ie: |
| 504 | * has the same return value and semantics as radix_tree_lookup(). |
| 505 | */ |
| 506 | void *radix_tree_tag_clear(struct radix_tree_root *root, |
Jonathan Corbet | daff89f | 2006-03-25 03:08:05 -0800 | [diff] [blame] | 507 | unsigned long index, unsigned int tag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | { |
Jeff Moyer | 26fb158 | 2007-10-16 01:24:49 -0700 | [diff] [blame] | 509 | /* |
| 510 | * The radix tree path needs to be one longer than the maximum path |
| 511 | * since the "list" is null terminated. |
| 512 | */ |
| 513 | struct radix_tree_path path[RADIX_TREE_MAX_PATH + 1], *pathp = path; |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 514 | struct radix_tree_node *slot = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | unsigned int height, shift; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | |
| 517 | height = root->height; |
| 518 | if (index > radix_tree_maxindex(height)) |
| 519 | goto out; |
| 520 | |
| 521 | shift = (height - 1) * RADIX_TREE_MAP_SHIFT; |
| 522 | pathp->node = NULL; |
Nick Piggin | c0bc987 | 2007-10-16 01:24:42 -0700 | [diff] [blame] | 523 | slot = radix_tree_indirect_to_ptr(root->rnode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | |
| 525 | while (height > 0) { |
| 526 | int offset; |
| 527 | |
Christoph Lameter | 201b626 | 2005-09-06 15:16:46 -0700 | [diff] [blame] | 528 | if (slot == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | goto out; |
| 530 | |
| 531 | offset = (index >> shift) & RADIX_TREE_MAP_MASK; |
| 532 | pathp[1].offset = offset; |
Christoph Lameter | 201b626 | 2005-09-06 15:16:46 -0700 | [diff] [blame] | 533 | pathp[1].node = slot; |
| 534 | slot = slot->slots[offset]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | pathp++; |
| 536 | shift -= RADIX_TREE_MAP_SHIFT; |
| 537 | height--; |
| 538 | } |
| 539 | |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 540 | if (slot == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | goto out; |
| 542 | |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 543 | while (pathp->node) { |
Nick Piggin | d527426 | 2006-01-08 01:01:41 -0800 | [diff] [blame] | 544 | if (!tag_get(pathp->node, tag, pathp->offset)) |
| 545 | goto out; |
Christoph Lameter | 201b626 | 2005-09-06 15:16:46 -0700 | [diff] [blame] | 546 | tag_clear(pathp->node, tag, pathp->offset); |
Nick Piggin | 6e954b9 | 2006-01-08 01:01:40 -0800 | [diff] [blame] | 547 | if (any_tag_set(pathp->node, tag)) |
| 548 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | pathp--; |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 550 | } |
| 551 | |
| 552 | /* clear the root's tag bit */ |
| 553 | if (root_tag_get(root, tag)) |
| 554 | root_tag_clear(root, tag); |
| 555 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | out: |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 557 | return slot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | } |
| 559 | EXPORT_SYMBOL(radix_tree_tag_clear); |
| 560 | |
| 561 | #ifndef __KERNEL__ /* Only the test harness uses this at present */ |
| 562 | /** |
Marcelo Tosatti | 32605a1 | 2005-09-06 15:16:48 -0700 | [diff] [blame] | 563 | * radix_tree_tag_get - get a tag on a radix tree node |
| 564 | * @root: radix tree root |
| 565 | * @index: index key |
Jonathan Corbet | daff89f | 2006-03-25 03:08:05 -0800 | [diff] [blame] | 566 | * @tag: tag index (< RADIX_TREE_MAX_TAGS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | * |
Marcelo Tosatti | 32605a1 | 2005-09-06 15:16:48 -0700 | [diff] [blame] | 568 | * Return values: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | * |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 570 | * 0: tag not present or not set |
| 571 | * 1: tag set |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | */ |
| 573 | int radix_tree_tag_get(struct radix_tree_root *root, |
Jonathan Corbet | daff89f | 2006-03-25 03:08:05 -0800 | [diff] [blame] | 574 | unsigned long index, unsigned int tag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | { |
| 576 | unsigned int height, shift; |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 577 | struct radix_tree_node *node; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | int saw_unset_tag = 0; |
| 579 | |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 580 | /* check the root's tag bit */ |
| 581 | if (!root_tag_get(root, tag)) |
| 582 | return 0; |
| 583 | |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 584 | node = rcu_dereference(root->rnode); |
| 585 | if (node == NULL) |
| 586 | return 0; |
| 587 | |
Nick Piggin | c0bc987 | 2007-10-16 01:24:42 -0700 | [diff] [blame] | 588 | if (!radix_tree_is_indirect_ptr(node)) |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 589 | return (index == 0); |
Nick Piggin | c0bc987 | 2007-10-16 01:24:42 -0700 | [diff] [blame] | 590 | node = radix_tree_indirect_to_ptr(node); |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 591 | |
| 592 | height = node->height; |
| 593 | if (index > radix_tree_maxindex(height)) |
| 594 | return 0; |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 595 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | shift = (height - 1) * RADIX_TREE_MAP_SHIFT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | |
| 598 | for ( ; ; ) { |
| 599 | int offset; |
| 600 | |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 601 | if (node == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | return 0; |
| 603 | |
| 604 | offset = (index >> shift) & RADIX_TREE_MAP_MASK; |
| 605 | |
| 606 | /* |
| 607 | * This is just a debug check. Later, we can bale as soon as |
| 608 | * we see an unset tag. |
| 609 | */ |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 610 | if (!tag_get(node, tag, offset)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | saw_unset_tag = 1; |
| 612 | if (height == 1) { |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 613 | int ret = tag_get(node, tag, offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | |
| 615 | BUG_ON(ret && saw_unset_tag); |
Wu Fengguang | e5dcd90 | 2006-06-25 05:48:14 -0700 | [diff] [blame] | 616 | return !!ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | } |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 618 | node = rcu_dereference(node->slots[offset]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | shift -= RADIX_TREE_MAP_SHIFT; |
| 620 | height--; |
| 621 | } |
| 622 | } |
| 623 | EXPORT_SYMBOL(radix_tree_tag_get); |
| 624 | #endif |
| 625 | |
Fengguang Wu | 6df8ba4 | 2007-10-16 01:24:33 -0700 | [diff] [blame] | 626 | /** |
| 627 | * radix_tree_next_hole - find the next hole (not-present entry) |
| 628 | * @root: tree root |
| 629 | * @index: index key |
| 630 | * @max_scan: maximum range to search |
| 631 | * |
| 632 | * Search the set [index, min(index+max_scan-1, MAX_INDEX)] for the lowest |
| 633 | * indexed hole. |
| 634 | * |
| 635 | * Returns: the index of the hole if found, otherwise returns an index |
| 636 | * outside of the set specified (in which case 'return - index >= max_scan' |
| 637 | * will be true). |
| 638 | * |
| 639 | * radix_tree_next_hole may be called under rcu_read_lock. However, like |
| 640 | * radix_tree_gang_lookup, this will not atomically search a snapshot of the |
| 641 | * tree at a single point in time. For example, if a hole is created at index |
| 642 | * 5, then subsequently a hole is created at index 10, radix_tree_next_hole |
| 643 | * covering both indexes may return 10 if called under rcu_read_lock. |
| 644 | */ |
| 645 | unsigned long radix_tree_next_hole(struct radix_tree_root *root, |
| 646 | unsigned long index, unsigned long max_scan) |
| 647 | { |
| 648 | unsigned long i; |
| 649 | |
| 650 | for (i = 0; i < max_scan; i++) { |
| 651 | if (!radix_tree_lookup(root, index)) |
| 652 | break; |
| 653 | index++; |
| 654 | if (index == 0) |
| 655 | break; |
| 656 | } |
| 657 | |
| 658 | return index; |
| 659 | } |
| 660 | EXPORT_SYMBOL(radix_tree_next_hole); |
| 661 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | static unsigned int |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 663 | __lookup(struct radix_tree_node *slot, void **results, unsigned long index, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | unsigned int max_items, unsigned long *next_index) |
| 665 | { |
| 666 | unsigned int nr_found = 0; |
Christoph Lameter | 201b626 | 2005-09-06 15:16:46 -0700 | [diff] [blame] | 667 | unsigned int shift, height; |
Christoph Lameter | 201b626 | 2005-09-06 15:16:46 -0700 | [diff] [blame] | 668 | unsigned long i; |
| 669 | |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 670 | height = slot->height; |
| 671 | if (height == 0) |
Christoph Lameter | 201b626 | 2005-09-06 15:16:46 -0700 | [diff] [blame] | 672 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | shift = (height-1) * RADIX_TREE_MAP_SHIFT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | |
Christoph Lameter | 201b626 | 2005-09-06 15:16:46 -0700 | [diff] [blame] | 675 | for ( ; height > 1; height--) { |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 676 | i = (index >> shift) & RADIX_TREE_MAP_MASK; |
| 677 | for (;;) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | if (slot->slots[i] != NULL) |
| 679 | break; |
| 680 | index &= ~((1UL << shift) - 1); |
| 681 | index += 1UL << shift; |
| 682 | if (index == 0) |
| 683 | goto out; /* 32-bit wraparound */ |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 684 | i++; |
| 685 | if (i == RADIX_TREE_MAP_SIZE) |
| 686 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | shift -= RADIX_TREE_MAP_SHIFT; |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 690 | slot = rcu_dereference(slot->slots[i]); |
| 691 | if (slot == NULL) |
| 692 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | } |
Christoph Lameter | 201b626 | 2005-09-06 15:16:46 -0700 | [diff] [blame] | 694 | |
| 695 | /* Bottom level: grab some items */ |
| 696 | for (i = index & RADIX_TREE_MAP_MASK; i < RADIX_TREE_MAP_SIZE; i++) { |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 697 | struct radix_tree_node *node; |
Christoph Lameter | 201b626 | 2005-09-06 15:16:46 -0700 | [diff] [blame] | 698 | index++; |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 699 | node = slot->slots[i]; |
| 700 | if (node) { |
| 701 | results[nr_found++] = rcu_dereference(node); |
Christoph Lameter | 201b626 | 2005-09-06 15:16:46 -0700 | [diff] [blame] | 702 | if (nr_found == max_items) |
| 703 | goto out; |
| 704 | } |
| 705 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | out: |
| 707 | *next_index = index; |
| 708 | return nr_found; |
| 709 | } |
| 710 | |
| 711 | /** |
| 712 | * radix_tree_gang_lookup - perform multiple lookup on a radix tree |
| 713 | * @root: radix tree root |
| 714 | * @results: where the results of the lookup are placed |
| 715 | * @first_index: start the lookup from this key |
| 716 | * @max_items: place up to this many items at *results |
| 717 | * |
| 718 | * Performs an index-ascending scan of the tree for present items. Places |
| 719 | * them at *@results and returns the number of items which were placed at |
| 720 | * *@results. |
| 721 | * |
| 722 | * The implementation is naive. |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 723 | * |
| 724 | * Like radix_tree_lookup, radix_tree_gang_lookup may be called under |
| 725 | * rcu_read_lock. In this case, rather than the returned results being |
| 726 | * an atomic snapshot of the tree at a single point in time, the semantics |
| 727 | * of an RCU protected gang lookup are as though multiple radix_tree_lookups |
| 728 | * have been issued in individual locks, and results stored in 'results'. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | */ |
| 730 | unsigned int |
| 731 | radix_tree_gang_lookup(struct radix_tree_root *root, void **results, |
| 732 | unsigned long first_index, unsigned int max_items) |
| 733 | { |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 734 | unsigned long max_index; |
| 735 | struct radix_tree_node *node; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | unsigned long cur_index = first_index; |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 737 | unsigned int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 739 | node = rcu_dereference(root->rnode); |
| 740 | if (!node) |
| 741 | return 0; |
| 742 | |
Nick Piggin | c0bc987 | 2007-10-16 01:24:42 -0700 | [diff] [blame] | 743 | if (!radix_tree_is_indirect_ptr(node)) { |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 744 | if (first_index > 0) |
| 745 | return 0; |
Nick Piggin | c0bc987 | 2007-10-16 01:24:42 -0700 | [diff] [blame] | 746 | results[0] = node; |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 747 | return 1; |
| 748 | } |
Nick Piggin | c0bc987 | 2007-10-16 01:24:42 -0700 | [diff] [blame] | 749 | node = radix_tree_indirect_to_ptr(node); |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 750 | |
| 751 | max_index = radix_tree_maxindex(node->height); |
| 752 | |
| 753 | ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | while (ret < max_items) { |
| 755 | unsigned int nr_found; |
| 756 | unsigned long next_index; /* Index of next search */ |
| 757 | |
| 758 | if (cur_index > max_index) |
| 759 | break; |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 760 | nr_found = __lookup(node, results + ret, cur_index, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | max_items - ret, &next_index); |
| 762 | ret += nr_found; |
| 763 | if (next_index == 0) |
| 764 | break; |
| 765 | cur_index = next_index; |
| 766 | } |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 767 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | return ret; |
| 769 | } |
| 770 | EXPORT_SYMBOL(radix_tree_gang_lookup); |
| 771 | |
| 772 | /* |
| 773 | * FIXME: the two tag_get()s here should use find_next_bit() instead of |
| 774 | * open-coding the search. |
| 775 | */ |
| 776 | static unsigned int |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 777 | __lookup_tag(struct radix_tree_node *slot, void **results, unsigned long index, |
Jonathan Corbet | daff89f | 2006-03-25 03:08:05 -0800 | [diff] [blame] | 778 | unsigned int max_items, unsigned long *next_index, unsigned int tag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | { |
| 780 | unsigned int nr_found = 0; |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 781 | unsigned int shift, height; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 783 | height = slot->height; |
| 784 | if (height == 0) |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 785 | goto out; |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 786 | shift = (height-1) * RADIX_TREE_MAP_SHIFT; |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 787 | |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 788 | while (height > 0) { |
| 789 | unsigned long i = (index >> shift) & RADIX_TREE_MAP_MASK ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 791 | for (;;) { |
| 792 | if (tag_get(slot, tag, i)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | index &= ~((1UL << shift) - 1); |
| 795 | index += 1UL << shift; |
| 796 | if (index == 0) |
| 797 | goto out; /* 32-bit wraparound */ |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 798 | i++; |
| 799 | if (i == RADIX_TREE_MAP_SIZE) |
| 800 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | height--; |
| 803 | if (height == 0) { /* Bottom level: grab some items */ |
| 804 | unsigned long j = index & RADIX_TREE_MAP_MASK; |
| 805 | |
| 806 | for ( ; j < RADIX_TREE_MAP_SIZE; j++) { |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 807 | struct radix_tree_node *node; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | index++; |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 809 | if (!tag_get(slot, tag, j)) |
| 810 | continue; |
| 811 | node = slot->slots[j]; |
| 812 | /* |
| 813 | * Even though the tag was found set, we need to |
| 814 | * recheck that we have a non-NULL node, because |
| 815 | * if this lookup is lockless, it may have been |
| 816 | * subsequently deleted. |
| 817 | * |
| 818 | * Similar care must be taken in any place that |
| 819 | * lookup ->slots[x] without a lock (ie. can't |
| 820 | * rely on its value remaining the same). |
| 821 | */ |
| 822 | if (node) { |
| 823 | node = rcu_dereference(node); |
| 824 | results[nr_found++] = node; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | if (nr_found == max_items) |
| 826 | goto out; |
| 827 | } |
| 828 | } |
| 829 | } |
| 830 | shift -= RADIX_TREE_MAP_SHIFT; |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 831 | slot = rcu_dereference(slot->slots[i]); |
| 832 | if (slot == NULL) |
| 833 | break; |
| 834 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | out: |
| 836 | *next_index = index; |
| 837 | return nr_found; |
| 838 | } |
| 839 | |
| 840 | /** |
| 841 | * radix_tree_gang_lookup_tag - perform multiple lookup on a radix tree |
| 842 | * based on a tag |
| 843 | * @root: radix tree root |
| 844 | * @results: where the results of the lookup are placed |
| 845 | * @first_index: start the lookup from this key |
| 846 | * @max_items: place up to this many items at *results |
Jonathan Corbet | daff89f | 2006-03-25 03:08:05 -0800 | [diff] [blame] | 847 | * @tag: the tag index (< RADIX_TREE_MAX_TAGS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | * |
| 849 | * Performs an index-ascending scan of the tree for present items which |
| 850 | * have the tag indexed by @tag set. Places the items at *@results and |
| 851 | * returns the number of items which were placed at *@results. |
| 852 | */ |
| 853 | unsigned int |
| 854 | radix_tree_gang_lookup_tag(struct radix_tree_root *root, void **results, |
Jonathan Corbet | daff89f | 2006-03-25 03:08:05 -0800 | [diff] [blame] | 855 | unsigned long first_index, unsigned int max_items, |
| 856 | unsigned int tag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | { |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 858 | struct radix_tree_node *node; |
| 859 | unsigned long max_index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | unsigned long cur_index = first_index; |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 861 | unsigned int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 863 | /* check the root's tag bit */ |
| 864 | if (!root_tag_get(root, tag)) |
| 865 | return 0; |
| 866 | |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 867 | node = rcu_dereference(root->rnode); |
| 868 | if (!node) |
| 869 | return 0; |
| 870 | |
Nick Piggin | c0bc987 | 2007-10-16 01:24:42 -0700 | [diff] [blame] | 871 | if (!radix_tree_is_indirect_ptr(node)) { |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 872 | if (first_index > 0) |
| 873 | return 0; |
Nick Piggin | c0bc987 | 2007-10-16 01:24:42 -0700 | [diff] [blame] | 874 | results[0] = node; |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 875 | return 1; |
| 876 | } |
Nick Piggin | c0bc987 | 2007-10-16 01:24:42 -0700 | [diff] [blame] | 877 | node = radix_tree_indirect_to_ptr(node); |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 878 | |
| 879 | max_index = radix_tree_maxindex(node->height); |
| 880 | |
| 881 | ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | while (ret < max_items) { |
| 883 | unsigned int nr_found; |
| 884 | unsigned long next_index; /* Index of next search */ |
| 885 | |
| 886 | if (cur_index > max_index) |
| 887 | break; |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 888 | nr_found = __lookup_tag(node, results + ret, cur_index, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 889 | max_items - ret, &next_index, tag); |
| 890 | ret += nr_found; |
| 891 | if (next_index == 0) |
| 892 | break; |
| 893 | cur_index = next_index; |
| 894 | } |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 895 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | return ret; |
| 897 | } |
| 898 | EXPORT_SYMBOL(radix_tree_gang_lookup_tag); |
| 899 | |
| 900 | /** |
Nick Piggin | a5f51c9 | 2006-01-08 01:01:41 -0800 | [diff] [blame] | 901 | * radix_tree_shrink - shrink height of a radix tree to minimal |
| 902 | * @root radix tree root |
| 903 | */ |
| 904 | static inline void radix_tree_shrink(struct radix_tree_root *root) |
| 905 | { |
| 906 | /* try to shrink tree height */ |
Nick Piggin | c0bc987 | 2007-10-16 01:24:42 -0700 | [diff] [blame] | 907 | while (root->height > 0) { |
Nick Piggin | a5f51c9 | 2006-01-08 01:01:41 -0800 | [diff] [blame] | 908 | struct radix_tree_node *to_free = root->rnode; |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 909 | void *newptr; |
Nick Piggin | a5f51c9 | 2006-01-08 01:01:41 -0800 | [diff] [blame] | 910 | |
Nick Piggin | c0bc987 | 2007-10-16 01:24:42 -0700 | [diff] [blame] | 911 | BUG_ON(!radix_tree_is_indirect_ptr(to_free)); |
| 912 | to_free = radix_tree_indirect_to_ptr(to_free); |
| 913 | |
| 914 | /* |
| 915 | * The candidate node has more than one child, or its child |
| 916 | * is not at the leftmost slot, we cannot shrink. |
| 917 | */ |
| 918 | if (to_free->count != 1) |
| 919 | break; |
| 920 | if (!to_free->slots[0]) |
| 921 | break; |
| 922 | |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 923 | /* |
| 924 | * We don't need rcu_assign_pointer(), since we are simply |
| 925 | * moving the node from one part of the tree to another. If |
| 926 | * it was safe to dereference the old pointer to it |
| 927 | * (to_free->slots[0]), it will be safe to dereference the new |
| 928 | * one (root->rnode). |
| 929 | */ |
| 930 | newptr = to_free->slots[0]; |
Nick Piggin | c0bc987 | 2007-10-16 01:24:42 -0700 | [diff] [blame] | 931 | if (root->height > 1) |
| 932 | newptr = radix_tree_ptr_to_indirect(newptr); |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 933 | root->rnode = newptr; |
Nick Piggin | a5f51c9 | 2006-01-08 01:01:41 -0800 | [diff] [blame] | 934 | root->height--; |
| 935 | /* must only free zeroed nodes into the slab */ |
| 936 | tag_clear(to_free, 0, 0); |
| 937 | tag_clear(to_free, 1, 0); |
| 938 | to_free->slots[0] = NULL; |
| 939 | to_free->count = 0; |
| 940 | radix_tree_node_free(to_free); |
| 941 | } |
| 942 | } |
| 943 | |
| 944 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 945 | * radix_tree_delete - delete an item from a radix tree |
| 946 | * @root: radix tree root |
| 947 | * @index: index key |
| 948 | * |
| 949 | * Remove the item at @index from the radix tree rooted at @root. |
| 950 | * |
| 951 | * Returns the address of the deleted item, or NULL if it was not present. |
| 952 | */ |
| 953 | void *radix_tree_delete(struct radix_tree_root *root, unsigned long index) |
| 954 | { |
Jeff Moyer | 26fb158 | 2007-10-16 01:24:49 -0700 | [diff] [blame] | 955 | /* |
| 956 | * The radix tree path needs to be one longer than the maximum path |
| 957 | * since the "list" is null terminated. |
| 958 | */ |
| 959 | struct radix_tree_path path[RADIX_TREE_MAX_PATH + 1], *pathp = path; |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 960 | struct radix_tree_node *slot = NULL; |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 961 | struct radix_tree_node *to_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | unsigned int height, shift; |
Nick Piggin | d527426 | 2006-01-08 01:01:41 -0800 | [diff] [blame] | 963 | int tag; |
| 964 | int offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | |
| 966 | height = root->height; |
| 967 | if (index > radix_tree_maxindex(height)) |
| 968 | goto out; |
| 969 | |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 970 | slot = root->rnode; |
Nick Piggin | c0bc987 | 2007-10-16 01:24:42 -0700 | [diff] [blame] | 971 | if (height == 0) { |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 972 | root_tag_clear_all(root); |
| 973 | root->rnode = NULL; |
| 974 | goto out; |
| 975 | } |
Nick Piggin | c0bc987 | 2007-10-16 01:24:42 -0700 | [diff] [blame] | 976 | slot = radix_tree_indirect_to_ptr(slot); |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 977 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 978 | shift = (height - 1) * RADIX_TREE_MAP_SHIFT; |
| 979 | pathp->node = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 980 | |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 981 | do { |
Christoph Lameter | 201b626 | 2005-09-06 15:16:46 -0700 | [diff] [blame] | 982 | if (slot == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 983 | goto out; |
| 984 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | pathp++; |
Nick Piggin | d527426 | 2006-01-08 01:01:41 -0800 | [diff] [blame] | 986 | offset = (index >> shift) & RADIX_TREE_MAP_MASK; |
| 987 | pathp->offset = offset; |
| 988 | pathp->node = slot; |
| 989 | slot = slot->slots[offset]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | shift -= RADIX_TREE_MAP_SHIFT; |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 991 | height--; |
| 992 | } while (height > 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 993 | |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 994 | if (slot == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 995 | goto out; |
| 996 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 997 | /* |
| 998 | * Clear all tags associated with the just-deleted item |
| 999 | */ |
Jonathan Corbet | daff89f | 2006-03-25 03:08:05 -0800 | [diff] [blame] | 1000 | for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++) { |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 1001 | if (tag_get(pathp->node, tag, pathp->offset)) |
| 1002 | radix_tree_tag_clear(root, index, tag); |
Nick Piggin | d527426 | 2006-01-08 01:01:41 -0800 | [diff] [blame] | 1003 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1004 | |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 1005 | to_free = NULL; |
Christoph Lameter | 201b626 | 2005-09-06 15:16:46 -0700 | [diff] [blame] | 1006 | /* Now free the nodes we do not need anymore */ |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 1007 | while (pathp->node) { |
Christoph Lameter | 201b626 | 2005-09-06 15:16:46 -0700 | [diff] [blame] | 1008 | pathp->node->slots[pathp->offset] = NULL; |
Nick Piggin | a5f51c9 | 2006-01-08 01:01:41 -0800 | [diff] [blame] | 1009 | pathp->node->count--; |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 1010 | /* |
| 1011 | * Queue the node for deferred freeing after the |
| 1012 | * last reference to it disappears (set NULL, above). |
| 1013 | */ |
| 1014 | if (to_free) |
| 1015 | radix_tree_node_free(to_free); |
Nick Piggin | a5f51c9 | 2006-01-08 01:01:41 -0800 | [diff] [blame] | 1016 | |
| 1017 | if (pathp->node->count) { |
Nick Piggin | c0bc987 | 2007-10-16 01:24:42 -0700 | [diff] [blame] | 1018 | if (pathp->node == |
| 1019 | radix_tree_indirect_to_ptr(root->rnode)) |
Nick Piggin | a5f51c9 | 2006-01-08 01:01:41 -0800 | [diff] [blame] | 1020 | radix_tree_shrink(root); |
Christoph Lameter | 201b626 | 2005-09-06 15:16:46 -0700 | [diff] [blame] | 1021 | goto out; |
Nick Piggin | a5f51c9 | 2006-01-08 01:01:41 -0800 | [diff] [blame] | 1022 | } |
Christoph Lameter | 201b626 | 2005-09-06 15:16:46 -0700 | [diff] [blame] | 1023 | |
| 1024 | /* Node with zero slots in use so free it */ |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 1025 | to_free = pathp->node; |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 1026 | pathp--; |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 1027 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | } |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 1029 | root_tag_clear_all(root); |
Christoph Lameter | 201b626 | 2005-09-06 15:16:46 -0700 | [diff] [blame] | 1030 | root->height = 0; |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 1031 | root->rnode = NULL; |
Nick Piggin | 7cf9c2c | 2006-12-06 20:33:44 -0800 | [diff] [blame] | 1032 | if (to_free) |
| 1033 | radix_tree_node_free(to_free); |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 1034 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1035 | out: |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 1036 | return slot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | } |
| 1038 | EXPORT_SYMBOL(radix_tree_delete); |
| 1039 | |
| 1040 | /** |
| 1041 | * radix_tree_tagged - test whether any items in the tree are tagged |
| 1042 | * @root: radix tree root |
| 1043 | * @tag: tag to test |
| 1044 | */ |
Jonathan Corbet | daff89f | 2006-03-25 03:08:05 -0800 | [diff] [blame] | 1045 | int radix_tree_tagged(struct radix_tree_root *root, unsigned int tag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | { |
Nick Piggin | 612d6c1 | 2006-06-23 02:03:22 -0700 | [diff] [blame] | 1047 | return root_tag_get(root, tag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1048 | } |
| 1049 | EXPORT_SYMBOL(radix_tree_tagged); |
| 1050 | |
| 1051 | static void |
Christoph Lameter | 4ba9b9d | 2007-10-16 23:25:51 -0700 | [diff] [blame] | 1052 | radix_tree_node_ctor(struct kmem_cache *cachep, void *node) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | { |
| 1054 | memset(node, 0, sizeof(struct radix_tree_node)); |
| 1055 | } |
| 1056 | |
| 1057 | static __init unsigned long __maxindex(unsigned int height) |
| 1058 | { |
Peter Lund | 430d275 | 2007-10-16 23:29:35 -0700 | [diff] [blame] | 1059 | unsigned int width = height * RADIX_TREE_MAP_SHIFT; |
| 1060 | int shift = RADIX_TREE_INDEX_BITS - width; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1061 | |
Peter Lund | 430d275 | 2007-10-16 23:29:35 -0700 | [diff] [blame] | 1062 | if (shift < 0) |
| 1063 | return ~0UL; |
| 1064 | if (shift >= BITS_PER_LONG) |
| 1065 | return 0UL; |
| 1066 | return ~0UL >> shift; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1067 | } |
| 1068 | |
| 1069 | static __init void radix_tree_init_maxindex(void) |
| 1070 | { |
| 1071 | unsigned int i; |
| 1072 | |
| 1073 | for (i = 0; i < ARRAY_SIZE(height_to_maxindex); i++) |
| 1074 | height_to_maxindex[i] = __maxindex(i); |
| 1075 | } |
| 1076 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1077 | static int radix_tree_callback(struct notifier_block *nfb, |
| 1078 | unsigned long action, |
| 1079 | void *hcpu) |
| 1080 | { |
| 1081 | int cpu = (long)hcpu; |
| 1082 | struct radix_tree_preload *rtp; |
| 1083 | |
| 1084 | /* Free per-cpu pool of perloaded nodes */ |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 1085 | if (action == CPU_DEAD || action == CPU_DEAD_FROZEN) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1086 | rtp = &per_cpu(radix_tree_preloads, cpu); |
| 1087 | while (rtp->nr) { |
| 1088 | kmem_cache_free(radix_tree_node_cachep, |
| 1089 | rtp->nodes[rtp->nr-1]); |
| 1090 | rtp->nodes[rtp->nr-1] = NULL; |
| 1091 | rtp->nr--; |
| 1092 | } |
| 1093 | } |
| 1094 | return NOTIFY_OK; |
| 1095 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1096 | |
| 1097 | void __init radix_tree_init(void) |
| 1098 | { |
| 1099 | radix_tree_node_cachep = kmem_cache_create("radix_tree_node", |
| 1100 | sizeof(struct radix_tree_node), 0, |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 1101 | SLAB_PANIC, radix_tree_node_ctor); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1102 | radix_tree_init_maxindex(); |
| 1103 | hotcpu_notifier(radix_tree_callback, 0); |
| 1104 | } |