From: Jens Axboe Date: Thu, 11 Apr 2013 11:45:51 +0000 (+0200) Subject: client: move jobs_eta to the end of client_eta X-Git-Tag: fio-2.1~54 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=166fb52041fd81e453fa77ccea48abaa20dc5b3e client: move jobs_eta to the end of client_eta It has a variably length field. Signed-off-by: Jens Axboe --- diff --git a/client.h b/client.h index 10d6ec36..c8ff23ec 100644 --- a/client.h +++ b/client.h @@ -101,8 +101,8 @@ struct client_ops { extern struct client_ops fio_client_ops; struct client_eta { - struct jobs_eta eta; unsigned int pending; + struct jobs_eta eta; }; extern int fio_handle_client(struct fio_client *);