X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=client.h;h=7fe09d157ab00857594268b61bbba05b12370ba6;hp=cfb0b4d4793bef27e5f2086f1b9c1219852aceee;hb=4205998f8be13752f9857ef6e28b6c7f86a3c769;hpb=8a78a3b7d31b7e7346115e45235108a7ffb7ec85 diff --git a/client.h b/client.h index cfb0b4d4..7fe09d15 100644 --- a/client.h +++ b/client.h @@ -41,6 +41,8 @@ struct fio_client { char *name; + struct flist_head *opt_lists; + int state; int skip_newline; @@ -60,6 +62,7 @@ struct fio_client { struct flist_head eta_list; struct client_eta *eta_in_flight; + unsigned int eta_timeouts; struct flist_head cmd_list; @@ -73,12 +76,10 @@ struct fio_client { unsigned int nr_files; }; -struct cmd_iolog_pdu; typedef void (client_cmd_op)(struct fio_client *, struct fio_net_cmd *); typedef void (client_eta_op)(struct jobs_eta *je); typedef void (client_timed_out_op)(struct fio_client *); typedef void (client_jobs_eta_op)(struct fio_client *client, struct jobs_eta *je); -typedef void (client_iolog_op)(struct fio_client *client, struct cmd_iolog_pdu *); struct client_ops { client_cmd_op *text; @@ -95,7 +96,6 @@ struct client_ops { client_cmd_op *stop; client_cmd_op *start; client_cmd_op *job_start; - client_iolog_op *iolog; client_timed_out_op *removed; unsigned int eta_msec;