From ea3c936ea2553dba0cc789a4ef197bc78261c841 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Sun, 2 Oct 2011 03:06:14 -0400 Subject: [PATCH] server: make struct group_run_stats network transfer friendly Use explicitly sized types. Signed-off-by: Jens Axboe --- fio.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/fio.h b/fio.h index db0a417f..5928b45a 100644 --- a/fio.h +++ b/fio.h @@ -46,11 +46,11 @@ struct thread_data; #endif struct group_run_stats { - unsigned long long max_run[2], min_run[2]; - unsigned long long max_bw[2], min_bw[2]; - unsigned long long io_kb[2]; - unsigned long long agg[2]; - unsigned int kb_base; + uint64_t max_run[2], min_run[2]; + uint64_t max_bw[2], min_bw[2]; + uint64_t io_kb[2]; + uint64_t agg[2]; + uint32_t kb_base; }; /* -- 2.25.1