]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
rhashtable: fix rht_for_each_entry_safe() endless loop
authorPatrick McHardy <kaber@trash.net>
Wed, 21 Jan 2015 11:12:13 +0000 (11:12 +0000)
committerDavid S. Miller <davem@davemloft.net>
Mon, 26 Jan 2015 08:08:23 +0000 (00:08 -0800)
"next" is not updated, causing an endless loop for buckets with more than
one element.

Fixes: 88d6ed15acff ("rhashtable: Convert bucket iterators to take table and index")
Signed-off-by: Patrick McHardy <kaber@trash.net>
Acked-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/rhashtable.h

index a2562ed53ea3eed8b7632a72f41872b30336aae1..e0337844358e164e189b58ae90c530f71963b6bf 100644 (file)
@@ -260,7 +260,9 @@ void rhashtable_destroy(struct rhashtable *ht);
             next = !rht_is_a_nulls(pos) ?                                  \
                       rht_dereference_bucket(pos->next, tbl, hash) : NULL; \
             (!rht_is_a_nulls(pos)) && rht_entry(tpos, pos, member);        \
-            pos = next)
+            pos = next,                                                    \
+            next = !rht_is_a_nulls(pos) ?                                  \
+                      rht_dereference_bucket(pos->next, tbl, hash) : NULL)
 
 /**
  * rht_for_each_rcu_continue - continue iterating over rcu hash chain