X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=client.c;h=af1dba44ff77d8f8d0d11b6d90fda29521a2b8cf;hb=a9eccde44c0c5074fd11c1904d8cbcddeb883bfd;hp=a65cbcba9d505795f76eb72ce2ad958c87569c97;hpb=89e5fad91bc33f1687cca6b1bf5aa3084c424650;p=fio.git diff --git a/client.c b/client.c index a65cbcba..af1dba44 100644 --- a/client.c +++ b/client.c @@ -26,35 +26,29 @@ static void handle_ts(struct fio_client *client, struct fio_net_cmd *cmd); static void handle_gs(struct fio_client *client, struct fio_net_cmd *cmd); static void handle_probe(struct fio_client *client, struct fio_net_cmd *cmd); static void handle_text(struct fio_client *client, struct fio_net_cmd *cmd); +static void handle_stop(struct fio_client *client, struct fio_net_cmd *cmd); struct client_ops fio_client_ops = { .text_op = handle_text, .disk_util = handle_du, .thread_status = handle_ts, .group_stats = handle_gs, + .stop = handle_stop, .eta = display_thread_status, .probe = handle_probe, }; static struct timeval eta_tv; -enum { - Client_created = 0, - Client_connected = 1, - Client_started = 2, - Client_running = 3, - Client_stopped = 4, - Client_exited = 5, -}; - static FLIST_HEAD(client_list); static FLIST_HEAD(eta_list); static FLIST_HEAD(arg_list); -static struct thread_stat client_ts; -static struct group_run_stats client_gs; -static int sum_stat_clients; +struct thread_stat client_ts; +struct group_run_stats client_gs; +int sum_stat_clients; + static int sum_stat_nr; #define FIO_CLIENT_HASH_BITS 7 @@ -93,8 +87,10 @@ static struct fio_client *find_client_by_fd(int fd) flist_for_each(entry, &client_hash[bucket]) { client = flist_entry(entry, struct fio_client, hash_list); - if (client->fd == fd) + if (client->fd == fd) { + client->refs++; return client; + } } return NULL; @@ -102,6 +98,11 @@ static struct fio_client *find_client_by_fd(int fd) static void remove_client(struct fio_client *client) { + assert(client->refs); + + if (--client->refs) + return; + dprint(FD_NET, "client: removed <%s>\n", client->hostname); flist_del(&client->list); @@ -123,6 +124,11 @@ static void remove_client(struct fio_client *client) sum_stat_clients--; } +static void put_client(struct fio_client *client) +{ + remove_client(client); +} + static void __fio_client_add_cmd_option(struct fio_client *client, const char *opt) { @@ -187,6 +193,7 @@ struct fio_client *fio_client_add_explicit(struct client_ops *ops, client->fd = -1; client->ops = ops; + client->refs = 1; __fio_client_add_cmd_option(client, "fio"); @@ -235,6 +242,7 @@ int fio_client_add(struct client_ops *ops, const char *hostname, void **cookie) client->fd = -1; client->ops = ops; + client->refs = 1; __fio_client_add_cmd_option(client, "fio"); @@ -308,7 +316,7 @@ static int fio_client_connect_sock(struct fio_client *client) return fd; } -static int fio_client_connect(struct fio_client *client) +int fio_client_connect(struct fio_client *client) { int fd; @@ -330,6 +338,11 @@ static int fio_client_connect(struct fio_client *client) return 0; } +void fio_client_terminate(struct fio_client *client) +{ + fio_net_send_simple_cmd(client->fd, FIO_NET_CMD_QUIT, 0, NULL); +} + void fio_clients_terminate(void) { struct flist_head *entry; @@ -339,8 +352,7 @@ void fio_clients_terminate(void) flist_for_each(entry, &client_list) { client = flist_entry(entry, struct fio_client, list); - - fio_net_send_simple_cmd(client->fd, FIO_NET_CMD_QUIT, 0, NULL); + fio_client_terminate(client); } } @@ -452,6 +464,33 @@ int fio_clients_connect(void) return !nr_clients; } +int fio_start_client(struct fio_client *client) +{ + dprint(FD_NET, "client: start %s\n", client->hostname); + return fio_net_send_simple_cmd(client->fd, FIO_NET_CMD_RUN, 0, NULL); +} + +int fio_start_all_clients(void) +{ + struct fio_client *client; + struct flist_head *entry, *tmp; + int ret; + + dprint(FD_NET, "client: start all\n"); + + flist_for_each_safe(entry, tmp, &client_list) { + client = flist_entry(entry, struct fio_client, list); + + ret = fio_start_client(client); + if (ret) { + remove_client(client); + continue; + } + } + + return flist_empty(&client_list); +} + /* * Send file contents to server backend. We could use sendfile(), but to remain * more portable lets just read/write the darn thing. @@ -730,6 +769,7 @@ static void convert_jobs_eta(struct jobs_eta *je) je->elapsed_sec = le64_to_cpu(je->elapsed_sec); je->eta_sec = le64_to_cpu(je->eta_sec); + je->nr_threads = le32_to_cpu(je->nr_threads); } void fio_client_sum_jobs_eta(struct jobs_eta *dst, struct jobs_eta *je) @@ -754,6 +794,9 @@ void fio_client_sum_jobs_eta(struct jobs_eta *dst, struct jobs_eta *je) if (je->eta_sec > dst->eta_sec) dst->eta_sec = je->eta_sec; + + dst->nr_threads += je->nr_threads; + /* we need to handle je->run_str too ... */ } void fio_client_dec_jobs_eta(struct client_eta *eta, client_eta_op eta_fn) @@ -800,6 +843,9 @@ static void handle_eta(struct fio_client *client, struct fio_net_cmd *cmd) client->eta_in_flight = NULL; flist_del_init(&client->eta_list); + if (client->ops->jobs_eta) + client->ops->jobs_eta(client, je); + fio_client_sum_jobs_eta(&eta->eta, je); fio_client_dec_jobs_eta(eta, client->ops->eta); } @@ -838,15 +884,17 @@ static void handle_start(struct fio_client *client, struct fio_net_cmd *cmd) static void handle_stop(struct fio_client *client, struct fio_net_cmd *cmd) { - struct cmd_end_pdu *pdu = (struct cmd_end_pdu *) cmd->payload; - - client->state = Client_stopped; - client->error = le32_to_cpu(pdu->error); - if (client->error) log_info("client <%s>: exited with error %d\n", client->hostname, client->error); } +static void convert_stop(struct fio_net_cmd *cmd) +{ + struct cmd_end_pdu *pdu = (struct cmd_end_pdu *) cmd->payload; + + pdu->error = le32_to_cpu(pdu->error); +} + static void convert_text(struct fio_net_cmd *cmd) { struct cmd_text_pdu *pdu = (struct cmd_text_pdu *) cmd->payload; @@ -868,8 +916,8 @@ int fio_handle_client(struct fio_client *client) if (!cmd) return 0; - dprint(FD_NET, "client: got cmd op %s from %s\n", - fio_server_op(cmd->opcode), client->hostname); + dprint(FD_NET, "client: got cmd op %s from %s (pdu=%u)\n", + fio_server_op(cmd->opcode), client->hostname, cmd->pdu_len); switch (cmd->opcode) { case FIO_NET_CMD_QUIT: @@ -926,7 +974,7 @@ int fio_handle_client(struct fio_client *client) ops->probe(client, cmd); free(cmd); break; - case FIO_NET_CMD_RUN: + case FIO_NET_CMD_SERVER_START: client->state = Client_running; free(cmd); break; @@ -934,10 +982,16 @@ int fio_handle_client(struct fio_client *client) handle_start(client, cmd); free(cmd); break; - case FIO_NET_CMD_STOP: - handle_stop(client, cmd); + case FIO_NET_CMD_STOP: { + struct cmd_end_pdu *pdu = (struct cmd_end_pdu *) cmd->payload; + + convert_stop(cmd); + client->state = Client_stopped; + client->error = pdu->error; + ops->stop(client, cmd); free(cmd); break; + } case FIO_NET_CMD_ADD_JOB: if (ops->add_job) ops->add_job(client, cmd); @@ -1116,6 +1170,7 @@ int fio_handle_clients(struct client_ops *ops) retval = 1; } else if (client->error) retval = 1; + put_client(client); } }