From bdab4441a476b8597001026445707daa1109aec2 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Fri, 30 Sep 2011 22:58:13 -0600 Subject: [PATCH] server: serial is a 64-bit field Signed-off-by: Jens Axboe --- server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.c b/server.c index 44f5fa01..fe93ffbe 100644 --- a/server.c +++ b/server.c @@ -162,7 +162,7 @@ static int send_simple_command(int sk, uint16_t opcode, uint64_t serial) struct fio_net_cmd cmd = { .version = cpu_to_le16(FIO_SERVER_VER1), .opcode = cpu_to_le16(opcode), - .serial = cpu_to_le16(serial), + .serial = cpu_to_le64(serial), }; fio_net_cmd_crc(&cmd); -- 2.25.1