client: pass back server side error to client exit value
authorJens Axboe <axboe@kernel.dk>
Mon, 17 Oct 2011 07:14:42 +0000 (09:14 +0200)
committerJens Axboe <axboe@kernel.dk>
Mon, 17 Oct 2011 07:14:42 +0000 (09:14 +0200)
Signed-off-by: Jens Axboe <axboe@kernel.dk>
client.c

index e6e4291b31d7715ed7f26426f7dee3f834a57fc0..fbeac35bfb30dd46635edfab70a6adb851b81c0e 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);
 
        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)
 }
 
 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;
        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);
 
 
        gettimeofday(&eta_tv, NULL);
 
@@ -1011,10 +1014,13 @@ int fio_handle_clients(void)
                                log_info("client: host=%s disconnected\n",
                                                client->hostname);
                                remove_client(client);
                                log_info("client: host=%s disconnected\n",
                                                client->hostname);
                                remove_client(client);
+                               retval = 1;
                        }
                        }
+                       if (client->error)
+                               retval = 1;
                }
        }
 
        free(pfds);
                }
        }
 
        free(pfds);
-       return 0;
+       return retval;
 }
 }