From: Jens Axboe Date: Tue, 19 Mar 2013 13:48:46 +0000 (-0600) Subject: A few ULL -> uint64_t conversions X-Git-Tag: fio-2.0.15~24 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=bdb6d20ac3e6ba85d7757c7f6e5fa04123d4870d A few ULL -> uint64_t conversions Signed-off-by: Jens Axboe --- diff --git a/fio.h b/fio.h index d7eb6dea..c42c4e1a 100644 --- a/fio.h +++ b/fio.h @@ -454,22 +454,22 @@ struct thread_data { /* * Rate state */ - unsigned long long rate_bps[DDIR_RWDIR_CNT]; + uint64_t rate_bps[DDIR_RWDIR_CNT]; long rate_pending_usleep[DDIR_RWDIR_CNT]; unsigned long rate_bytes[DDIR_RWDIR_CNT]; unsigned long rate_blocks[DDIR_RWDIR_CNT]; struct timeval lastrate[DDIR_RWDIR_CNT]; - unsigned long long total_io_size; - unsigned long long fill_device_size; + uint64_t total_io_size; + uint64_t fill_device_size; unsigned long io_issues[DDIR_RWDIR_CNT]; - unsigned long long io_blocks[DDIR_RWDIR_CNT]; - unsigned long long this_io_blocks[DDIR_RWDIR_CNT]; - unsigned long long io_bytes[DDIR_RWDIR_CNT]; - unsigned long long io_skip_bytes; - unsigned long long this_io_bytes[DDIR_RWDIR_CNT]; - unsigned long long zone_bytes; + uint64_t io_blocks[DDIR_RWDIR_CNT]; + uint64_t this_io_blocks[DDIR_RWDIR_CNT]; + uint64_t io_bytes[DDIR_RWDIR_CNT]; + uint64_t io_skip_bytes; + uint64_t this_io_bytes[DDIR_RWDIR_CNT]; + uint64_t zone_bytes; struct fio_mutex *mutex; /*