]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commit - lib/test_rhashtable.c
rhashtable-test: extend to test concurrency
authorPhil Sutter <phil@nwl.cc>
Fri, 14 Aug 2015 22:37:15 +0000 (00:37 +0200)
committerDavid S. Miller <davem@davemloft.net>
Mon, 17 Aug 2015 21:33:47 +0000 (14:33 -0700)
commitf4a3e90ba5739cfd761b6befadae9728bd3641ed
tree2aef5687fe36853abbd5cb80a1b7b0d0c14905ca
parentc1f066d4ee0bde4bb0ff4ac295218b631729e0de
rhashtable-test: extend to test concurrency

After having tested insertion, lookup, table walk and removal, spawn a
number of threads running operations on the same rhashtable. Each of
them will:

1) insert it's own set of objects,
2) lookup every successfully inserted object and finally
3) remove objects in several rounds until all of them have been removed,
   making sure the remaining ones are still found after each round.

This should put a good amount of load onto the system and due to
synchronising thread startup via two semaphores also extensive
concurrent table access.

The default number of ten threads returned within half a second on my
local VM with two cores. Running 200 threads took about four seconds. If
slow systems suffer too much from this though, the default could be
lowered or even set to zero so this extended test does not run at all by
default.

Signed-off-by: Phil Sutter <phil@nwl.cc>
Acked-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
lib/test_rhashtable.c