From 0db2679750e4cc8f38af7af135f1ba8481d6def6 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Wed, 16 May 2007 08:59:27 +0200 Subject: [PATCH 1/1] Fix timeout on 64-bit BE archs We stored the timeout in an unsigned long long pointer, but the value was really unsigned long. --- fio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fio.h b/fio.h index bcd188b3..6ee0d6aa 100644 --- a/fio.h +++ b/fio.h @@ -393,7 +393,7 @@ struct thread_options { unsigned int thinktime_blocks; unsigned int fsync_blocks; unsigned int start_delay; - unsigned long timeout; + unsigned long long timeout; unsigned int overwrite; unsigned int bw_avg_time; unsigned int loops; -- 2.25.1