diff options
author | Phil Sutter <phil@nwl.cc> | 2016-08-04 12:37:17 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-08-08 12:52:42 -0700 |
commit | 3b3bf80b994f0c6c35a25ef8965ab956b4bcced5 (patch) | |
tree | a520f2d37ea4fa51cfc483d08d08bd0b726d45f3 /lib/test_rhashtable.c | |
parent | 05ec40f06ae98a6711337e5a7caefbf046f4c9ab (diff) | |
download | linux-3b3bf80b994f0c6c35a25ef8965ab956b4bcced5.tar.gz linux-3b3bf80b994f0c6c35a25ef8965ab956b4bcced5.tar.bz2 linux-3b3bf80b994f0c6c35a25ef8965ab956b4bcced5.zip |
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/test_rhashtable.c')
-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)"); static int max_size = 0; module_param(max_size, int, 0); -MODULE_PARM_DESC(runs, "Maximum table size (default: calculated)"); +MODULE_PARM_DESC(max_size, "Maximum table size (default: calculated)"); static bool shrinking = false; module_param(shrinking, bool, 0); |