Add terse version 2 output format
[fio.git] / client.c
index e6e4291b31d7715ed7f26426f7dee3f834a57fc0..fda16b8e5e6c62233e6ff6f5e5abf763aee8a35e 100644 (file)
--- a/client.c
+++ b/client.c
@@ -786,6 +786,9 @@ static void handle_stop(struct fio_client *client, struct fio_net_cmd *cmd)
 
        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 int handle_client(struct fio_client *client)
@@ -954,7 +957,7 @@ int fio_handle_clients(void)
        struct fio_client *client;
        struct flist_head *entry;
        struct pollfd *pfds;
-       int i, ret = 0;
+       int i, ret = 0, retval = 0;
 
        gettimeofday(&eta_tv, NULL);
 
@@ -1011,10 +1014,12 @@ int fio_handle_clients(void)
                                log_info("client: host=%s disconnected\n",
                                                client->hostname);
                                remove_client(client);
-                       }
+                               retval = 1;
+                       } else if (client->error)
+                               retval = 1;
                }
        }
 
        free(pfds);
-       return 0;
+       return retval;
 }