Commit f651616e authored by Florian Westphal's avatar Florian Westphal Committed by David S. Miller

test_rhashtable: don't use global entries variable

pass the entries to test as an argument instead.
Followup patch will add an rhlist test case; rhlist delete opererations
are slow so we need to use a smaller number to test it.
Signed-off-by: default avatarFlorian Westphal <fw@strlen.de>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 7e936bd7
...@@ -28,9 +28,9 @@ ...@@ -28,9 +28,9 @@
#define MAX_ENTRIES 1000000 #define MAX_ENTRIES 1000000
#define TEST_INSERT_FAIL INT_MAX #define TEST_INSERT_FAIL INT_MAX
static int entries = 50000; static int parm_entries = 50000;
module_param(entries, int, 0); module_param(parm_entries, int, 0);
MODULE_PARM_DESC(entries, "Number of entries to add (default: 50000)"); MODULE_PARM_DESC(parm_entries, "Number of entries to add (default: 50000)");
static int runs = 4; static int runs = 4;
module_param(runs, int, 0); module_param(runs, int, 0);
...@@ -67,6 +67,7 @@ struct test_obj { ...@@ -67,6 +67,7 @@ struct test_obj {
}; };
struct thread_data { struct thread_data {
unsigned int entries;
int id; int id;
struct task_struct *task; struct task_struct *task;
struct test_obj *objs; struct test_obj *objs;
...@@ -105,11 +106,12 @@ static int insert_retry(struct rhashtable *ht, struct test_obj *obj, ...@@ -105,11 +106,12 @@ static int insert_retry(struct rhashtable *ht, struct test_obj *obj,
return err ? : retries; return err ? : retries;
} }
static int __init test_rht_lookup(struct rhashtable *ht, struct test_obj *array) static int __init test_rht_lookup(struct rhashtable *ht, struct test_obj *array,
unsigned int entries)
{ {
unsigned int i; unsigned int i;
for (i = 0; i < entries * 2; i++) { for (i = 0; i < entries; i++) {
struct test_obj *obj; struct test_obj *obj;
bool expected = !(i % 2); bool expected = !(i % 2);
struct test_obj_val key = { struct test_obj_val key = {
...@@ -142,7 +144,7 @@ static int __init test_rht_lookup(struct rhashtable *ht, struct test_obj *array) ...@@ -142,7 +144,7 @@ static int __init test_rht_lookup(struct rhashtable *ht, struct test_obj *array)
return 0; return 0;
} }
static void test_bucket_stats(struct rhashtable *ht) static void test_bucket_stats(struct rhashtable *ht, unsigned int entries)
{ {
unsigned int err, total = 0, chain_len = 0; unsigned int err, total = 0, chain_len = 0;
struct rhashtable_iter hti; struct rhashtable_iter hti;
...@@ -184,7 +186,8 @@ static void test_bucket_stats(struct rhashtable *ht) ...@@ -184,7 +186,8 @@ static void test_bucket_stats(struct rhashtable *ht)
pr_warn("Test failed: Total count mismatch ^^^"); pr_warn("Test failed: Total count mismatch ^^^");
} }
static s64 __init test_rhashtable(struct rhashtable *ht, struct test_obj *array) static s64 __init test_rhashtable(struct rhashtable *ht, struct test_obj *array,
unsigned int entries)
{ {
struct test_obj *obj; struct test_obj *obj;
int err; int err;
...@@ -212,12 +215,12 @@ static s64 __init test_rhashtable(struct rhashtable *ht, struct test_obj *array) ...@@ -212,12 +215,12 @@ static s64 __init test_rhashtable(struct rhashtable *ht, struct test_obj *array)
pr_info(" %u insertions retried due to memory pressure\n", pr_info(" %u insertions retried due to memory pressure\n",
insert_retries); insert_retries);
test_bucket_stats(ht); test_bucket_stats(ht, entries);
rcu_read_lock(); rcu_read_lock();
test_rht_lookup(ht, array); test_rht_lookup(ht, array, entries);
rcu_read_unlock(); rcu_read_unlock();
test_bucket_stats(ht); test_bucket_stats(ht, entries);
pr_info(" Deleting %d keys\n", entries); pr_info(" Deleting %d keys\n", entries);
for (i = 0; i < entries; i++) { for (i = 0; i < entries; i++) {
...@@ -245,6 +248,7 @@ static struct rhashtable ht; ...@@ -245,6 +248,7 @@ static struct rhashtable ht;
static int thread_lookup_test(struct thread_data *tdata) static int thread_lookup_test(struct thread_data *tdata)
{ {
unsigned int entries = tdata->entries;
int i, err = 0; int i, err = 0;
for (i = 0; i < entries; i++) { for (i = 0; i < entries; i++) {
...@@ -281,7 +285,7 @@ static int threadfunc(void *data) ...@@ -281,7 +285,7 @@ static int threadfunc(void *data)
if (down_interruptible(&startup_sem)) if (down_interruptible(&startup_sem))
pr_err(" thread[%d]: down_interruptible failed\n", tdata->id); pr_err(" thread[%d]: down_interruptible failed\n", tdata->id);
for (i = 0; i < entries; i++) { for (i = 0; i < tdata->entries; i++) {
tdata->objs[i].value.id = i; tdata->objs[i].value.id = i;
tdata->objs[i].value.tid = tdata->id; tdata->objs[i].value.tid = tdata->id;
err = insert_retry(&ht, &tdata->objs[i], test_rht_params); err = insert_retry(&ht, &tdata->objs[i], test_rht_params);
...@@ -305,7 +309,7 @@ static int threadfunc(void *data) ...@@ -305,7 +309,7 @@ static int threadfunc(void *data)
} }
for (step = 10; step > 0; step--) { for (step = 10; step > 0; step--) {
for (i = 0; i < entries; i += step) { for (i = 0; i < tdata->entries; i += step) {
if (tdata->objs[i].value.id == TEST_INSERT_FAIL) if (tdata->objs[i].value.id == TEST_INSERT_FAIL)
continue; continue;
err = rhashtable_remove_fast(&ht, &tdata->objs[i].node, err = rhashtable_remove_fast(&ht, &tdata->objs[i].node,
...@@ -336,12 +340,16 @@ static int threadfunc(void *data) ...@@ -336,12 +340,16 @@ static int threadfunc(void *data)
static int __init test_rht_init(void) static int __init test_rht_init(void)
{ {
unsigned int entries;
int i, err, started_threads = 0, failed_threads = 0; int i, err, started_threads = 0, failed_threads = 0;
u64 total_time = 0; u64 total_time = 0;
struct thread_data *tdata; struct thread_data *tdata;
struct test_obj *objs; struct test_obj *objs;
entries = min(entries, MAX_ENTRIES); if (parm_entries < 0)
parm_entries = 1;
entries = min(parm_entries, MAX_ENTRIES);
test_rht_params.automatic_shrinking = shrinking; test_rht_params.automatic_shrinking = shrinking;
test_rht_params.max_size = max_size ? : roundup_pow_of_two(entries); test_rht_params.max_size = max_size ? : roundup_pow_of_two(entries);
...@@ -367,7 +375,7 @@ static int __init test_rht_init(void) ...@@ -367,7 +375,7 @@ static int __init test_rht_init(void)
continue; continue;
} }
time = test_rhashtable(&ht, objs); time = test_rhashtable(&ht, objs, entries);
rhashtable_destroy(&ht); rhashtable_destroy(&ht);
if (time < 0) { if (time < 0) {
vfree(objs); vfree(objs);
...@@ -409,6 +417,7 @@ static int __init test_rht_init(void) ...@@ -409,6 +417,7 @@ static int __init test_rht_init(void)
} }
for (i = 0; i < tcount; i++) { for (i = 0; i < tcount; i++) {
tdata[i].id = i; tdata[i].id = i;
tdata[i].entries = entries;
tdata[i].objs = objs + i * entries; tdata[i].objs = objs + i * entries;
tdata[i].task = kthread_run(threadfunc, &tdata[i], tdata[i].task = kthread_run(threadfunc, &tdata[i],
"rhashtable_thrad[%d]", i); "rhashtable_thrad[%d]", i);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment