summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/test_rhashtable.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/test_rhashtable.c b/lib/test_rhashtable.c
index fb6968109113..6ca59ffcacbe 100644
--- a/lib/test_rhashtable.c
+++ b/lib/test_rhashtable.c
@@ -501,6 +501,8 @@ static unsigned int __init print_ht(struct rhltable *rhlt)
501 unsigned int i, cnt = 0; 501 unsigned int i, cnt = 0;
502 502
503 ht = &rhlt->ht; 503 ht = &rhlt->ht;
504 /* Take the mutex to avoid RCU warning */
505 mutex_lock(&ht->mutex);
504 tbl = rht_dereference(ht->tbl, ht); 506 tbl = rht_dereference(ht->tbl, ht);
505 for (i = 0; i < tbl->size; i++) { 507 for (i = 0; i < tbl->size; i++) {
506 struct rhash_head *pos, *next; 508 struct rhash_head *pos, *next;
@@ -534,6 +536,7 @@ static unsigned int __init print_ht(struct rhltable *rhlt)
534 } 536 }
535 } 537 }
536 printk(KERN_ERR "\n---- ht: ----%s\n-------------\n", buff); 538 printk(KERN_ERR "\n---- ht: ----%s\n-------------\n", buff);
539 mutex_unlock(&ht->mutex);
537 540
538 return cnt; 541 return cnt;
539} 542}