[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] libxl: ao: Count the nested progeny of an ao
commit b1102ae7b4d19b8df78d5c9b48305cc3787488aa Author: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> AuthorDate: Fri Dec 20 15:58:35 2013 +0000 Commit: Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx> CommitDate: Fri Jun 26 16:53:50 2015 +0100 libxl: ao: Count the nested progeny of an ao This will detect any "escaped" nested aos. Signed-off-by: Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> --- tools/libxl/libxl_event.c | 8 +++++++- tools/libxl/libxl_internal.h | 1 + 2 files changed, 8 insertions(+), 1 deletions(-) diff --git a/tools/libxl/libxl_event.c b/tools/libxl/libxl_event.c index 47d65a3..96efb33 100644 --- a/tools/libxl/libxl_event.c +++ b/tools/libxl/libxl_event.c @@ -1765,6 +1765,7 @@ void libxl__ao_complete(libxl__egc *egc, libxl__ao *ao, int rc) assert(ao->magic == LIBXL__AO_MAGIC); assert(!ao->complete); assert(!ao->nested_root); + assert(!ao->nested_progeny); ao->complete = 1; ao->rc = rc; @@ -1975,6 +1976,8 @@ _hidden libxl__ao *libxl__nested_ao_create(libxl__ao *parent) child = libxl__zalloc(&ctx->nogc_gc, sizeof(*child)); child->magic = LIBXL__AO_MAGIC; child->nested_root = root; + assert(root->nested_progeny < INT_MAX); + root->nested_progeny++; LIBXL_INIT_GC(child->gc, ctx); libxl__gc *gc = &child->gc; @@ -1985,7 +1988,10 @@ _hidden libxl__ao *libxl__nested_ao_create(libxl__ao *parent) _hidden void libxl__nested_ao_free(libxl__ao *child) { assert(child->magic == LIBXL__AO_MAGIC); - assert(child->nested_root); + libxl__ao *root = child->nested_root; + assert(root); + assert(root->nested_progeny > 0); + root->nested_progeny--; libxl_ctx *ctx = libxl__gc_owner(&child->gc); libxl__ao__destroy(ctx, child); } diff --git a/tools/libxl/libxl_internal.h b/tools/libxl/libxl_internal.h index 9e57585..79cdec1 100644 --- a/tools/libxl/libxl_internal.h +++ b/tools/libxl/libxl_internal.h @@ -470,6 +470,7 @@ struct libxl__ao { uint32_t magic; unsigned constructing:1, in_initiator:1, complete:1, notified:1; libxl__ao *nested_root; + int nested_progeny; int progress_reports_outstanding; int rc; libxl__gc gc; -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |