Displaying 3 results from an estimated 3 matches for "backend_path".
Did you mean:
backend_data
2010 Aug 13
0
[PATCH 1 of 4] libxl_device_generic_add: handle NULL fents or bents
...+0100
+++ b/tools/libxl/libxl_device.c Fri Aug 13 19:23:05 2010 +0100
@@ -76,21 +76,21 @@ retry_transaction:
t = xs_transaction_start(ctx->xsh);
/* FIXME: read frontend_path and check state before removing stuff */
- xs_rm(ctx->xsh, t, frontend_path);
- xs_rm(ctx->xsh, t, backend_path);
+ if (fents) {
+ xs_rm(ctx->xsh, t, frontend_path);
+ xs_mkdir(ctx->xsh, t, frontend_path);
+ xs_set_permissions(ctx->xsh, t, frontend_path, frontend_perms, ARRAY_SIZE(frontend_perms));
+ xs_write(ctx->xsh, t, libxl_sprintf(&gc, "%s/backend"...
2008 Nov 10
14
GPL PV Intermitent Network Problems
Well, I seem to have developed a strange issue with the GPL PV drivers
in Windows. I''m running Xen 3.2 on SLES 10 SP2 and running some Windows
XP HVM domUs. Most (12-15) of my Windows machines work just fine. Two
of them, though, have started exhibiting a strange behavior with
intermittent network connectivity. Basically, the network starts up and
connects initially. After some
2010 Aug 12
0
[PATCH, v2]: xl: Implement per-API-call garbage-collection lifetime
...56 2010 +0100
@@ -42,20 +42,24 @@ static const char *string_of_kinds[] = {
int libxl_device_generic_add(libxl_ctx *ctx, libxl_device *device,
char **bents, char **fents)
{
+ libxl_gc gc = LIBXL_INIT_GC(ctx);
char *dom_path_backend, *dom_path, *frontend_path, *backend_path;
xs_transaction_t t;
struct xs_permissions frontend_perms[2];
struct xs_permissions backend_perms[2];
+ int rc;
- if (!is_valid_device_kind(device->backend_kind) || !is_valid_device_kind(device->kind))
- return ERROR_INVAL;
+ if (!is_valid_device_kind(device-&...