server: move fio_net_cmd to the end of fio_net_int_cmd
authorJens Axboe <axboe@kernel.dk>
Tue, 8 Jan 2013 12:43:14 +0000 (13:43 +0100)
committerJens Axboe <axboe@kernel.dk>
Tue, 8 Jan 2013 12:43:14 +0000 (13:43 +0100)
commita28b019dcb27e71037c4393f7272fccebcd150f5
tree8b8b6ddeb66ecf1f2cc69a7cf1c959db097465f9
parent372aecb9049618c1279a946b66f6b29066730951
server: move fio_net_cmd to the end of fio_net_int_cmd

fio_net_cmd is variably sized. We don't use any transfer space
for the internal command, but the compiler might complain about
this (since it has no way to know this fact). Move fio_net_cmd
to the end of the internal command to both avoid a warning on
clang and to make this more idiot proof.

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