Commit 4802211cfd68e44c8401a8fe3657e9c2522ec517

Authored by Josh Triplett
Committed by Adrian Bunk
1 parent d32ccc431b

rcutorture: Fix incorrect description of default for nreaders parameter

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 <josh@freedesktop.org>
Acked-by: Paul E. McKenney <paulmck@us.ibm.com>
Signed-off-by: Adrian Bunk <bunk@stusta.de>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -47,7 +47,7 @@
47 47  
48 48 MODULE_LICENSE("GPL");
49 49  
50   -static int nreaders = -1; /* # reader threads, defaults to 4*ncpus */
  50 +static int nreaders = -1; /* # reader threads, defaults to 2*ncpus */
51 51 static int stat_interval; /* Interval between stats, in seconds. */
52 52 /* Defaults to "only at end of test". */
53 53 static int verbose; /* Print more debug info. */