mirror of
https://github.com/hardkernel/linux.git
synced 2026-03-24 19:40:21 +09:00
rhashtable: add schedule points
commit ae6da1f503 upstream.
Rehashing and destroying large hash table takes a lot of time,
and happens in process context. It is safe to add cond_resched()
in rhashtable_rehash_table() and rhashtable_free_and_destroy()
Signed-off-by: Eric Dumazet <edumazet@google.com>
Acked-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Ben Hutchings <ben.hutchings@codethink.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
9e5f4d0b79
commit
bf5ea30ff5
@@ -250,8 +250,10 @@ static int rhashtable_rehash_table(struct rhashtable *ht)
|
||||
if (!new_tbl)
|
||||
return 0;
|
||||
|
||||
for (old_hash = 0; old_hash < old_tbl->size; old_hash++)
|
||||
for (old_hash = 0; old_hash < old_tbl->size; old_hash++) {
|
||||
rhashtable_rehash_chain(ht, old_hash);
|
||||
cond_resched();
|
||||
}
|
||||
|
||||
/* Publish the new table pointer. */
|
||||
rcu_assign_pointer(ht->tbl, new_tbl);
|
||||
@@ -842,6 +844,7 @@ void rhashtable_free_and_destroy(struct rhashtable *ht,
|
||||
for (i = 0; i < tbl->size; i++) {
|
||||
struct rhash_head *pos, *next;
|
||||
|
||||
cond_resched();
|
||||
for (pos = rht_dereference(tbl->buckets[i], ht),
|
||||
next = !rht_is_a_nulls(pos) ?
|
||||
rht_dereference(pos->next, ht) : NULL;
|
||||
|
||||
Reference in New Issue
Block a user