hash.c 1.8 KB
Newer Older
1
/* Copyright (C) 2006-2014 B.A.T.M.A.N. contributors:
2 3 4 5 6 7 8 9 10 11 12 13 14
 *
 * Simon Wunderlich, Marek Lindner
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of version 2 of the GNU General Public
 * License as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
15
 * along with this program; if not, see <http://www.gnu.org/licenses/>.
16 17 18 19 20 21
 */

#include "main.h"
#include "hash.h"

/* clears the hash */
22
static void batadv_hash_init(struct batadv_hashtable *hash)
23
{
24
	uint32_t i;
25

26
	for (i = 0; i < hash->size; i++) {
27
		INIT_HLIST_HEAD(&hash->table[i]);
28 29
		spin_lock_init(&hash->list_locks[i]);
	}
30 31 32
}

/* free only the hashtable and the hash itself. */
33
void batadv_hash_destroy(struct batadv_hashtable *hash)
34
{
35
	kfree(hash->list_locks);
36 37 38 39 40
	kfree(hash->table);
	kfree(hash);
}

/* allocates and clears the hash */
41
struct batadv_hashtable *batadv_hash_new(uint32_t size)
42
{
43
	struct batadv_hashtable *hash;
44

45
	hash = kmalloc(sizeof(*hash), GFP_ATOMIC);
46 47 48
	if (!hash)
		return NULL;

49
	hash->table = kmalloc_array(size, sizeof(*hash->table), GFP_ATOMIC);
50 51
	if (!hash->table)
		goto free_hash;
52

53 54
	hash->list_locks = kmalloc_array(size, sizeof(*hash->list_locks),
					 GFP_ATOMIC);
55 56
	if (!hash->list_locks)
		goto free_table;
57

58
	hash->size = size;
59
	batadv_hash_init(hash);
60
	return hash;
61 62 63 64 65 66 67

free_table:
	kfree(hash->table);
free_hash:
	kfree(hash);
	return NULL;
}
68

69
void batadv_hash_set_lock_class(struct batadv_hashtable *hash,
70 71 72 73 74 75 76
				struct lock_class_key *key)
{
	uint32_t i;

	for (i = 0; i < hash->size; i++)
		lockdep_set_class(&hash->list_locks[i], key);
}