From: Tomohiro Kusumi Date: Wed, 28 Jun 2017 14:21:06 +0000 (+0300) Subject: add FD_PARSE debug print for size= option (which exists in offset=) X-Git-Tag: fio-2.99~17 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=24e4321c5c1fb81d2bc2a0245bdc1e8350c768d7;p=fio.git add FD_PARSE debug print for size= option (which exists in offset=) Signed-off-by: Tomohiro Kusumi Signed-off-by: Jens Axboe --- diff --git a/options.c b/options.c index 7431ed8c..f103fc46 100644 --- a/options.c +++ b/options.c @@ -1410,6 +1410,8 @@ static int str_size_cb(void *data, unsigned long long *__val) if (parse_is_percent(v)) { td->o.size = 0; td->o.size_percent = -1ULL - v; + dprint(FD_PARSE, "SET size_percent %d\n", + td->o.size_percent); } else td->o.size = v;