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 by Josh Triplett, Paul E. McKenney |
| 8 | * and Jonathan Walpole: |
| 9 | * https://www.usenix.org/legacy/event/atc11/tech/final_files/Triplett.pdf |
| 10 | * |
| 11 | * Code partially derived from nft_hash |
| 12 | * |
| 13 | * This program is free software; you can redistribute it and/or modify |
| 14 | * it under the terms of the GNU General Public License version 2 as |
| 15 | * published by the Free Software Foundation. |
| 16 | */ |
| 17 | |
| 18 | #ifndef _LINUX_RHASHTABLE_H |
| 19 | #define _LINUX_RHASHTABLE_H |
| 20 | |
Thomas Graf | f89bd6f | 2015-01-02 23:00:21 +0100 | [diff] [blame] | 21 | #include <linux/list_nulls.h> |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 22 | #include <linux/workqueue.h> |
Ying Xue | 86b35b6 | 2015-01-04 15:25:09 +0800 | [diff] [blame] | 23 | #include <linux/mutex.h> |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 24 | |
Thomas Graf | f89bd6f | 2015-01-02 23:00:21 +0100 | [diff] [blame] | 25 | /* |
| 26 | * The end of the chain is marked with a special nulls marks which has |
| 27 | * the following format: |
| 28 | * |
| 29 | * +-------+-----------------------------------------------------+-+ |
| 30 | * | Base | Hash |1| |
| 31 | * +-------+-----------------------------------------------------+-+ |
| 32 | * |
| 33 | * Base (4 bits) : Reserved to distinguish between multiple tables. |
| 34 | * Specified via &struct rhashtable_params.nulls_base. |
| 35 | * Hash (27 bits): Full hash (unmasked) of first element added to bucket |
| 36 | * 1 (1 bit) : Nulls marker (always set) |
| 37 | * |
| 38 | * The remaining bits of the next pointer remain unused for now. |
| 39 | */ |
| 40 | #define RHT_BASE_BITS 4 |
| 41 | #define RHT_HASH_BITS 27 |
| 42 | #define RHT_BASE_SHIFT RHT_HASH_BITS |
| 43 | |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 44 | struct rhash_head { |
Thomas Graf | 5300fdc | 2014-08-13 16:38:29 +0200 | [diff] [blame] | 45 | struct rhash_head __rcu *next; |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 46 | }; |
| 47 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 48 | /** |
| 49 | * struct bucket_table - Table of hash buckets |
| 50 | * @size: Number of hash buckets |
| 51 | * @locks_mask: Mask to apply before accessing locks[] |
| 52 | * @locks: Array of spinlocks protecting individual buckets |
| 53 | * @buckets: size * hash buckets |
| 54 | */ |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 55 | struct bucket_table { |
| 56 | size_t size; |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 57 | unsigned int locks_mask; |
| 58 | spinlock_t *locks; |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 59 | struct rhash_head __rcu *buckets[]; |
| 60 | }; |
| 61 | |
| 62 | typedef u32 (*rht_hashfn_t)(const void *data, u32 len, u32 seed); |
| 63 | typedef u32 (*rht_obj_hashfn_t)(const void *data, u32 seed); |
| 64 | |
| 65 | struct rhashtable; |
| 66 | |
| 67 | /** |
| 68 | * struct rhashtable_params - Hash table construction parameters |
| 69 | * @nelem_hint: Hint on number of elements, should be 75% of desired size |
| 70 | * @key_len: Length of key |
| 71 | * @key_offset: Offset of key in struct to be hashed |
| 72 | * @head_offset: Offset of rhash_head in struct to be hashed |
| 73 | * @hash_rnd: Seed to use while hashing |
| 74 | * @max_shift: Maximum number of shifts while expanding |
Ying Xue | 9400017 | 2014-09-03 09:22:36 +0800 | [diff] [blame] | 75 | * @min_shift: Minimum number of shifts while shrinking |
Thomas Graf | f89bd6f | 2015-01-02 23:00:21 +0100 | [diff] [blame] | 76 | * @nulls_base: Base value to generate nulls marker |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 77 | * @locks_mul: Number of bucket locks to allocate per cpu (default: 128) |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 78 | * @hashfn: Function to hash key |
| 79 | * @obj_hashfn: Function to hash object |
| 80 | * @grow_decision: If defined, may return true if table should expand |
| 81 | * @shrink_decision: If defined, may return true if table should shrink |
Ying Xue | 6f73d3b | 2015-01-12 14:52:24 +0800 | [diff] [blame^] | 82 | * |
| 83 | * Note: when implementing the grow and shrink decision function, min/max |
| 84 | * shift must be enforced, otherwise, resizing watermarks they set may be |
| 85 | * useless. |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 86 | */ |
| 87 | struct rhashtable_params { |
| 88 | size_t nelem_hint; |
| 89 | size_t key_len; |
| 90 | size_t key_offset; |
| 91 | size_t head_offset; |
| 92 | u32 hash_rnd; |
| 93 | size_t max_shift; |
Ying Xue | 9400017 | 2014-09-03 09:22:36 +0800 | [diff] [blame] | 94 | size_t min_shift; |
Thomas Graf | f89bd6f | 2015-01-02 23:00:21 +0100 | [diff] [blame] | 95 | u32 nulls_base; |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 96 | size_t locks_mul; |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 97 | rht_hashfn_t hashfn; |
| 98 | rht_obj_hashfn_t obj_hashfn; |
| 99 | bool (*grow_decision)(const struct rhashtable *ht, |
| 100 | size_t new_size); |
| 101 | bool (*shrink_decision)(const struct rhashtable *ht, |
| 102 | size_t new_size); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 103 | }; |
| 104 | |
| 105 | /** |
| 106 | * struct rhashtable - Hash table handle |
| 107 | * @tbl: Bucket table |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 108 | * @future_tbl: Table under construction during expansion/shrinking |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 109 | * @nelems: Number of elements in table |
| 110 | * @shift: Current size (1 << shift) |
| 111 | * @p: Configuration parameters |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 112 | * @run_work: Deferred worker to expand/shrink asynchronously |
| 113 | * @mutex: Mutex to protect current/future table swapping |
| 114 | * @being_destroyed: True if table is set up for destruction |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 115 | */ |
| 116 | struct rhashtable { |
| 117 | struct bucket_table __rcu *tbl; |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 118 | struct bucket_table __rcu *future_tbl; |
| 119 | atomic_t nelems; |
Ying Xue | c0c09bf | 2015-01-07 13:41:56 +0800 | [diff] [blame] | 120 | atomic_t shift; |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 121 | struct rhashtable_params p; |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 122 | struct delayed_work run_work; |
| 123 | struct mutex mutex; |
| 124 | bool being_destroyed; |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 125 | }; |
| 126 | |
Thomas Graf | f89bd6f | 2015-01-02 23:00:21 +0100 | [diff] [blame] | 127 | static inline unsigned long rht_marker(const struct rhashtable *ht, u32 hash) |
| 128 | { |
| 129 | return NULLS_MARKER(ht->p.nulls_base + hash); |
| 130 | } |
| 131 | |
| 132 | #define INIT_RHT_NULLS_HEAD(ptr, ht, hash) \ |
| 133 | ((ptr) = (typeof(ptr)) rht_marker(ht, hash)) |
| 134 | |
| 135 | static inline bool rht_is_a_nulls(const struct rhash_head *ptr) |
| 136 | { |
| 137 | return ((unsigned long) ptr & 1); |
| 138 | } |
| 139 | |
| 140 | static inline unsigned long rht_get_nulls_value(const struct rhash_head *ptr) |
| 141 | { |
| 142 | return ((unsigned long) ptr) >> 1; |
| 143 | } |
| 144 | |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 145 | #ifdef CONFIG_PROVE_LOCKING |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 146 | int lockdep_rht_mutex_is_held(struct rhashtable *ht); |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 147 | int lockdep_rht_bucket_is_held(const struct bucket_table *tbl, u32 hash); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 148 | #else |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 149 | static inline int lockdep_rht_mutex_is_held(struct rhashtable *ht) |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 150 | { |
| 151 | return 1; |
| 152 | } |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 153 | |
| 154 | static inline int lockdep_rht_bucket_is_held(const struct bucket_table *tbl, |
| 155 | u32 hash) |
| 156 | { |
| 157 | return 1; |
| 158 | } |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 159 | #endif /* CONFIG_PROVE_LOCKING */ |
| 160 | |
| 161 | int rhashtable_init(struct rhashtable *ht, struct rhashtable_params *params); |
| 162 | |
Thomas Graf | 6eba822 | 2014-11-13 13:45:46 +0100 | [diff] [blame] | 163 | void rhashtable_insert(struct rhashtable *ht, struct rhash_head *node); |
| 164 | bool rhashtable_remove(struct rhashtable *ht, struct rhash_head *node); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 165 | |
| 166 | bool rht_grow_above_75(const struct rhashtable *ht, size_t new_size); |
| 167 | bool rht_shrink_below_30(const struct rhashtable *ht, size_t new_size); |
| 168 | |
Thomas Graf | 6eba822 | 2014-11-13 13:45:46 +0100 | [diff] [blame] | 169 | int rhashtable_expand(struct rhashtable *ht); |
| 170 | int rhashtable_shrink(struct rhashtable *ht); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 171 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 172 | void *rhashtable_lookup(struct rhashtable *ht, const void *key); |
| 173 | void *rhashtable_lookup_compare(struct rhashtable *ht, const void *key, |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 174 | bool (*compare)(void *, void *), void *arg); |
Ying Xue | 7a868d1 | 2015-01-12 14:52:22 +0800 | [diff] [blame] | 175 | |
Ying Xue | db30485 | 2015-01-07 13:41:54 +0800 | [diff] [blame] | 176 | bool rhashtable_lookup_insert(struct rhashtable *ht, struct rhash_head *obj); |
Ying Xue | 7a868d1 | 2015-01-12 14:52:22 +0800 | [diff] [blame] | 177 | bool rhashtable_lookup_compare_insert(struct rhashtable *ht, |
| 178 | struct rhash_head *obj, |
| 179 | bool (*compare)(void *, void *), |
| 180 | void *arg); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 181 | |
Thomas Graf | 97defe1 | 2015-01-02 23:00:20 +0100 | [diff] [blame] | 182 | void rhashtable_destroy(struct rhashtable *ht); |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 183 | |
| 184 | #define rht_dereference(p, ht) \ |
| 185 | rcu_dereference_protected(p, lockdep_rht_mutex_is_held(ht)) |
| 186 | |
| 187 | #define rht_dereference_rcu(p, ht) \ |
| 188 | rcu_dereference_check(p, lockdep_rht_mutex_is_held(ht)) |
| 189 | |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 190 | #define rht_dereference_bucket(p, tbl, hash) \ |
| 191 | rcu_dereference_protected(p, lockdep_rht_bucket_is_held(tbl, hash)) |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 192 | |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 193 | #define rht_dereference_bucket_rcu(p, tbl, hash) \ |
| 194 | rcu_dereference_check(p, lockdep_rht_bucket_is_held(tbl, hash)) |
| 195 | |
| 196 | #define rht_entry(tpos, pos, member) \ |
| 197 | ({ tpos = container_of(pos, typeof(*tpos), member); 1; }) |
| 198 | |
| 199 | /** |
| 200 | * rht_for_each_continue - continue iterating over hash chain |
| 201 | * @pos: the &struct rhash_head to use as a loop cursor. |
| 202 | * @head: the previous &struct rhash_head to continue from |
| 203 | * @tbl: the &struct bucket_table |
| 204 | * @hash: the hash value / bucket index |
| 205 | */ |
| 206 | #define rht_for_each_continue(pos, head, tbl, hash) \ |
| 207 | for (pos = rht_dereference_bucket(head, tbl, hash); \ |
Thomas Graf | f89bd6f | 2015-01-02 23:00:21 +0100 | [diff] [blame] | 208 | !rht_is_a_nulls(pos); \ |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 209 | pos = rht_dereference_bucket((pos)->next, tbl, hash)) |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 210 | |
| 211 | /** |
| 212 | * rht_for_each - iterate over hash chain |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 213 | * @pos: the &struct rhash_head to use as a loop cursor. |
| 214 | * @tbl: the &struct bucket_table |
| 215 | * @hash: the hash value / bucket index |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 216 | */ |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 217 | #define rht_for_each(pos, tbl, hash) \ |
| 218 | rht_for_each_continue(pos, (tbl)->buckets[hash], tbl, hash) |
| 219 | |
| 220 | /** |
| 221 | * rht_for_each_entry_continue - continue iterating over hash chain |
| 222 | * @tpos: the type * to use as a loop cursor. |
| 223 | * @pos: the &struct rhash_head to use as a loop cursor. |
| 224 | * @head: the previous &struct rhash_head to continue from |
| 225 | * @tbl: the &struct bucket_table |
| 226 | * @hash: the hash value / bucket index |
| 227 | * @member: name of the &struct rhash_head within the hashable struct. |
| 228 | */ |
| 229 | #define rht_for_each_entry_continue(tpos, pos, head, tbl, hash, member) \ |
| 230 | for (pos = rht_dereference_bucket(head, tbl, hash); \ |
Thomas Graf | f89bd6f | 2015-01-02 23:00:21 +0100 | [diff] [blame] | 231 | (!rht_is_a_nulls(pos)) && rht_entry(tpos, pos, member); \ |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 232 | pos = rht_dereference_bucket((pos)->next, tbl, hash)) |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 233 | |
| 234 | /** |
| 235 | * rht_for_each_entry - iterate over hash chain of given type |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 236 | * @tpos: the type * to use as a loop cursor. |
| 237 | * @pos: the &struct rhash_head to use as a loop cursor. |
| 238 | * @tbl: the &struct bucket_table |
| 239 | * @hash: the hash value / bucket index |
| 240 | * @member: name of the &struct rhash_head within the hashable struct. |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 241 | */ |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 242 | #define rht_for_each_entry(tpos, pos, tbl, hash, member) \ |
| 243 | rht_for_each_entry_continue(tpos, pos, (tbl)->buckets[hash], \ |
| 244 | tbl, hash, member) |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 245 | |
| 246 | /** |
| 247 | * rht_for_each_entry_safe - safely iterate over hash chain of given type |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 248 | * @tpos: the type * to use as a loop cursor. |
| 249 | * @pos: the &struct rhash_head to use as a loop cursor. |
| 250 | * @next: the &struct rhash_head to use as next in loop cursor. |
| 251 | * @tbl: the &struct bucket_table |
| 252 | * @hash: the hash value / bucket index |
| 253 | * @member: name of the &struct rhash_head within the hashable struct. |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 254 | * |
| 255 | * This hash chain list-traversal primitive allows for the looped code to |
| 256 | * remove the loop cursor from the list. |
| 257 | */ |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 258 | #define rht_for_each_entry_safe(tpos, pos, next, tbl, hash, member) \ |
| 259 | for (pos = rht_dereference_bucket((tbl)->buckets[hash], tbl, hash), \ |
Thomas Graf | f89bd6f | 2015-01-02 23:00:21 +0100 | [diff] [blame] | 260 | next = !rht_is_a_nulls(pos) ? \ |
| 261 | rht_dereference_bucket(pos->next, tbl, hash) : NULL; \ |
| 262 | (!rht_is_a_nulls(pos)) && rht_entry(tpos, pos, member); \ |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 263 | pos = next) |
| 264 | |
| 265 | /** |
| 266 | * rht_for_each_rcu_continue - continue iterating over rcu hash chain |
| 267 | * @pos: the &struct rhash_head to use as a loop cursor. |
| 268 | * @head: the previous &struct rhash_head to continue from |
| 269 | * @tbl: the &struct bucket_table |
| 270 | * @hash: the hash value / bucket index |
| 271 | * |
| 272 | * This hash chain list-traversal primitive may safely run concurrently with |
| 273 | * the _rcu mutation primitives such as rhashtable_insert() as long as the |
| 274 | * traversal is guarded by rcu_read_lock(). |
| 275 | */ |
| 276 | #define rht_for_each_rcu_continue(pos, head, tbl, hash) \ |
| 277 | for (({barrier(); }), \ |
| 278 | pos = rht_dereference_bucket_rcu(head, tbl, hash); \ |
Thomas Graf | f89bd6f | 2015-01-02 23:00:21 +0100 | [diff] [blame] | 279 | !rht_is_a_nulls(pos); \ |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 280 | pos = rcu_dereference_raw(pos->next)) |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 281 | |
| 282 | /** |
| 283 | * rht_for_each_rcu - iterate over rcu hash chain |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 284 | * @pos: the &struct rhash_head to use as a loop cursor. |
| 285 | * @tbl: the &struct bucket_table |
| 286 | * @hash: the hash value / bucket index |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 287 | * |
| 288 | * This hash chain list-traversal primitive may safely run concurrently with |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 289 | * the _rcu mutation primitives such as rhashtable_insert() as long as the |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 290 | * traversal is guarded by rcu_read_lock(). |
| 291 | */ |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 292 | #define rht_for_each_rcu(pos, tbl, hash) \ |
| 293 | rht_for_each_rcu_continue(pos, (tbl)->buckets[hash], tbl, hash) |
| 294 | |
| 295 | /** |
| 296 | * rht_for_each_entry_rcu_continue - continue iterating over rcu hash chain |
| 297 | * @tpos: the type * to use as a loop cursor. |
| 298 | * @pos: the &struct rhash_head to use as a loop cursor. |
| 299 | * @head: the previous &struct rhash_head to continue from |
| 300 | * @tbl: the &struct bucket_table |
| 301 | * @hash: the hash value / bucket index |
| 302 | * @member: name of the &struct rhash_head within the hashable struct. |
| 303 | * |
| 304 | * This hash chain list-traversal primitive may safely run concurrently with |
| 305 | * the _rcu mutation primitives such as rhashtable_insert() as long as the |
| 306 | * traversal is guarded by rcu_read_lock(). |
| 307 | */ |
| 308 | #define rht_for_each_entry_rcu_continue(tpos, pos, head, tbl, hash, member) \ |
| 309 | for (({barrier(); }), \ |
| 310 | pos = rht_dereference_bucket_rcu(head, tbl, hash); \ |
Thomas Graf | f89bd6f | 2015-01-02 23:00:21 +0100 | [diff] [blame] | 311 | (!rht_is_a_nulls(pos)) && rht_entry(tpos, pos, member); \ |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 312 | pos = rht_dereference_bucket_rcu(pos->next, tbl, hash)) |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 313 | |
| 314 | /** |
| 315 | * rht_for_each_entry_rcu - iterate over rcu hash chain of given type |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 316 | * @tpos: the type * to use as a loop cursor. |
| 317 | * @pos: the &struct rhash_head to use as a loop cursor. |
| 318 | * @tbl: the &struct bucket_table |
| 319 | * @hash: the hash value / bucket index |
| 320 | * @member: name of the &struct rhash_head within the hashable struct. |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 321 | * |
| 322 | * This hash chain list-traversal primitive may safely run concurrently with |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 323 | * the _rcu mutation primitives such as rhashtable_insert() as long as the |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 324 | * traversal is guarded by rcu_read_lock(). |
| 325 | */ |
Thomas Graf | 88d6ed1 | 2015-01-02 23:00:16 +0100 | [diff] [blame] | 326 | #define rht_for_each_entry_rcu(tpos, pos, tbl, hash, member) \ |
| 327 | rht_for_each_entry_rcu_continue(tpos, pos, (tbl)->buckets[hash],\ |
| 328 | tbl, hash, member) |
Thomas Graf | 7e1e776 | 2014-08-02 11:47:44 +0200 | [diff] [blame] | 329 | |
| 330 | #endif /* _LINUX_RHASHTABLE_H */ |