numa_emulation: fix cpumask_of_node()
[deliverable/linux.git] / net / batman-adv / hash.h
CommitLineData
c6c8fea2 1/*
567db7b0 2 * Copyright (C) 2006-2012 B.A.T.M.A.N. contributors:
c6c8fea2
SE
3 *
4 * Simon Wunderlich, Marek Lindner
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of version 2 of the GNU General Public
8 * License as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 * 02110-1301, USA
19 *
20 */
21
22#ifndef _NET_BATMAN_ADV_HASH_H_
23#define _NET_BATMAN_ADV_HASH_H_
24
25#include <linux/list.h>
26
27/* callback to a compare function. should
28 * compare 2 element datas for their keys,
29 * return 0 if same and not 0 if not
30 * same */
747e4221 31typedef int (*hashdata_compare_cb)(const struct hlist_node *, const void *);
c6c8fea2
SE
32
33/* the hashfunction, should return an index
34 * based on the key in the data of the first
35 * argument and the size the second */
c90681b8 36typedef uint32_t (*hashdata_choose_cb)(const void *, uint32_t);
7aadf889 37typedef void (*hashdata_free_cb)(struct hlist_node *, void *);
c6c8fea2
SE
38
39struct hashtable_t {
fb778ea1
ML
40 struct hlist_head *table; /* the hashtable itself with the buckets */
41 spinlock_t *list_locks; /* spinlock for each hash list entry */
c90681b8 42 uint32_t size; /* size of hashtable */
c6c8fea2
SE
43};
44
45/* allocates and clears the hash */
c90681b8 46struct hashtable_t *hash_new(uint32_t size);
c6c8fea2 47
c6c8fea2
SE
48/* free only the hashtable and the hash itself. */
49void hash_destroy(struct hashtable_t *hash);
50
51/* remove the hash structure. if hashdata_free_cb != NULL, this function will be
52 * called to remove the elements inside of the hash. if you don't remove the
53 * elements, memory might be leaked. */
54static inline void hash_delete(struct hashtable_t *hash,
55 hashdata_free_cb free_cb, void *arg)
56{
57 struct hlist_head *head;
7aadf889 58 struct hlist_node *node, *node_tmp;
fb778ea1 59 spinlock_t *list_lock; /* spinlock to protect write access */
c90681b8 60 uint32_t i;
c6c8fea2
SE
61
62 for (i = 0; i < hash->size; i++) {
63 head = &hash->table[i];
fb778ea1 64 list_lock = &hash->list_locks[i];
c6c8fea2 65
fb778ea1 66 spin_lock_bh(list_lock);
7aadf889
ML
67 hlist_for_each_safe(node, node_tmp, head) {
68 hlist_del_rcu(node);
c6c8fea2 69
7aadf889
ML
70 if (free_cb)
71 free_cb(node, arg);
c6c8fea2 72 }
fb778ea1 73 spin_unlock_bh(list_lock);
c6c8fea2
SE
74 }
75
76 hash_destroy(hash);
77}
78
1a1f37d9
AQ
79/**
80 * hash_add - adds data to the hashtable
81 * @hash: storage hash table
82 * @compare: callback to determine if 2 hash elements are identical
83 * @choose: callback calculating the hash index
84 * @data: data passed to the aforementioned callbacks as argument
85 * @data_node: to be added element
86 *
87 * Returns 0 on success, 1 if the element already is in the hash
88 * and -1 on error.
89 */
90
c6c8fea2
SE
91static inline int hash_add(struct hashtable_t *hash,
92 hashdata_compare_cb compare,
7aadf889 93 hashdata_choose_cb choose,
747e4221 94 const void *data, struct hlist_node *data_node)
c6c8fea2 95{
c90681b8
AQ
96 uint32_t index;
97 int ret = -1;
c6c8fea2 98 struct hlist_head *head;
7aadf889 99 struct hlist_node *node;
fb778ea1 100 spinlock_t *list_lock; /* spinlock to protect write access */
c6c8fea2
SE
101
102 if (!hash)
1a1f37d9 103 goto out;
c6c8fea2
SE
104
105 index = choose(data, hash->size);
106 head = &hash->table[index];
fb778ea1 107 list_lock = &hash->list_locks[index];
c6c8fea2 108
fb778ea1 109 rcu_read_lock();
7aadf889
ML
110 __hlist_for_each_rcu(node, head) {
111 if (!compare(node, data))
112 continue;
113
1a1f37d9 114 ret = 1;
7aadf889 115 goto err_unlock;
c6c8fea2 116 }
fb778ea1 117 rcu_read_unlock();
c6c8fea2
SE
118
119 /* no duplicate found in list, add new element */
fb778ea1 120 spin_lock_bh(list_lock);
7aadf889 121 hlist_add_head_rcu(data_node, head);
fb778ea1 122 spin_unlock_bh(list_lock);
c6c8fea2 123
1a1f37d9
AQ
124 ret = 0;
125 goto out;
fb778ea1
ML
126
127err_unlock:
128 rcu_read_unlock();
1a1f37d9
AQ
129out:
130 return ret;
c6c8fea2
SE
131}
132
133/* removes data from hash, if found. returns pointer do data on success, so you
134 * can remove the used structure yourself, or NULL on error . data could be the
135 * structure you use with just the key filled, we just need the key for
136 * comparing. */
137static inline void *hash_remove(struct hashtable_t *hash,
138 hashdata_compare_cb compare,
139 hashdata_choose_cb choose, void *data)
140{
c90681b8 141 uint32_t index;
7aadf889 142 struct hlist_node *node;
c6c8fea2 143 struct hlist_head *head;
fb778ea1 144 void *data_save = NULL;
c6c8fea2
SE
145
146 index = choose(data, hash->size);
147 head = &hash->table[index];
148
fb778ea1 149 spin_lock_bh(&hash->list_locks[index]);
7aadf889
ML
150 hlist_for_each(node, head) {
151 if (!compare(node, data))
152 continue;
153
154 data_save = node;
155 hlist_del_rcu(node);
156 break;
c6c8fea2 157 }
fb778ea1 158 spin_unlock_bh(&hash->list_locks[index]);
c6c8fea2 159
fb778ea1 160 return data_save;
c6c8fea2
SE
161}
162
c6c8fea2 163#endif /* _NET_BATMAN_ADV_HASH_H_ */
This page took 0.108386 seconds and 5 git commands to generate.