Another one introduced since the gc patch-set.
Signed-off-by: Gianni Tedesco <gianni.tedesco@xxxxxxxxxx>
diff -r f353f1ac38f6 tools/libxl/libxl_device.c
--- a/tools/libxl/libxl_device.c Tue Aug 17 12:45:44 2010 +0100
+++ b/tools/libxl/libxl_device.c Tue Aug 17 13:47:24 2010 +0100
@@ -457,6 +457,7 @@ int libxl_wait_for_backend(libxl_ctx *ct
unsigned int len;
char *p;
char *path = libxl_sprintf(&gc, "%s/state", be_path);
+ int rc = -1;
while (watchdog > 0) {
p = xs_read(ctx->xsh, XBT_NULL, path, &len);
@@ -468,10 +469,11 @@ int libxl_wait_for_backend(libxl_ctx *ct
XL_LOG_ERRNO(ctx, XL_LOG_ERROR, "Failed to access backend %s",
be_path);
}
- return -1;
+ goto out;
} else {
if (!strcmp(p, state)) {
- return 0;
+ rc = 0;
+ goto out;
} else {
usleep(100000);
watchdog--;
@@ -479,6 +481,7 @@ int libxl_wait_for_backend(libxl_ctx *ct
}
}
XL_LOG(ctx, XL_LOG_ERROR, "Backend %s not ready", be_path);
+out:
libxl_free_all(&gc);
return -1;
}
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|