From a5bbbd8a324a33fb54b6073850bc8ee653c71030 Mon Sep 17 00:00:00 2001 From: Gwendal Grignou Date: Fri, 24 Oct 2014 13:42:37 -0700 Subject: [PATCH] fio: fix alignement to prevent bus error on ARM Add a filler field to be ensure 64bit alignment. Otherwise, we would trigger SIGBUS error in sum_stat() Signed-off-by: Gwendal Grignou Signed-off-by: Jens Axboe --- stat.h | 1 + 1 file changed, 1 insertion(+) diff --git a/stat.h b/stat.h index 32ea2269..9595e59e 100644 --- a/stat.h +++ b/stat.h @@ -172,6 +172,7 @@ struct thread_stat { * IO Error related stats */ uint16_t continue_on_error; + uint16_t filler[3]; uint64_t total_err_count; uint32_t first_error; -- 2.25.1