From: Alexander Larin Date: Wed, 28 Feb 2018 11:25:42 +0000 (+0300) Subject: Fix overflow of counters incremented on each I/O operation X-Git-Tag: fio-3.6~62^2 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=6cc0e5aa9eddd2487dfa9ac80be1264151058409;hp=6cc0e5aa9eddd2487dfa9ac80be1264151058409;p=fio.git Fix overflow of counters incremented on each I/O operation - In the thread_stat struct: uint32_t counters are updated to uint64_t. - In the io_u_plat_entry struct: unsigned int counters are updated to uint64_t. It fixes overflow of these counters. Signed-off-by: Alexander Larin ---