From: Steven Lang Date: Sat, 17 Mar 2012 12:16:28 +0000 (+0100) Subject: Added 99.95 and 99.99 default percentiles. X-Git-Tag: fio-2.0.6~2 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=b4b317df958821978a1b255fa16f15590c6ffbfa Added 99.95 and 99.99 default percentiles. Since there are 20 slots for percentiles, but not all used by default, I figure it doesn't hurt to add a couple extra percentiles to the default for tail latency capture. Signed-off-by: Jens Axboe --- diff --git a/init.c b/init.c index 6c74ea6b..69ed30c7 100644 --- a/init.c +++ b/init.c @@ -74,21 +74,23 @@ static char cmd_optstr[256]; static int did_arg; const fio_fp64_t def_percentile_list[FIO_IO_U_LIST_MAX_LEN] = { - { .u.f = 1.0 }, - { .u.f = 5.0 }, - { .u.f = 10.0 }, - { .u.f = 20.0 }, - { .u.f = 30.0 }, - { .u.f = 40.0 }, - { .u.f = 50.0 }, - { .u.f = 60.0 }, - { .u.f = 70.0 }, - { .u.f = 80.0 }, - { .u.f = 90.0 }, - { .u.f = 95.0 }, - { .u.f = 99.0 }, - { .u.f = 99.5 }, - { .u.f = 99.9 }, + { .u.f = 1.00 }, + { .u.f = 5.00 }, + { .u.f = 10.00 }, + { .u.f = 20.00 }, + { .u.f = 30.00 }, + { .u.f = 40.00 }, + { .u.f = 50.00 }, + { .u.f = 60.00 }, + { .u.f = 70.00 }, + { .u.f = 80.00 }, + { .u.f = 90.00 }, + { .u.f = 95.00 }, + { .u.f = 99.00 }, + { .u.f = 99.50 }, + { .u.f = 99.90 }, + { .u.f = 99.95 }, + { .u.f = 99.99 }, }; #define FIO_CLIENT_FLAG (1 << 16)