server: include number of CPUs in probe reply
[fio.git] / server.h
index 422bfbf2b571617aeda1af3da8ce2ba86be0eeba..3c704213a82fe35c88780e13f32f8ca6bc59890c 100644 (file)
--- a/server.h
+++ b/server.h
@@ -30,15 +30,15 @@ struct fio_net_cmd {
        uint8_t payload[0];     /* payload */
 };
 
-struct fio_net_int_cmd {
-       struct fio_net_cmd cmd;
+struct fio_net_cmd_reply {
        struct flist_head list;
        struct timeval tv;
        uint64_t saved_tag;
+       uint16_t opcode;
 };
 
 enum {
-       FIO_SERVER_VER                  = 14,
+       FIO_SERVER_VER                  = 15,
 
        FIO_SERVER_MAX_FRAGMENT_PDU     = 1024,
 
@@ -59,7 +59,8 @@ enum {
        FIO_NET_CMD_ADD_JOB             = 15,
        FIO_NET_CMD_RUN                 = 16,
        FIO_NET_CMD_IOLOG               = 17,
-       FIO_NET_CMD_NR                  = 18,
+       FIO_NET_CMD_UPDATE_JOB          = 18,
+       FIO_NET_CMD_NR                  = 19,
 
        FIO_NET_CMD_F_MORE              = 1UL << 0,
 
@@ -91,6 +92,8 @@ struct cmd_probe_pdu {
        uint8_t os;
        uint8_t arch;
        uint8_t bpp;
+       uint32_t cpus;
+       uint64_t flags;
 };
 
 struct cmd_single_line_pdu {
@@ -143,7 +146,7 @@ struct cmd_iolog_pdu {
 
 extern int fio_start_server(char *);
 extern int fio_server_text_output(int, const char *, size_t);
-extern int fio_net_send_cmd(int, uint16_t, const void *, off_t, uint64_t);
+extern int fio_net_send_cmd(int, uint16_t, const void *, off_t, uint64_t *, struct flist_head *);
 extern int fio_net_send_simple_cmd(int, uint16_t, uint64_t, struct flist_head *);
 extern void fio_server_set_arg(const char *);
 extern int fio_server_parse_string(const char *, char **, int *, int *, struct in_addr *, struct in6_addr *, int *);