[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH] tools/xenstore: Do not abort xenstore-ls if a node disappears while iterating
From: David Woodhouse <dwmw@xxxxxxxxxxxx> When recursing, a node sometimes disappears. Deal with it and move on instead of aborting and failing to print the rest of what was requested. Signed-off-by: David Woodhouse <dwmw@xxxxxxxxxxxx> --- And thus did an extremely sporadic "not going to delete that device because it already doesn't exist" failure mode become painfully obvious in retrospect... diff --git a/tools/xenstore/xenstore_client.c b/tools/xenstore/xenstore_client.c index 3afc630ab8..c089d60a2a 100644 --- a/tools/xenstore/xenstore_client.c +++ b/tools/xenstore/xenstore_client.c @@ -153,8 +153,13 @@ static void do_ls(struct xs_handle *h, char *path, int cur_depth, int show_perms err(1, "malloc in do_ls"); e = xs_directory(h, XBT_NULL, path, &num); - if (e == NULL) - err(1, "xs_directory (%s)", path); + if (e == NULL) { + if (!cur_depth) + err(1, "xs_directory (%s)", path); + + /* If a node disappears while recursing, silently move on. */ + num = 0; + } for (i = 0; i<num; i++) { char buf[MAX_STRLEN(unsigned int)+1]; Attachment:
smime.p7s _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |