]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
batman-adv: fix locking in hash_add()
authorMatthias Schiffer <mschiffer@universe-factory.net>
Tue, 8 May 2012 20:31:57 +0000 (22:31 +0200)
committerAntonio Quartulli <ordex@autistici.org>
Mon, 18 Jun 2012 16:01:06 +0000 (18:01 +0200)
To ensure an entry isn't added twice all comparisons have to be protected by the
hash line write spinlock. This doesn't really hurt as the case that it is tried
to add an element already present to the hash shouldn't occur very often, so in
most cases the lock would have have to be taken anyways.

Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
Acked-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Sven Eckelmann <sven@narfation.org>
net/batman-adv/hash.h

index 93b3c71aeaf8114aad5034559d2ded32d5a13735..3d67ce49fc31c4026adc5842006587906a1ec282 100644 (file)
@@ -110,26 +110,23 @@ static inline int hash_add(struct hashtable_t *hash,
        head = &hash->table[index];
        list_lock = &hash->list_locks[index];
 
-       rcu_read_lock();
-       __hlist_for_each_rcu(node, head) {
+       spin_lock_bh(list_lock);
+
+       hlist_for_each(node, head) {
                if (!compare(node, data))
                        continue;
 
                ret = 1;
-               goto err_unlock;
+               goto unlock;
        }
-       rcu_read_unlock();
 
        /* no duplicate found in list, add new element */
-       spin_lock_bh(list_lock);
        hlist_add_head_rcu(data_node, head);
-       spin_unlock_bh(list_lock);
 
        ret = 0;
-       goto out;
 
-err_unlock:
-       rcu_read_unlock();
+unlock:
+       spin_unlock_bh(list_lock);
 out:
        return ret;
 }