* [PATCH] rhashtable: remove duplicate comment.
@ 2014-09-11 7:10 NeilBrown
2014-09-11 7:48 ` Thomas Graf
0 siblings, 1 reply; 2+ messages in thread
From: NeilBrown @ 2014-09-11 7:10 UTC (permalink / raw)
To: Thomas Graf; +Cc: lkml, Paul E. McKenney, David S. Miller
[-- Attachment #1: Type: text/plain, Size: 1050 bytes --]
The second comment is identical to the earlier comment, just indented
a bit. This is confusing, so remove it.
Also expand that first comment to mention the splicing that happens.
Signed-off-by: NeilBrown <neilb@suse.de>
diff --git a/lib/rhashtable.c b/lib/rhashtable.c
index a2c78810ebc1..8fd2f21d022a 100644
--- a/lib/rhashtable.c
+++ b/lib/rhashtable.c
@@ -309,15 +309,12 @@ int rhashtable_shrink(struct rhashtable *ht, gfp_t flags)
/* Link each bucket in the new table to the first bucket
* in the old table that contains entries which will hash
- * to the new bucket.
+ * to the new bucket, and then splice in the second
+ * bucket from the old table.
*/
for (i = 0; i < ntbl->size; i++) {
ntbl->buckets[i] = tbl->buckets[i];
- /* Link each bucket in the new table to the first bucket
- * in the old table that contains entries which will hash
- * to the new bucket.
- */
for (pprev = &ntbl->buckets[i]; *pprev != NULL;
pprev = &rht_dereference(*pprev, ht)->next)
;
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 828 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-09-11 7:48 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-11 7:10 [PATCH] rhashtable: remove duplicate comment NeilBrown
2014-09-11 7:48 ` Thomas Graf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®