diff options
| author | Mark Brown <broonie@linaro.org> | 2013-11-24 09:35:18 -0500 |
|---|---|---|
| committer | Mark Brown <broonie@linaro.org> | 2013-11-24 09:35:18 -0500 |
| commit | 30c27abd28fa168d7ebd2e5286f1fe473c74bfa9 (patch) | |
| tree | 9936b38c0c81cd430d5e75906c1207d127fe588c /include/linux/hashtable.h | |
| parent | 16ec790938d4f356c82fab27b9a9adf4d6fe19a6 (diff) | |
| parent | 6ce4eac1f600b34f2f7f58f9cd8f0503d79e42ae (diff) | |
Merge tag 'v3.13-rc1' into asoc-arizona
Linux 3.13-rc1
Diffstat (limited to 'include/linux/hashtable.h')
| -rw-r--r-- | include/linux/hashtable.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/linux/hashtable.h b/include/linux/hashtable.h index a9df51f5d54c..519b6e2d769e 100644 --- a/include/linux/hashtable.h +++ b/include/linux/hashtable.h | |||
| @@ -174,6 +174,21 @@ static inline void hash_del_rcu(struct hlist_node *node) | |||
| 174 | member) | 174 | member) |
| 175 | 175 | ||
| 176 | /** | 176 | /** |
| 177 | * hash_for_each_possible_rcu_notrace - iterate over all possible objects hashing | ||
| 178 | * to the same bucket in an rcu enabled hashtable in a rcu enabled hashtable | ||
| 179 | * @name: hashtable to iterate | ||
| 180 | * @obj: the type * to use as a loop cursor for each entry | ||
| 181 | * @member: the name of the hlist_node within the struct | ||
| 182 | * @key: the key of the objects to iterate over | ||
| 183 | * | ||
| 184 | * This is the same as hash_for_each_possible_rcu() except that it does | ||
| 185 | * not do any RCU debugging or tracing. | ||
| 186 | */ | ||
| 187 | #define hash_for_each_possible_rcu_notrace(name, obj, member, key) \ | ||
| 188 | hlist_for_each_entry_rcu_notrace(obj, \ | ||
| 189 | &name[hash_min(key, HASH_BITS(name))], member) | ||
| 190 | |||
| 191 | /** | ||
| 177 | * hash_for_each_possible_safe - iterate over all possible objects hashing to the | 192 | * hash_for_each_possible_safe - iterate over all possible objects hashing to the |
| 178 | * same bucket safe against removals | 193 | * same bucket safe against removals |
| 179 | * @name: hashtable to iterate | 194 | * @name: hashtable to iterate |
