From: Jens Axboe Date: Wed, 26 Sep 2018 01:24:36 +0000 (-0600) Subject: parse: fix min/max val checking for FIO_OPT_INT X-Git-Tag: fio-3.11~23 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=5d2788d5b7987f81e705cd1656017ab36254b4f8;hp=5d2788d5b7987f81e705cd1656017ab36254b4f8;p=fio.git parse: fix min/max val checking for FIO_OPT_INT We compare an unsigned long long to an int max/min value, this is going to break for negative numbers, for instance. Fixes a case where flow=-1 doesn't work properly because of that. Signed-off-by: Jens Axboe ---