Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Resizable, Scalable, Concurrent Hash Table |
| 3 | * |
| 4 | * Copyright (c) 2014 Thomas Graf <tgraf@suug.ch> |
| 5 | * Copyright (c) 2008-2014 Patrick McHardy <kaber@trash.net> |
| 6 | * |
| 7 | * Based on the following paper: |
| 8 | * https://www.usenix.org/legacy/event/atc11/tech/final_files/Triplett.pdf |
| 9 | * |
| 10 | * Code partially derived from nft_hash |
| 11 | * |
| 12 | * This program is free software; you can redistribute it and/or modify |
| 13 | * it under the terms of the GNU General Public License version 2 as |
| 14 | * published by the Free Software Foundation. |
| 15 | */ |
| 16 | |
| 17 | #include <linux/kernel.h> |
| 18 | #include <linux/init.h> |
| 19 | #include <linux/log2.h> |
| 20 | #include <linux/slab.h> |
| 21 | #include <linux/vmalloc.h> |
| 22 | #include <linux/mm.h> |
Daniel Borkmann | 8754589 | 2014-12-10 16:33:11 +0100 | [diff] [blame] | 23 | #include <linux/jhash.h> |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 24 | #include <linux/random.h> |
| 25 | #include <linux/rhashtable.h> |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 26 | |
| 27 | #define HASH_DEFAULT_SIZE 64UL |
| 28 | #define HASH_MIN_SIZE 4UL |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 29 | #define BUCKET_LOCKS_PER_CPU 128UL |
| 30 | |
Thomas Graf | f89bd6f | 2015-01-02 23:00:21 +0100 | [diff] [blame] | 31 | /* Base bits plus 1 bit for nulls marker */ |
| 32 | #define HASH_RESERVED_SPACE (RHT_BASE_BITS + 1) |
| 33 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 34 | enum { |
| 35 | RHT_LOCK_NORMAL, |
| 36 | RHT_LOCK_NESTED, |
| 37 | RHT_LOCK_NESTED2, |
| 38 | }; |
| 39 | |
| 40 | /* The bucket lock is selected based on the hash and protects mutations |
| 41 | * on a group of hash buckets. |
| 42 | * |
| 43 | * IMPORTANT: When holding the bucket lock of both the old and new table |
| 44 | * during expansions and shrinking, the old bucket lock must always be |
| 45 | * acquired first. |
| 46 | */ |
| 47 | static spinlock_t *bucket_lock(const struct bucket_table *tbl, u32 hash) |
| 48 | { |
| 49 | return &tbl->locks[hash & tbl->locks_mask]; |
| 50 | } |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 51 | |
| 52 | #define ASSERT_RHT_MUTEX(HT) BUG_ON(!lockdep_rht_mutex_is_held(HT)) |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 53 | #define ASSERT_BUCKET_LOCK(TBL, HASH) \ |
| 54 | BUG_ON(!lockdep_rht_bucket_is_held(TBL, HASH)) |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 55 | |
| 56 | #ifdef CONFIG_PROVE_LOCKING |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 57 | int lockdep_rht_mutex_is_held(struct rhashtable *ht) |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 58 | { |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 59 | return (debug_locks) ? lockdep_is_held(&ht->mutex) : 1; |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 60 | } |
| 61 | EXPORT_SYMBOL_GPL(lockdep_rht_mutex_is_held); |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 62 | |
| 63 | int lockdep_rht_bucket_is_held(const struct bucket_table *tbl, u32 hash) |
| 64 | { |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 65 | spinlock_t *lock = bucket_lock(tbl, hash); |
| 66 | |
| 67 | return (debug_locks) ? lockdep_is_held(lock) : 1; |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 68 | } |
| 69 | EXPORT_SYMBOL_GPL(lockdep_rht_bucket_is_held); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 70 | #endif |
| 71 | |
Thomas Graf | c91eee5 | 2014-08-13 16:38:30 +0200 | [diff] [blame] | 72 | static void *rht_obj(const struct rhashtable *ht, const struct rhash_head *he) |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 73 | { |
| 74 | return (void *) he - ht->p.head_offset; |
| 75 | } |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 76 | |
Thomas Graf | 8d24c0b | 2015-01-02 23:00:14 +0100 | [diff] [blame] | 77 | static u32 rht_bucket_index(const struct bucket_table *tbl, u32 hash) |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 78 | { |
Thomas Graf | 8d24c0b | 2015-01-02 23:00:14 +0100 | [diff] [blame] | 79 | return hash & (tbl->size - 1); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 80 | } |
| 81 | |
Thomas Graf | 8d24c0b | 2015-01-02 23:00:14 +0100 | [diff] [blame] | 82 | static u32 obj_raw_hashfn(const struct rhashtable *ht, const void *ptr) |
| 83 | { |
| 84 | u32 hash; |
| 85 | |
| 86 | if (unlikely(!ht->p.key_len)) |
| 87 | hash = ht->p.obj_hashfn(ptr, ht->p.hash_rnd); |
| 88 | else |
| 89 | hash = ht->p.hashfn(ptr + ht->p.key_offset, ht->p.key_len, |
| 90 | ht->p.hash_rnd); |
| 91 | |
Thomas Graf | f89bd6f | 2015-01-02 23:00:21 +0100 | [diff] [blame] | 92 | return hash >> HASH_RESERVED_SPACE; |
Thomas Graf | 8d24c0b | 2015-01-02 23:00:14 +0100 | [diff] [blame] | 93 | } |
| 94 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 95 | static u32 key_hashfn(struct rhashtable *ht, const void *key, u32 len) |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 96 | { |
| 97 | struct bucket_table *tbl = rht_dereference_rcu(ht->tbl, ht); |
Thomas Graf | 8d24c0b | 2015-01-02 23:00:14 +0100 | [diff] [blame] | 98 | u32 hash; |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 99 | |
Thomas Graf | 8d24c0b | 2015-01-02 23:00:14 +0100 | [diff] [blame] | 100 | hash = ht->p.hashfn(key, len, ht->p.hash_rnd); |
Thomas Graf | f89bd6f | 2015-01-02 23:00:21 +0100 | [diff] [blame] | 101 | hash >>= HASH_RESERVED_SPACE; |
Thomas Graf | 8d24c0b | 2015-01-02 23:00:14 +0100 | [diff] [blame] | 102 | |
| 103 | return rht_bucket_index(tbl, hash); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 104 | } |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 105 | |
| 106 | static u32 head_hashfn(const struct rhashtable *ht, |
Thomas Graf | 8d24c0b | 2015-01-02 23:00:14 +0100 | [diff] [blame] | 107 | const struct bucket_table *tbl, |
| 108 | const struct rhash_head *he) |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 109 | { |
Thomas Graf | 8d24c0b | 2015-01-02 23:00:14 +0100 | [diff] [blame] | 110 | return rht_bucket_index(tbl, obj_raw_hashfn(ht, rht_obj(ht, he))); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 111 | } |
| 112 | |
Thomas Graf | b8e1943 | 2015-01-02 23:00:17 +0100 | [diff] [blame] | 113 | static struct rhash_head __rcu **bucket_tail(struct bucket_table *tbl, u32 n) |
| 114 | { |
| 115 | struct rhash_head __rcu **pprev; |
| 116 | |
| 117 | for (pprev = &tbl->buckets[n]; |
Thomas Graf | f89bd6f | 2015-01-02 23:00:21 +0100 | [diff] [blame] | 118 | !rht_is_a_nulls(rht_dereference_bucket(*pprev, tbl, n)); |
Thomas Graf | b8e1943 | 2015-01-02 23:00:17 +0100 | [diff] [blame] | 119 | pprev = &rht_dereference_bucket(*pprev, tbl, n)->next) |
| 120 | ; |
| 121 | |
| 122 | return pprev; |
| 123 | } |
| 124 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 125 | static int alloc_bucket_locks(struct rhashtable *ht, struct bucket_table *tbl) |
| 126 | { |
| 127 | unsigned int i, size; |
| 128 | #if defined(CONFIG_PROVE_LOCKING) |
| 129 | unsigned int nr_pcpus = 2; |
| 130 | #else |
| 131 | unsigned int nr_pcpus = num_possible_cpus(); |
| 132 | #endif |
| 133 | |
| 134 | nr_pcpus = min_t(unsigned int, nr_pcpus, 32UL); |
| 135 | size = roundup_pow_of_two(nr_pcpus * ht->p.locks_mul); |
| 136 | |
| 137 | /* Never allocate more than one lock per bucket */ |
| 138 | size = min_t(unsigned int, size, tbl->size); |
| 139 | |
| 140 | if (sizeof(spinlock_t) != 0) { |
| 141 | #ifdef CONFIG_NUMA |
| 142 | if (size * sizeof(spinlock_t) > PAGE_SIZE) |
| 143 | tbl->locks = vmalloc(size * sizeof(spinlock_t)); |
| 144 | else |
| 145 | #endif |
| 146 | tbl->locks = kmalloc_array(size, sizeof(spinlock_t), |
| 147 | GFP_KERNEL); |
| 148 | if (!tbl->locks) |
| 149 | return -ENOMEM; |
| 150 | for (i = 0; i < size; i++) |
| 151 | spin_lock_init(&tbl->locks[i]); |
| 152 | } |
| 153 | tbl->locks_mask = size - 1; |
| 154 | |
| 155 | return 0; |
| 156 | } |
| 157 | |
| 158 | static void bucket_table_free(const struct bucket_table *tbl) |
| 159 | { |
| 160 | if (tbl) |
| 161 | kvfree(tbl->locks); |
| 162 | |
| 163 | kvfree(tbl); |
| 164 | } |
| 165 | |
| 166 | static struct bucket_table *bucket_table_alloc(struct rhashtable *ht, |
| 167 | size_t nbuckets) |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 168 | { |
| 169 | struct bucket_table *tbl; |
| 170 | size_t size; |
Thomas Graf | f89bd6f | 2015-01-02 23:00:21 +0100 | [diff] [blame] | 171 | int i; |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 172 | |
| 173 | size = sizeof(*tbl) + nbuckets * sizeof(tbl->buckets[0]); |
Thomas Graf | 6eba822 | 2014-11-13 13:45:46 +0100 | [diff] [blame] | 174 | tbl = kzalloc(size, GFP_KERNEL | __GFP_NOWARN); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 175 | if (tbl == NULL) |
| 176 | tbl = vzalloc(size); |
| 177 | |
| 178 | if (tbl == NULL) |
| 179 | return NULL; |
| 180 | |
| 181 | tbl->size = nbuckets; |
| 182 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 183 | if (alloc_bucket_locks(ht, tbl) < 0) { |
| 184 | bucket_table_free(tbl); |
| 185 | return NULL; |
| 186 | } |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 187 | |
Thomas Graf | f89bd6f | 2015-01-02 23:00:21 +0100 | [diff] [blame] | 188 | for (i = 0; i < nbuckets; i++) |
| 189 | INIT_RHT_NULLS_HEAD(tbl->buckets[i], ht, i); |
| 190 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 191 | return tbl; |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 192 | } |
| 193 | |
| 194 | /** |
| 195 | * rht_grow_above_75 - returns true if nelems > 0.75 * table-size |
| 196 | * @ht: hash table |
| 197 | * @new_size: new table size |
| 198 | */ |
| 199 | bool rht_grow_above_75(const struct rhashtable *ht, size_t new_size) |
| 200 | { |
| 201 | /* Expand table when exceeding 75% load */ |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 202 | return atomic_read(&ht->nelems) > (new_size / 4 * 3); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 203 | } |
| 204 | EXPORT_SYMBOL_GPL(rht_grow_above_75); |
| 205 | |
| 206 | /** |
| 207 | * rht_shrink_below_30 - returns true if nelems < 0.3 * table-size |
| 208 | * @ht: hash table |
| 209 | * @new_size: new table size |
| 210 | */ |
| 211 | bool rht_shrink_below_30(const struct rhashtable *ht, size_t new_size) |
| 212 | { |
| 213 | /* Shrink table beneath 30% load */ |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 214 | return atomic_read(&ht->nelems) < (new_size * 3 / 10); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 215 | } |
| 216 | EXPORT_SYMBOL_GPL(rht_shrink_below_30); |
| 217 | |
| 218 | static void hashtable_chain_unzip(const struct rhashtable *ht, |
| 219 | const struct bucket_table *new_tbl, |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 220 | struct bucket_table *old_tbl, |
| 221 | size_t old_hash) |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 222 | { |
| 223 | struct rhash_head *he, *p, *next; |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 224 | spinlock_t *new_bucket_lock, *new_bucket_lock2 = NULL; |
| 225 | unsigned int new_hash, new_hash2; |
| 226 | |
| 227 | ASSERT_BUCKET_LOCK(old_tbl, old_hash); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 228 | |
| 229 | /* Old bucket empty, no work needed. */ |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 230 | p = rht_dereference_bucket(old_tbl->buckets[old_hash], old_tbl, |
| 231 | old_hash); |
Thomas Graf | f89bd6f | 2015-01-02 23:00:21 +0100 | [diff] [blame] | 232 | if (rht_is_a_nulls(p)) |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 233 | return; |
| 234 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 235 | new_hash = new_hash2 = head_hashfn(ht, new_tbl, p); |
| 236 | new_bucket_lock = bucket_lock(new_tbl, new_hash); |
| 237 | |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 238 | /* Advance the old bucket pointer one or more times until it |
| 239 | * reaches a node that doesn't hash to the same bucket as the |
| 240 | * previous node p. Call the previous node p; |
| 241 | */ |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 242 | rht_for_each_continue(he, p->next, old_tbl, old_hash) { |
| 243 | new_hash2 = head_hashfn(ht, new_tbl, he); |
| 244 | if (new_hash != new_hash2) |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 245 | break; |
| 246 | p = he; |
| 247 | } |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 248 | rcu_assign_pointer(old_tbl->buckets[old_hash], p->next); |
| 249 | |
| 250 | spin_lock_bh_nested(new_bucket_lock, RHT_LOCK_NESTED); |
| 251 | |
| 252 | /* If we have encountered an entry that maps to a different bucket in |
| 253 | * the new table, lock down that bucket as well as we might cut off |
| 254 | * the end of the chain. |
| 255 | */ |
| 256 | new_bucket_lock2 = bucket_lock(new_tbl, new_hash); |
| 257 | if (new_bucket_lock != new_bucket_lock2) |
| 258 | spin_lock_bh_nested(new_bucket_lock2, RHT_LOCK_NESTED2); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 259 | |
| 260 | /* Find the subsequent node which does hash to the same |
| 261 | * bucket as node P, or NULL if no such node exists. |
| 262 | */ |
Thomas Graf | f89bd6f | 2015-01-02 23:00:21 +0100 | [diff] [blame] | 263 | INIT_RHT_NULLS_HEAD(next, ht, old_hash); |
| 264 | if (!rht_is_a_nulls(he)) { |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 265 | rht_for_each_continue(he, he->next, old_tbl, old_hash) { |
| 266 | if (head_hashfn(ht, new_tbl, he) == new_hash) { |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 267 | next = he; |
| 268 | break; |
| 269 | } |
| 270 | } |
| 271 | } |
| 272 | |
| 273 | /* Set p's next pointer to that subsequent node pointer, |
| 274 | * bypassing the nodes which do not hash to p's bucket |
| 275 | */ |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 276 | rcu_assign_pointer(p->next, next); |
| 277 | |
| 278 | if (new_bucket_lock != new_bucket_lock2) |
| 279 | spin_unlock_bh(new_bucket_lock2); |
| 280 | spin_unlock_bh(new_bucket_lock); |
| 281 | } |
| 282 | |
| 283 | static void link_old_to_new(struct bucket_table *new_tbl, |
| 284 | unsigned int new_hash, struct rhash_head *entry) |
| 285 | { |
| 286 | spinlock_t *new_bucket_lock; |
| 287 | |
| 288 | new_bucket_lock = bucket_lock(new_tbl, new_hash); |
| 289 | |
| 290 | spin_lock_bh_nested(new_bucket_lock, RHT_LOCK_NESTED); |
| 291 | rcu_assign_pointer(*bucket_tail(new_tbl, new_hash), entry); |
| 292 | spin_unlock_bh(new_bucket_lock); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 293 | } |
| 294 | |
| 295 | /** |
| 296 | * rhashtable_expand - Expand hash table while allowing concurrent lookups |
| 297 | * @ht: the hash table to expand |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 298 | * |
| 299 | * A secondary bucket array is allocated and the hash entries are migrated |
| 300 | * while keeping them on both lists until the end of the RCU grace period. |
| 301 | * |
| 302 | * This function may only be called in a context where it is safe to call |
| 303 | * synchronize_rcu(), e.g. not within a rcu_read_lock() section. |
| 304 | * |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 305 | * The caller must ensure that no concurrent resizing occurs by holding |
| 306 | * ht->mutex. |
| 307 | * |
| 308 | * It is valid to have concurrent insertions and deletions protected by per |
| 309 | * bucket locks or concurrent RCU protected lookups and traversals. |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 310 | */ |
Thomas Graf | 6eba822 | 2014-11-13 13:45:46 +0100 | [diff] [blame] | 311 | int rhashtable_expand(struct rhashtable *ht) |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 312 | { |
| 313 | struct bucket_table *new_tbl, *old_tbl = rht_dereference(ht->tbl, ht); |
| 314 | struct rhash_head *he; |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 315 | spinlock_t *old_bucket_lock; |
| 316 | unsigned int new_hash, old_hash; |
| 317 | bool complete = false; |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 318 | |
| 319 | ASSERT_RHT_MUTEX(ht); |
| 320 | |
| 321 | if (ht->p.max_shift && ht->shift >= ht->p.max_shift) |
| 322 | return 0; |
| 323 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 324 | new_tbl = bucket_table_alloc(ht, old_tbl->size * 2); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 325 | if (new_tbl == NULL) |
| 326 | return -ENOMEM; |
| 327 | |
| 328 | ht->shift++; |
| 329 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 330 | /* Make insertions go into the new, empty table right away. Deletions |
| 331 | * and lookups will be attempted in both tables until we synchronize. |
| 332 | * The synchronize_rcu() guarantees for the new table to be picked up |
| 333 | * so no new additions go into the old table while we relink. |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 334 | */ |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 335 | rcu_assign_pointer(ht->future_tbl, new_tbl); |
| 336 | synchronize_rcu(); |
| 337 | |
| 338 | /* For each new bucket, search the corresponding old bucket for the |
| 339 | * first entry that hashes to the new bucket, and link the end of |
| 340 | * newly formed bucket chain (containing entries added to future |
| 341 | * table) to that entry. Since all the entries which will end up in |
| 342 | * the new bucket appear in the same old bucket, this constructs an |
| 343 | * entirely valid new hash table, but with multiple buckets |
| 344 | * "zipped" together into a single imprecise chain. |
| 345 | */ |
| 346 | for (new_hash = 0; new_hash < new_tbl->size; new_hash++) { |
| 347 | old_hash = rht_bucket_index(old_tbl, new_hash); |
| 348 | old_bucket_lock = bucket_lock(old_tbl, old_hash); |
| 349 | |
| 350 | spin_lock_bh(old_bucket_lock); |
| 351 | rht_for_each(he, old_tbl, old_hash) { |
| 352 | if (head_hashfn(ht, new_tbl, he) == new_hash) { |
| 353 | link_old_to_new(new_tbl, new_hash, he); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 354 | break; |
| 355 | } |
| 356 | } |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 357 | spin_unlock_bh(old_bucket_lock); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 358 | } |
| 359 | |
| 360 | /* Publish the new table pointer. Lookups may now traverse |
Herbert Xu | 0c828f2 | 2014-11-13 13:10:48 +0800 | [diff] [blame] | 361 | * the new table, but they will not benefit from any |
| 362 | * additional efficiency until later steps unzip the buckets. |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 363 | */ |
| 364 | rcu_assign_pointer(ht->tbl, new_tbl); |
| 365 | |
| 366 | /* Unzip interleaved hash chains */ |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 367 | while (!complete && !ht->being_destroyed) { |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 368 | /* Wait for readers. All new readers will see the new |
| 369 | * table, and thus no references to the old table will |
| 370 | * remain. |
| 371 | */ |
| 372 | synchronize_rcu(); |
| 373 | |
| 374 | /* For each bucket in the old table (each of which |
| 375 | * contains items from multiple buckets of the new |
| 376 | * table): ... |
| 377 | */ |
| 378 | complete = true; |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 379 | for (old_hash = 0; old_hash < old_tbl->size; old_hash++) { |
Thomas Graf | f89bd6f | 2015-01-02 23:00:21 +0100 | [diff] [blame] | 380 | struct rhash_head *head; |
| 381 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 382 | old_bucket_lock = bucket_lock(old_tbl, old_hash); |
| 383 | spin_lock_bh(old_bucket_lock); |
| 384 | |
| 385 | hashtable_chain_unzip(ht, new_tbl, old_tbl, old_hash); |
Thomas Graf | f89bd6f | 2015-01-02 23:00:21 +0100 | [diff] [blame] | 386 | head = rht_dereference_bucket(old_tbl->buckets[old_hash], |
| 387 | old_tbl, old_hash); |
| 388 | if (!rht_is_a_nulls(head)) |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 389 | complete = false; |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 390 | |
| 391 | spin_unlock_bh(old_bucket_lock); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 392 | } |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 393 | } |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 394 | |
| 395 | bucket_table_free(old_tbl); |
| 396 | return 0; |
| 397 | } |
| 398 | EXPORT_SYMBOL_GPL(rhashtable_expand); |
| 399 | |
| 400 | /** |
| 401 | * rhashtable_shrink - Shrink hash table while allowing concurrent lookups |
| 402 | * @ht: the hash table to shrink |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 403 | * |
| 404 | * This function may only be called in a context where it is safe to call |
| 405 | * synchronize_rcu(), e.g. not within a rcu_read_lock() section. |
| 406 | * |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 407 | * The caller must ensure that no concurrent resizing occurs by holding |
| 408 | * ht->mutex. |
| 409 | * |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 410 | * The caller must ensure that no concurrent table mutations take place. |
| 411 | * It is however valid to have concurrent lookups if they are RCU protected. |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 412 | * |
| 413 | * It is valid to have concurrent insertions and deletions protected by per |
| 414 | * bucket locks or concurrent RCU protected lookups and traversals. |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 415 | */ |
Thomas Graf | 6eba822 | 2014-11-13 13:45:46 +0100 | [diff] [blame] | 416 | int rhashtable_shrink(struct rhashtable *ht) |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 417 | { |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 418 | struct bucket_table *new_tbl, *tbl = rht_dereference(ht->tbl, ht); |
| 419 | spinlock_t *new_bucket_lock, *old_bucket_lock1, *old_bucket_lock2; |
| 420 | unsigned int new_hash; |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 421 | |
| 422 | ASSERT_RHT_MUTEX(ht); |
| 423 | |
Ying Xue | 9400017 | 2014-09-03 09:22:36 +0800 | [diff] [blame] | 424 | if (ht->shift <= ht->p.min_shift) |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 425 | return 0; |
| 426 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 427 | new_tbl = bucket_table_alloc(ht, tbl->size / 2); |
| 428 | if (new_tbl == NULL) |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 429 | return -ENOMEM; |
| 430 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 431 | rcu_assign_pointer(ht->future_tbl, new_tbl); |
| 432 | synchronize_rcu(); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 433 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 434 | /* Link the first entry in the old bucket to the end of the |
| 435 | * bucket in the new table. As entries are concurrently being |
| 436 | * added to the new table, lock down the new bucket. As we |
| 437 | * always divide the size in half when shrinking, each bucket |
| 438 | * in the new table maps to exactly two buckets in the old |
| 439 | * table. |
| 440 | * |
| 441 | * As removals can occur concurrently on the old table, we need |
| 442 | * to lock down both matching buckets in the old table. |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 443 | */ |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 444 | for (new_hash = 0; new_hash < new_tbl->size; new_hash++) { |
| 445 | old_bucket_lock1 = bucket_lock(tbl, new_hash); |
| 446 | old_bucket_lock2 = bucket_lock(tbl, new_hash + new_tbl->size); |
| 447 | new_bucket_lock = bucket_lock(new_tbl, new_hash); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 448 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 449 | spin_lock_bh(old_bucket_lock1); |
| 450 | spin_lock_bh_nested(old_bucket_lock2, RHT_LOCK_NESTED); |
| 451 | spin_lock_bh_nested(new_bucket_lock, RHT_LOCK_NESTED2); |
| 452 | |
| 453 | rcu_assign_pointer(*bucket_tail(new_tbl, new_hash), |
| 454 | tbl->buckets[new_hash]); |
| 455 | rcu_assign_pointer(*bucket_tail(new_tbl, new_hash), |
| 456 | tbl->buckets[new_hash + new_tbl->size]); |
| 457 | |
| 458 | spin_unlock_bh(new_bucket_lock); |
| 459 | spin_unlock_bh(old_bucket_lock2); |
| 460 | spin_unlock_bh(old_bucket_lock1); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 461 | } |
| 462 | |
| 463 | /* Publish the new, valid hash table */ |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 464 | rcu_assign_pointer(ht->tbl, new_tbl); |
| 465 | ht->shift--; |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 466 | |
| 467 | /* Wait for readers. No new readers will have references to the |
| 468 | * old hash table. |
| 469 | */ |
| 470 | synchronize_rcu(); |
| 471 | |
| 472 | bucket_table_free(tbl); |
| 473 | |
| 474 | return 0; |
| 475 | } |
| 476 | EXPORT_SYMBOL_GPL(rhashtable_shrink); |
| 477 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 478 | static void rht_deferred_worker(struct work_struct *work) |
| 479 | { |
| 480 | struct rhashtable *ht; |
| 481 | struct bucket_table *tbl; |
| 482 | |
| 483 | ht = container_of(work, struct rhashtable, run_work.work); |
| 484 | mutex_lock(&ht->mutex); |
| 485 | tbl = rht_dereference(ht->tbl, ht); |
| 486 | |
| 487 | if (ht->p.grow_decision && ht->p.grow_decision(ht, tbl->size)) |
| 488 | rhashtable_expand(ht); |
| 489 | else if (ht->p.shrink_decision && ht->p.shrink_decision(ht, tbl->size)) |
| 490 | rhashtable_shrink(ht); |
| 491 | |
| 492 | mutex_unlock(&ht->mutex); |
| 493 | } |
| 494 | |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 495 | /** |
| 496 | * rhashtable_insert - insert object into hash hash table |
| 497 | * @ht: hash table |
| 498 | * @obj: pointer to hash head inside object |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 499 | * |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 500 | * Will take a per bucket spinlock to protect against mutual mutations |
| 501 | * on the same bucket. Multiple insertions may occur in parallel unless |
| 502 | * they map to the same bucket lock. |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 503 | * |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 504 | * It is safe to call this function from atomic context. |
| 505 | * |
| 506 | * Will trigger an automatic deferred table resizing if the size grows |
| 507 | * beyond the watermark indicated by grow_decision() which can be passed |
| 508 | * to rhashtable_init(). |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 509 | */ |
Thomas Graf | 6eba822 | 2014-11-13 13:45:46 +0100 | [diff] [blame] | 510 | void rhashtable_insert(struct rhashtable *ht, struct rhash_head *obj) |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 511 | { |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 512 | struct bucket_table *tbl; |
Thomas Graf | f89bd6f | 2015-01-02 23:00:21 +0100 | [diff] [blame] | 513 | struct rhash_head *head; |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 514 | spinlock_t *lock; |
| 515 | unsigned hash; |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 516 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 517 | rcu_read_lock(); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 518 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 519 | tbl = rht_dereference_rcu(ht->future_tbl, ht); |
Thomas Graf | 8d24c0b | 2015-01-02 23:00:14 +0100 | [diff] [blame] | 520 | hash = head_hashfn(ht, tbl, obj); |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 521 | lock = bucket_lock(tbl, hash); |
| 522 | |
| 523 | spin_lock_bh(lock); |
Thomas Graf | f89bd6f | 2015-01-02 23:00:21 +0100 | [diff] [blame] | 524 | head = rht_dereference_bucket(tbl->buckets[hash], tbl, hash); |
| 525 | if (rht_is_a_nulls(head)) |
| 526 | INIT_RHT_NULLS_HEAD(obj->next, ht, hash); |
| 527 | else |
| 528 | RCU_INIT_POINTER(obj->next, head); |
| 529 | |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 530 | rcu_assign_pointer(tbl->buckets[hash], obj); |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 531 | spin_unlock_bh(lock); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 532 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 533 | atomic_inc(&ht->nelems); |
| 534 | |
| 535 | /* Only grow the table if no resizing is currently in progress. */ |
| 536 | if (ht->tbl != ht->future_tbl && |
| 537 | ht->p.grow_decision && ht->p.grow_decision(ht, tbl->size)) |
| 538 | schedule_delayed_work(&ht->run_work, 0); |
| 539 | |
| 540 | rcu_read_unlock(); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 541 | } |
| 542 | EXPORT_SYMBOL_GPL(rhashtable_insert); |
| 543 | |
| 544 | /** |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 545 | * rhashtable_remove - remove object from hash table |
| 546 | * @ht: hash table |
| 547 | * @obj: pointer to hash head inside object |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 548 | * |
| 549 | * Since the hash chain is single linked, the removal operation needs to |
| 550 | * walk the bucket chain upon removal. The removal operation is thus |
| 551 | * considerable slow if the hash table is not correctly sized. |
| 552 | * |
| 553 | * Will automatically shrink the table via rhashtable_expand() if the the |
| 554 | * shrink_decision function specified at rhashtable_init() returns true. |
| 555 | * |
| 556 | * The caller must ensure that no concurrent table mutations occur. It is |
| 557 | * however valid to have concurrent lookups if they are RCU protected. |
| 558 | */ |
Thomas Graf | 6eba822 | 2014-11-13 13:45:46 +0100 | [diff] [blame] | 559 | bool rhashtable_remove(struct rhashtable *ht, struct rhash_head *obj) |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 560 | { |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 561 | struct bucket_table *tbl; |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 562 | struct rhash_head __rcu **pprev; |
| 563 | struct rhash_head *he; |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 564 | spinlock_t *lock; |
| 565 | unsigned int hash; |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 566 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 567 | rcu_read_lock(); |
| 568 | tbl = rht_dereference_rcu(ht->tbl, ht); |
| 569 | hash = head_hashfn(ht, tbl, obj); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 570 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 571 | lock = bucket_lock(tbl, hash); |
| 572 | spin_lock_bh(lock); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 573 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 574 | restart: |
| 575 | pprev = &tbl->buckets[hash]; |
| 576 | rht_for_each(he, tbl, hash) { |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 577 | if (he != obj) { |
| 578 | pprev = &he->next; |
| 579 | continue; |
| 580 | } |
| 581 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 582 | rcu_assign_pointer(*pprev, obj->next); |
| 583 | atomic_dec(&ht->nelems); |
Thomas Graf | 897362e | 2015-01-02 23:00:18 +0100 | [diff] [blame] | 584 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 585 | spin_unlock_bh(lock); |
| 586 | |
| 587 | if (ht->tbl != ht->future_tbl && |
| 588 | ht->p.shrink_decision && |
Thomas Graf | 897362e | 2015-01-02 23:00:18 +0100 | [diff] [blame] | 589 | ht->p.shrink_decision(ht, tbl->size)) |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 590 | schedule_delayed_work(&ht->run_work, 0); |
| 591 | |
| 592 | rcu_read_unlock(); |
Thomas Graf | 897362e | 2015-01-02 23:00:18 +0100 | [diff] [blame] | 593 | |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 594 | return true; |
| 595 | } |
| 596 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 597 | if (tbl != rht_dereference_rcu(ht->tbl, ht)) { |
| 598 | spin_unlock_bh(lock); |
| 599 | |
| 600 | tbl = rht_dereference_rcu(ht->tbl, ht); |
| 601 | hash = head_hashfn(ht, tbl, obj); |
| 602 | |
| 603 | lock = bucket_lock(tbl, hash); |
| 604 | spin_lock_bh(lock); |
| 605 | goto restart; |
| 606 | } |
| 607 | |
| 608 | spin_unlock_bh(lock); |
| 609 | rcu_read_unlock(); |
| 610 | |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 611 | return false; |
| 612 | } |
| 613 | EXPORT_SYMBOL_GPL(rhashtable_remove); |
| 614 | |
Ying Xue | efb975a6 | 2015-01-07 13:41:52 +0800 | [diff] [blame^] | 615 | struct rhashtable_compare_arg { |
| 616 | struct rhashtable *ht; |
| 617 | const void *key; |
| 618 | }; |
| 619 | |
| 620 | static bool rhashtable_compare(void *ptr, void *arg) |
| 621 | { |
| 622 | struct rhashtable_compare_arg *x = arg; |
| 623 | struct rhashtable *ht = x->ht; |
| 624 | |
| 625 | return !memcmp(ptr + ht->p.key_offset, x->key, ht->p.key_len); |
| 626 | } |
| 627 | |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 628 | /** |
| 629 | * rhashtable_lookup - lookup key in hash table |
| 630 | * @ht: hash table |
| 631 | * @key: pointer to key |
| 632 | * |
| 633 | * Computes the hash value for the key and traverses the bucket chain looking |
| 634 | * for a entry with an identical key. The first matching entry is returned. |
| 635 | * |
| 636 | * This lookup function may only be used for fixed key hash table (key_len |
| 637 | * paramter set). It will BUG() if used inappropriately. |
| 638 | * |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 639 | * Lookups may occur in parallel with hashtable mutations and resizing. |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 640 | */ |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 641 | void *rhashtable_lookup(struct rhashtable *ht, const void *key) |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 642 | { |
Ying Xue | efb975a6 | 2015-01-07 13:41:52 +0800 | [diff] [blame^] | 643 | struct rhashtable_compare_arg arg = { |
| 644 | .ht = ht, |
| 645 | .key = key, |
| 646 | }; |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 647 | |
| 648 | BUG_ON(!ht->p.key_len); |
| 649 | |
Ying Xue | efb975a6 | 2015-01-07 13:41:52 +0800 | [diff] [blame^] | 650 | return rhashtable_lookup_compare(ht, key, &rhashtable_compare, &arg); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 651 | } |
| 652 | EXPORT_SYMBOL_GPL(rhashtable_lookup); |
| 653 | |
| 654 | /** |
| 655 | * rhashtable_lookup_compare - search hash table with compare function |
| 656 | * @ht: hash table |
Thomas Graf | 8d24c0b | 2015-01-02 23:00:14 +0100 | [diff] [blame] | 657 | * @key: the pointer to the key |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 658 | * @compare: compare function, must return true on match |
| 659 | * @arg: argument passed on to compare function |
| 660 | * |
| 661 | * Traverses the bucket chain behind the provided hash value and calls the |
| 662 | * specified compare function for each entry. |
| 663 | * |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 664 | * Lookups may occur in parallel with hashtable mutations and resizing. |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 665 | * |
| 666 | * Returns the first entry on which the compare function returned true. |
| 667 | */ |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 668 | void *rhashtable_lookup_compare(struct rhashtable *ht, const void *key, |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 669 | bool (*compare)(void *, void *), void *arg) |
| 670 | { |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 671 | const struct bucket_table *tbl, *old_tbl; |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 672 | struct rhash_head *he; |
Thomas Graf | 8d24c0b | 2015-01-02 23:00:14 +0100 | [diff] [blame] | 673 | u32 hash; |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 674 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 675 | rcu_read_lock(); |
| 676 | |
| 677 | old_tbl = rht_dereference_rcu(ht->tbl, ht); |
| 678 | tbl = rht_dereference_rcu(ht->future_tbl, ht); |
Thomas Graf | 8d24c0b | 2015-01-02 23:00:14 +0100 | [diff] [blame] | 679 | hash = key_hashfn(ht, key, ht->p.key_len); |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 680 | restart: |
| 681 | rht_for_each_rcu(he, tbl, rht_bucket_index(tbl, hash)) { |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 682 | if (!compare(rht_obj(ht, he), arg)) |
| 683 | continue; |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 684 | rcu_read_unlock(); |
Thomas Graf | a4b18cd | 2015-01-02 23:00:15 +0100 | [diff] [blame] | 685 | return rht_obj(ht, he); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 686 | } |
| 687 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 688 | if (unlikely(tbl != old_tbl)) { |
| 689 | tbl = old_tbl; |
| 690 | goto restart; |
| 691 | } |
| 692 | rcu_read_unlock(); |
| 693 | |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 694 | return NULL; |
| 695 | } |
| 696 | EXPORT_SYMBOL_GPL(rhashtable_lookup_compare); |
| 697 | |
Ying Xue | 9400017 | 2014-09-03 09:22:36 +0800 | [diff] [blame] | 698 | static size_t rounded_hashtable_size(struct rhashtable_params *params) |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 699 | { |
Ying Xue | 9400017 | 2014-09-03 09:22:36 +0800 | [diff] [blame] | 700 | return max(roundup_pow_of_two(params->nelem_hint * 4 / 3), |
| 701 | 1UL << params->min_shift); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 702 | } |
| 703 | |
| 704 | /** |
| 705 | * rhashtable_init - initialize a new hash table |
| 706 | * @ht: hash table to be initialized |
| 707 | * @params: configuration parameters |
| 708 | * |
| 709 | * Initializes a new hash table based on the provided configuration |
| 710 | * parameters. A table can be configured either with a variable or |
| 711 | * fixed length key: |
| 712 | * |
| 713 | * Configuration Example 1: Fixed length keys |
| 714 | * struct test_obj { |
| 715 | * int key; |
| 716 | * void * my_member; |
| 717 | * struct rhash_head node; |
| 718 | * }; |
| 719 | * |
| 720 | * struct rhashtable_params params = { |
| 721 | * .head_offset = offsetof(struct test_obj, node), |
| 722 | * .key_offset = offsetof(struct test_obj, key), |
| 723 | * .key_len = sizeof(int), |
Daniel Borkmann | 8754589 | 2014-12-10 16:33:11 +0100 | [diff] [blame] | 724 | * .hashfn = jhash, |
Thomas Graf | f89bd6f | 2015-01-02 23:00:21 +0100 | [diff] [blame] | 725 | * .nulls_base = (1U << RHT_BASE_SHIFT), |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 726 | * }; |
| 727 | * |
| 728 | * Configuration Example 2: Variable length keys |
| 729 | * struct test_obj { |
| 730 | * [...] |
| 731 | * struct rhash_head node; |
| 732 | * }; |
| 733 | * |
| 734 | * u32 my_hash_fn(const void *data, u32 seed) |
| 735 | * { |
| 736 | * struct test_obj *obj = data; |
| 737 | * |
| 738 | * return [... hash ...]; |
| 739 | * } |
| 740 | * |
| 741 | * struct rhashtable_params params = { |
| 742 | * .head_offset = offsetof(struct test_obj, node), |
Daniel Borkmann | 8754589 | 2014-12-10 16:33:11 +0100 | [diff] [blame] | 743 | * .hashfn = jhash, |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 744 | * .obj_hashfn = my_hash_fn, |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 745 | * }; |
| 746 | */ |
| 747 | int rhashtable_init(struct rhashtable *ht, struct rhashtable_params *params) |
| 748 | { |
| 749 | struct bucket_table *tbl; |
| 750 | size_t size; |
| 751 | |
| 752 | size = HASH_DEFAULT_SIZE; |
| 753 | |
| 754 | if ((params->key_len && !params->hashfn) || |
| 755 | (!params->key_len && !params->obj_hashfn)) |
| 756 | return -EINVAL; |
| 757 | |
Thomas Graf | f89bd6f | 2015-01-02 23:00:21 +0100 | [diff] [blame] | 758 | if (params->nulls_base && params->nulls_base < (1U << RHT_BASE_SHIFT)) |
| 759 | return -EINVAL; |
| 760 | |
Ying Xue | 9400017 | 2014-09-03 09:22:36 +0800 | [diff] [blame] | 761 | params->min_shift = max_t(size_t, params->min_shift, |
| 762 | ilog2(HASH_MIN_SIZE)); |
| 763 | |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 764 | if (params->nelem_hint) |
Ying Xue | 9400017 | 2014-09-03 09:22:36 +0800 | [diff] [blame] | 765 | size = rounded_hashtable_size(params); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 766 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 767 | memset(ht, 0, sizeof(*ht)); |
| 768 | mutex_init(&ht->mutex); |
| 769 | memcpy(&ht->p, params, sizeof(*params)); |
| 770 | |
| 771 | if (params->locks_mul) |
| 772 | ht->p.locks_mul = roundup_pow_of_two(params->locks_mul); |
| 773 | else |
| 774 | ht->p.locks_mul = BUCKET_LOCKS_PER_CPU; |
| 775 | |
| 776 | tbl = bucket_table_alloc(ht, size); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 777 | if (tbl == NULL) |
| 778 | return -ENOMEM; |
| 779 | |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 780 | ht->shift = ilog2(tbl->size); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 781 | RCU_INIT_POINTER(ht->tbl, tbl); |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 782 | RCU_INIT_POINTER(ht->future_tbl, tbl); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 783 | |
| 784 | if (!ht->p.hash_rnd) |
| 785 | get_random_bytes(&ht->p.hash_rnd, sizeof(ht->p.hash_rnd)); |
| 786 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 787 | if (ht->p.grow_decision || ht->p.shrink_decision) |
| 788 | INIT_DEFERRABLE_WORK(&ht->run_work, rht_deferred_worker); |
| 789 | |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 790 | return 0; |
| 791 | } |
| 792 | EXPORT_SYMBOL_GPL(rhashtable_init); |
| 793 | |
| 794 | /** |
| 795 | * rhashtable_destroy - destroy hash table |
| 796 | * @ht: the hash table to destroy |
| 797 | * |
Pablo Neira Ayuso | ae82ddc | 2014-09-02 00:26:05 +0200 | [diff] [blame] | 798 | * Frees the bucket array. This function is not rcu safe, therefore the caller |
| 799 | * has to make sure that no resizing may happen by unpublishing the hashtable |
| 800 | * and waiting for the quiescent cycle before releasing the bucket array. |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 801 | */ |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 802 | void rhashtable_destroy(struct rhashtable *ht) |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 803 | { |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 804 | ht->being_destroyed = true; |
| 805 | |
| 806 | mutex_lock(&ht->mutex); |
| 807 | |
| 808 | cancel_delayed_work(&ht->run_work); |
| 809 | bucket_table_free(rht_dereference(ht->tbl, ht)); |
| 810 | |
| 811 | mutex_unlock(&ht->mutex); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 812 | } |
| 813 | EXPORT_SYMBOL_GPL(rhashtable_destroy); |
| 814 | |
| 815 | /************************************************************************** |
| 816 | * Self Test |
| 817 | **************************************************************************/ |
| 818 | |
| 819 | #ifdef CONFIG_TEST_RHASHTABLE |
| 820 | |
| 821 | #define TEST_HT_SIZE 8 |
| 822 | #define TEST_ENTRIES 2048 |
| 823 | #define TEST_PTR ((void *) 0xdeadbeef) |
| 824 | #define TEST_NEXPANDS 4 |
| 825 | |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 826 | struct test_obj { |
| 827 | void *ptr; |
| 828 | int value; |
| 829 | struct rhash_head node; |
| 830 | }; |
| 831 | |
| 832 | static int __init test_rht_lookup(struct rhashtable *ht) |
| 833 | { |
| 834 | unsigned int i; |
| 835 | |
| 836 | for (i = 0; i < TEST_ENTRIES * 2; i++) { |
| 837 | struct test_obj *obj; |
| 838 | bool expected = !(i % 2); |
| 839 | u32 key = i; |
| 840 | |
| 841 | obj = rhashtable_lookup(ht, &key); |
| 842 | |
| 843 | if (expected && !obj) { |
| 844 | pr_warn("Test failed: Could not find key %u\n", key); |
| 845 | return -ENOENT; |
| 846 | } else if (!expected && obj) { |
| 847 | pr_warn("Test failed: Unexpected entry found for key %u\n", |
| 848 | key); |
| 849 | return -EEXIST; |
| 850 | } else if (expected && obj) { |
| 851 | if (obj->ptr != TEST_PTR || obj->value != i) { |
| 852 | pr_warn("Test failed: Lookup value mismatch %p!=%p, %u!=%u\n", |
| 853 | obj->ptr, TEST_PTR, obj->value, i); |
| 854 | return -EINVAL; |
| 855 | } |
| 856 | } |
| 857 | } |
| 858 | |
| 859 | return 0; |
| 860 | } |
| 861 | |
Thomas Graf | 3e7b2ec | 2014-11-24 12:37:58 +0100 | [diff] [blame] | 862 | static void test_bucket_stats(struct rhashtable *ht, bool quiet) |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 863 | { |
Thomas Graf | 3e7b2ec | 2014-11-24 12:37:58 +0100 | [diff] [blame] | 864 | unsigned int cnt, rcu_cnt, i, total = 0; |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 865 | struct rhash_head *pos; |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 866 | struct test_obj *obj; |
Thomas Graf | 3e7b2ec | 2014-11-24 12:37:58 +0100 | [diff] [blame] | 867 | struct bucket_table *tbl; |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 868 | |
Thomas Graf | 3e7b2ec | 2014-11-24 12:37:58 +0100 | [diff] [blame] | 869 | tbl = rht_dereference_rcu(ht->tbl, ht); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 870 | for (i = 0; i < tbl->size; i++) { |
Thomas Graf | 3e7b2ec | 2014-11-24 12:37:58 +0100 | [diff] [blame] | 871 | rcu_cnt = cnt = 0; |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 872 | |
| 873 | if (!quiet) |
| 874 | pr_info(" [%#4x/%zu]", i, tbl->size); |
| 875 | |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 876 | rht_for_each_entry_rcu(obj, pos, tbl, i, node) { |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 877 | cnt++; |
| 878 | total++; |
| 879 | if (!quiet) |
| 880 | pr_cont(" [%p],", obj); |
| 881 | } |
| 882 | |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 883 | rht_for_each_entry_rcu(obj, pos, tbl, i, node) |
Thomas Graf | 3e7b2ec | 2014-11-24 12:37:58 +0100 | [diff] [blame] | 884 | rcu_cnt++; |
| 885 | |
| 886 | if (rcu_cnt != cnt) |
| 887 | pr_warn("Test failed: Chain count mismach %d != %d", |
| 888 | cnt, rcu_cnt); |
| 889 | |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 890 | if (!quiet) |
| 891 | pr_cont("\n [%#x] first element: %p, chain length: %u\n", |
| 892 | i, tbl->buckets[i], cnt); |
| 893 | } |
| 894 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 895 | pr_info(" Traversal complete: counted=%u, nelems=%u, entries=%d\n", |
| 896 | total, atomic_read(&ht->nelems), TEST_ENTRIES); |
Thomas Graf | 3e7b2ec | 2014-11-24 12:37:58 +0100 | [diff] [blame] | 897 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 898 | if (total != atomic_read(&ht->nelems) || total != TEST_ENTRIES) |
Thomas Graf | 3e7b2ec | 2014-11-24 12:37:58 +0100 | [diff] [blame] | 899 | pr_warn("Test failed: Total count mismatch ^^^"); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 900 | } |
| 901 | |
| 902 | static int __init test_rhashtable(struct rhashtable *ht) |
| 903 | { |
| 904 | struct bucket_table *tbl; |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 905 | struct test_obj *obj; |
| 906 | struct rhash_head *pos, *next; |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 907 | int err; |
| 908 | unsigned int i; |
| 909 | |
| 910 | /* |
| 911 | * Insertion Test: |
| 912 | * Insert TEST_ENTRIES into table with all keys even numbers |
| 913 | */ |
| 914 | pr_info(" Adding %d keys\n", TEST_ENTRIES); |
| 915 | for (i = 0; i < TEST_ENTRIES; i++) { |
| 916 | struct test_obj *obj; |
| 917 | |
| 918 | obj = kzalloc(sizeof(*obj), GFP_KERNEL); |
| 919 | if (!obj) { |
| 920 | err = -ENOMEM; |
| 921 | goto error; |
| 922 | } |
| 923 | |
| 924 | obj->ptr = TEST_PTR; |
| 925 | obj->value = i * 2; |
| 926 | |
Thomas Graf | 6eba822 | 2014-11-13 13:45:46 +0100 | [diff] [blame] | 927 | rhashtable_insert(ht, &obj->node); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 928 | } |
| 929 | |
| 930 | rcu_read_lock(); |
Thomas Graf | 3e7b2ec | 2014-11-24 12:37:58 +0100 | [diff] [blame] | 931 | test_bucket_stats(ht, true); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 932 | test_rht_lookup(ht); |
| 933 | rcu_read_unlock(); |
| 934 | |
| 935 | for (i = 0; i < TEST_NEXPANDS; i++) { |
| 936 | pr_info(" Table expansion iteration %u...\n", i); |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 937 | mutex_lock(&ht->mutex); |
Thomas Graf | 6eba822 | 2014-11-13 13:45:46 +0100 | [diff] [blame] | 938 | rhashtable_expand(ht); |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 939 | mutex_unlock(&ht->mutex); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 940 | |
| 941 | rcu_read_lock(); |
| 942 | pr_info(" Verifying lookups...\n"); |
| 943 | test_rht_lookup(ht); |
| 944 | rcu_read_unlock(); |
| 945 | } |
| 946 | |
| 947 | for (i = 0; i < TEST_NEXPANDS; i++) { |
| 948 | pr_info(" Table shrinkage iteration %u...\n", i); |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 949 | mutex_lock(&ht->mutex); |
Thomas Graf | 6eba822 | 2014-11-13 13:45:46 +0100 | [diff] [blame] | 950 | rhashtable_shrink(ht); |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 951 | mutex_unlock(&ht->mutex); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 952 | |
| 953 | rcu_read_lock(); |
| 954 | pr_info(" Verifying lookups...\n"); |
| 955 | test_rht_lookup(ht); |
| 956 | rcu_read_unlock(); |
| 957 | } |
| 958 | |
Thomas Graf | 3e7b2ec | 2014-11-24 12:37:58 +0100 | [diff] [blame] | 959 | rcu_read_lock(); |
| 960 | test_bucket_stats(ht, true); |
| 961 | rcu_read_unlock(); |
| 962 | |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 963 | pr_info(" Deleting %d keys\n", TEST_ENTRIES); |
| 964 | for (i = 0; i < TEST_ENTRIES; i++) { |
| 965 | u32 key = i * 2; |
| 966 | |
| 967 | obj = rhashtable_lookup(ht, &key); |
| 968 | BUG_ON(!obj); |
| 969 | |
Thomas Graf | 6eba822 | 2014-11-13 13:45:46 +0100 | [diff] [blame] | 970 | rhashtable_remove(ht, &obj->node); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 971 | kfree(obj); |
| 972 | } |
| 973 | |
| 974 | return 0; |
| 975 | |
| 976 | error: |
| 977 | tbl = rht_dereference_rcu(ht->tbl, ht); |
| 978 | for (i = 0; i < tbl->size; i++) |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 979 | rht_for_each_entry_safe(obj, pos, next, tbl, i, node) |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 980 | kfree(obj); |
| 981 | |
| 982 | return err; |
| 983 | } |
| 984 | |
| 985 | static int __init test_rht_init(void) |
| 986 | { |
| 987 | struct rhashtable ht; |
| 988 | struct rhashtable_params params = { |
| 989 | .nelem_hint = TEST_HT_SIZE, |
| 990 | .head_offset = offsetof(struct test_obj, node), |
| 991 | .key_offset = offsetof(struct test_obj, value), |
| 992 | .key_len = sizeof(int), |
Daniel Borkmann | 8754589 | 2014-12-10 16:33:11 +0100 | [diff] [blame] | 993 | .hashfn = jhash, |
Thomas Graf | f89bd6f | 2015-01-02 23:00:21 +0100 | [diff] [blame] | 994 | .nulls_base = (3U << RHT_BASE_SHIFT), |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 995 | .grow_decision = rht_grow_above_75, |
| 996 | .shrink_decision = rht_shrink_below_30, |
| 997 | }; |
| 998 | int err; |
| 999 | |
| 1000 | pr_info("Running resizable hashtable tests...\n"); |
| 1001 | |
| 1002 | err = rhashtable_init(&ht, ¶ms); |
| 1003 | if (err < 0) { |
| 1004 | pr_warn("Test failed: Unable to initialize hashtable: %d\n", |
| 1005 | err); |
| 1006 | return err; |
| 1007 | } |
| 1008 | |
| 1009 | err = test_rhashtable(&ht); |
| 1010 | |
| 1011 | rhashtable_destroy(&ht); |
| 1012 | |
| 1013 | return err; |
| 1014 | } |
| 1015 | |
| 1016 | subsys_initcall(test_rht_init); |
| 1017 | |
| 1018 | #endif /* CONFIG_TEST_RHASHTABLE */ |