]> git.ozlabs.org Git - petitboot/blobdiff - ui/common/discover-client.c
Fix out of source make dist
[petitboot] / ui / common / discover-client.c
index 7c2e27daa777a4ddbb8cb4e4063b090c70e8cc52..6b991b14791a8b85beb3cfe5f19ab98a2d1a9593 100644 (file)
@@ -10,7 +10,7 @@
 #include <asm/byteorder.h>
 
 #include <talloc/talloc.h>
-#include <log.h>
+#include <log/log.h>
 
 #include "ui/common/discover-client.h"
 #include "pb-protocol/pb-protocol.h"
@@ -33,7 +33,7 @@ static int discover_client_destructor(void *arg)
 }
 
 struct discover_client* discover_client_init(
-       const struct discover_client_ops *ops)
+       const struct discover_client_ops *ops, void *cb_arg)
 {
        struct discover_client *client;
        struct sockaddr_un addr;
@@ -43,6 +43,7 @@ struct discover_client* discover_client_init(
                return NULL;
 
        memcpy(&client->ops, ops, sizeof(client->ops));
+       client->ops.cb_arg = cb_arg;
 
        client->fd = socket(AF_UNIX, SOCK_STREAM, 0);
        if (!client->fd < 0) {
@@ -107,10 +108,6 @@ static void remove_device(struct discover_client *client, const char *id)
        if (!device)
                return;
 
-       client->ops.remove_device(device, client->ops.cb_arg);
-
-       talloc_free(device);
-
        /* remove the device from the client's device array */
        client->n_devices--;
        memmove(&client->devices[i], &client->devices[i+1],
@@ -118,6 +115,10 @@ static void remove_device(struct discover_client *client, const char *id)
        client->devices = talloc_realloc(client, client->devices,
                        struct device *, client->n_devices);
 
+       /* notify the UI */
+       client->ops.remove_device(device, client->ops.cb_arg);
+
+       talloc_free(device);
 }
 
 int discover_client_process(struct discover_client *client)