Skip to content

Commit

Permalink
rhashtable-test: Fix max_size parameter description
Browse files Browse the repository at this point in the history
Looks like a simple copy'n'paste error.

Fixes: 1aa661f ("rhashtable-test: Measure time to insert, remove & traverse entries")
Signed-off-by: Phil Sutter <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
Phil Sutter authored and davem330 committed Aug 8, 2016
1 parent 05ec40f commit 3b3bf80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/test_rhashtable.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 3b3bf80

Please sign in to comment.