diff options
-rw-r--r-- | lib/test_rhashtable.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/test_rhashtable.c b/lib/test_rhashtable.c index 16949d219291..0ffca990a833 100644 --- a/lib/test_rhashtable.c +++ b/lib/test_rhashtable.c | |||
@@ -223,7 +223,9 @@ static s64 __init test_rhashtable(struct rhashtable *ht) | |||
223 | 223 | ||
224 | pr_info(" Deleting %d keys\n", entries); | 224 | pr_info(" Deleting %d keys\n", entries); |
225 | for (i = 0; i < entries; i++) { | 225 | for (i = 0; i < entries; i++) { |
226 | u32 key = i * 2; | 226 | struct test_obj_val key = { |
227 | .id = i * 2, | ||
228 | }; | ||
227 | 229 | ||
228 | if (array[i].value.id != TEST_INSERT_FAIL) { | 230 | if (array[i].value.id != TEST_INSERT_FAIL) { |
229 | obj = rhashtable_lookup_fast(ht, &key, test_rht_params); | 231 | obj = rhashtable_lookup_fast(ht, &key, test_rht_params); |