Commit b20260f3 authored by Konstantin Khlebnikov's avatar Konstantin Khlebnikov

ioping: move 64m temp working set size to rate test

And document 256k requests at linear test.
Signed-off-by: default avatarKonstantin Khlebnikov <koct9i@gmail.com>
parent 7ded7a65
...@@ -42,7 +42,7 @@ Working set size. ...@@ -42,7 +42,7 @@ Working set size.
Offset in input file. Offset in input file.
.TP .TP
.B \-L .B \-L
Use sequential operations rather than random. Use sequential operations rather than random (imply \fB-s 256k\fR).
.TP .TP
.B \-C .B \-C
Use cached I/O. Use cached I/O.
...@@ -51,7 +51,7 @@ Use cached I/O. ...@@ -51,7 +51,7 @@ Use cached I/O.
Use direct I/O. Use direct I/O.
.TP .TP
.B \-R .B \-R
Disk seek rate test (same as \fB-q -i 0 -w 3\fR). Disk seek rate test (same as \fB-q -i 0 -w 3 -S 64m\fR).
.TP .TP
.B \-q .B \-q
Suppress human-readable output. Suppress human-readable output.
......
...@@ -263,11 +263,11 @@ void parse_options(int argc, char **argv) ...@@ -263,11 +263,11 @@ void parse_options(int argc, char **argv)
case 'L': case 'L':
randomize = 0; randomize = 0;
size = 1<<18; size = 1<<18;
temp_wsize = 1<<26;
break; break;
case 'R': case 'R':
interval = 0; interval = 0;
deadline = 3000000; deadline = 3000000;
temp_wsize = 1<<26;
quiet = 1; quiet = 1;
break; break;
case 'D': case 'D':
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment