rhashtable-test: Fix 64bit division

A 64bit division went in unnoticed. Use do_div() to accomodate
non 64bit architectures.

Reported-by: kbuild test robot
Fixes: 1aa661f5c3 ("rhashtable-test: Measure time to insert, remove & traverse entries")
Signed-off-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Thomas Graf 2015-05-05 02:27:02 +02:00 committed by David S. Miller
parent c936a79fc0
commit 6decd63aca
1 changed files with 2 additions and 1 deletions

View File

@ -229,7 +229,8 @@ static int __init test_rht_init(void)
total_time += time;
}
pr_info("Average test time: %llu\n", total_time / runs);
do_div(total_time, runs);
pr_info("Average test time: %llu\n", total_time);
return 0;
}