client: move jobs_eta to the end of client_eta
authorJens Axboe <axboe@kernel.dk>
Thu, 11 Apr 2013 11:45:51 +0000 (13:45 +0200)
committerJens Axboe <axboe@kernel.dk>
Thu, 11 Apr 2013 11:45:51 +0000 (13:45 +0200)
It has a variably length field.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
client.h

index 10d6ec36cac34f1de66e5cc0951cd191c9375e33..c8ff23ecdd68a8b26142b35d961619f9e18633ff 100644 (file)
--- 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 *);