diff options
author | Phil Sutter <phil@nwl.cc> | 2016-08-04 06:37:17 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-08-08 15:52:42 -0400 |
commit | 3b3bf80b994f0c6c35a25ef8965ab956b4bcced5 (patch) | |
tree | a520f2d37ea4fa51cfc483d08d08bd0b726d45f3 /lib | |
parent | 05ec40f06ae98a6711337e5a7caefbf046f4c9ab (diff) |
rhashtable-test: Fix max_size parameter description
Looks like a simple copy'n'paste error.
Fixes: 1aa661f5c3df1 ("rhashtable-test: Measure time to insert, remove & traverse entries")
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/test_rhashtable.c b/lib/test_rhashtable.c index 297fdb5e74bd..64e899b63337 100644 --- a/lib/test_rhashtable.c +++ b/lib/test_rhashtable.c | |||
@@ -38,7 +38,7 @@ MODULE_PARM_DESC(runs, "Number of test runs per variant (default: 4)"); | |||
38 | 38 | ||
39 | static int max_size = 0; | 39 | static int max_size = 0; |
40 | module_param(max_size, int, 0); | 40 | module_param(max_size, int, 0); |
41 | MODULE_PARM_DESC(runs, "Maximum table size (default: calculated)"); | 41 | MODULE_PARM_DESC(max_size, "Maximum table size (default: calculated)"); |
42 | 42 | ||
43 | static bool shrinking = false; | 43 | static bool shrinking = false; |
44 | module_param(shrinking, bool, 0); | 44 | module_param(shrinking, bool, 0); |