Skip to content

Commit

Permalink
rcutorture: Fix incorrect description of default for nreaders parameter
Browse files Browse the repository at this point in the history
The comment for the nreaders parameter of rcutorture gives the default as
4*ncpus, but the value actually defaults to 2*ncpus; fix the comment.

Signed-off-by: Josh Triplett <[email protected]>
Acked-by: Paul E. McKenney <[email protected]>
Signed-off-by: Adrian Bunk <[email protected]>
  • Loading branch information
joshtriplett authored and AdrianBunk committed Oct 3, 2006
1 parent d32ccc4 commit 4802211
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/rcutorture.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

MODULE_LICENSE("GPL");

static int nreaders = -1; /* # reader threads, defaults to 4*ncpus */
static int nreaders = -1; /* # reader threads, defaults to 2*ncpus */
static int stat_interval; /* Interval between stats, in seconds. */
/* Defaults to "only at end of test". */
static int verbose; /* Print more debug info. */
Expand Down

0 comments on commit 4802211

Please sign in to comment.