From d7e9266cdb9311b07e2cfeb16a1c4390ca610836 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Mon, 15 Aug 2016 09:39:35 -0600 Subject: [PATCH] fio: move thread_options Signed-off-by: Jens Axboe --- fio.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/fio.h b/fio.h index 7f685eae..33b43193 100644 --- a/fio.h +++ b/fio.h @@ -126,11 +126,10 @@ struct zone_split_index { * This describes a single thread/process executing a fio job. */ struct thread_data { - struct thread_options o; struct flist_head opt_list; unsigned long flags; + struct thread_options o; void *eo; - char verror[FIO_VERROR_SIZE]; pthread_t thread; unsigned int thread_number; unsigned int subjob_number; @@ -394,6 +393,8 @@ struct thread_data { void *prof_data; void *pinned_mem; + + char verror[FIO_VERROR_SIZE]; }; /* -- 2.25.1