Release 4.11 net/batman-adv/hash.c
/* Copyright (C) 2006-2017 B.A.T.M.A.N. contributors:
*
* 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
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#include "hash.h"
#include "main.h"
#include <linux/fs.h>
#include <linux/lockdep.h>
#include <linux/slab.h>
/* clears the hash */
static void batadv_hash_init(struct batadv_hashtable *hash)
{
u32 i;
for (i = 0; i < hash->size; i++) {
INIT_HLIST_HEAD(&hash->table[i]);
spin_lock_init(&hash->list_locks[i]);
}
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Sven Eckelmann | 40 | 75.47% | 4 | 80.00% |
Marek Lindner | 13 | 24.53% | 1 | 20.00% |
Total | 53 | 100.00% | 5 | 100.00% |
/* free only the hashtable and the hash itself. */
void batadv_hash_destroy(struct batadv_hashtable *hash)
{
kfree(hash->list_locks);
kfree(hash->table);
kfree(hash);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Sven Eckelmann | 22 | 75.86% | 3 | 75.00% |
Marek Lindner | 7 | 24.14% | 1 | 25.00% |
Total | 29 | 100.00% | 4 | 100.00% |
/* allocates and clears the hash */
struct batadv_hashtable *batadv_hash_new(u32 size)
{
struct batadv_hashtable *hash;
hash = kmalloc(sizeof(*hash), GFP_ATOMIC);
if (!hash)
return NULL;
hash->table = kmalloc_array(size, sizeof(*hash->table), GFP_ATOMIC);
if (!hash->table)
goto free_hash;
hash->list_locks = kmalloc_array(size, sizeof(*hash->list_locks),
GFP_ATOMIC);
if (!hash->list_locks)
goto free_table;
hash->size = size;
batadv_hash_init(hash);
return hash;
free_table:
kfree(hash->table);
free_hash:
kfree(hash);
return NULL;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Sven Eckelmann | 78 | 61.42% | 6 | 75.00% |
Marek Lindner | 43 | 33.86% | 1 | 12.50% |
Antonio Quartulli | 6 | 4.72% | 1 | 12.50% |
Total | 127 | 100.00% | 8 | 100.00% |
void batadv_hash_set_lock_class(struct batadv_hashtable *hash,
struct lock_class_key *key)
{
u32 i;
for (i = 0; i < hash->size; i++)
lockdep_set_class(&hash->list_locks[i], key);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Sven Eckelmann | 46 | 100.00% | 3 | 100.00% |
Total | 46 | 100.00% | 3 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Sven Eckelmann | 205 | 74.82% | 9 | 81.82% |
Marek Lindner | 63 | 22.99% | 1 | 9.09% |
Antonio Quartulli | 6 | 2.19% | 1 | 9.09% |
Total | 274 | 100.00% | 11 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.