summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorPhil Sutter <phil@nwl.cc>2017-07-25 13:36:21 +0200
committerDavid S. Miller <davem@davemloft.net>2017-07-25 12:35:23 -0700
commit783692558a60cd69d8d86900b33846263598ca6c (patch)
tree83cbf68bea022b47ed8f4e8d95afd900e57aed98 /lib
parent2eaa38d9fcba5294182268b8d11770cf3fdc9bc9 (diff)
lib: test_rhashtable: Fix KASAN warning
I forgot one spot when introducing struct test_obj_val. Fixes: e859afe1ee0c5 ("lib: test_rhashtable: fix for large entry counts") Reported by: kernel test robot <fengguang.wu@intel.com> Signed-off-by: Phil Sutter <phil@nwl.cc> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'lib')
-rw-r--r--lib/test_rhashtable.c4
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)
pr_info(" Deleting %d keys\n", entries);
for (i = 0; i < entries; i++) {
- u32 key = i * 2;
+ struct test_obj_val key = {
+ .id = i * 2,
+ };
if (array[i].value.id != TEST_INSERT_FAIL) {
obj = rhashtable_lookup_fast(ht, &key, test_rht_params);