aboutsummaryrefslogtreecommitdiffstats
path: root/net/batman-adv/hash.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/batman-adv/hash.h')
-rw-r--r--net/batman-adv/hash.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/batman-adv/hash.h b/net/batman-adv/hash.h
index 3d67ce49fc31..e75df6be4f22 100644
--- a/net/batman-adv/hash.h
+++ b/net/batman-adv/hash.h
@@ -43,14 +43,14 @@ struct hashtable_t {
43}; 43};
44 44
45/* allocates and clears the hash */ 45/* allocates and clears the hash */
46struct hashtable_t *hash_new(uint32_t size); 46struct hashtable_t *batadv_hash_new(uint32_t size);
47 47
48/* set class key for all locks */ 48/* set class key for all locks */
49void batadv_hash_set_lock_class(struct hashtable_t *hash, 49void batadv_hash_set_lock_class(struct hashtable_t *hash,
50 struct lock_class_key *key); 50 struct lock_class_key *key);
51 51
52/* free only the hashtable and the hash itself. */ 52/* free only the hashtable and the hash itself. */
53void hash_destroy(struct hashtable_t *hash); 53void batadv_hash_destroy(struct hashtable_t *hash);
54 54
55/* remove the hash structure. if hashdata_free_cb != NULL, this function will be 55/* remove the hash structure. if hashdata_free_cb != NULL, this function will be
56 * called to remove the elements inside of the hash. if you don't remove the 56 * called to remove the elements inside of the hash. if you don't remove the
@@ -77,7 +77,7 @@ static inline void hash_delete(struct hashtable_t *hash,
77 spin_unlock_bh(list_lock); 77 spin_unlock_bh(list_lock);
78 } 78 }
79 79
80 hash_destroy(hash); 80 batadv_hash_destroy(hash);
81} 81}
82 82
83/** 83/**