mirror of
https://github.com/hardkernel/linux.git
synced 2026-03-24 19:40:21 +09:00
rhashtable: Fix rhlist duplicates insertion
[ Upstream commitd3dcf8eb61] When inserting duplicate objects (those with the same key), current rhlist implementation messes up the chain pointers by updating the bucket pointer instead of prev next pointer to the newly inserted node. This causes missing elements on removal and travesal. Fix that by properly updating pprev pointer to point to the correct rhash_head next pointer. Issue: 1241076 Change-Id: I86b2c140bcb4aeb10b70a72a267ff590bb2b17e7 Fixes:ca26893f05('rhashtable: Add rhlist interface') Signed-off-by: Paul Blakey <paulb@mellanox.com> Acked-by: Herbert Xu <herbert@gondor.apana.org.au> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
fe3627f676
commit
ad6217049e
@@ -706,8 +706,10 @@ slow_path:
|
||||
if (!key ||
|
||||
(params.obj_cmpfn ?
|
||||
params.obj_cmpfn(&arg, rht_obj(ht, head)) :
|
||||
rhashtable_compare(&arg, rht_obj(ht, head))))
|
||||
rhashtable_compare(&arg, rht_obj(ht, head)))) {
|
||||
pprev = &head->next;
|
||||
continue;
|
||||
}
|
||||
|
||||
data = rht_obj(ht, head);
|
||||
|
||||
|
||||
@@ -448,8 +448,10 @@ static void *rhashtable_lookup_one(struct rhashtable *ht,
|
||||
if (!key ||
|
||||
(ht->p.obj_cmpfn ?
|
||||
ht->p.obj_cmpfn(&arg, rht_obj(ht, head)) :
|
||||
rhashtable_compare(&arg, rht_obj(ht, head))))
|
||||
rhashtable_compare(&arg, rht_obj(ht, head)))) {
|
||||
pprev = &head->next;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (!ht->rhlist)
|
||||
return rht_obj(ht, head);
|
||||
|
||||
Reference in New Issue
Block a user