[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] libxl: events: improve debugging output for xs watches
# HG changeset patch # User Ian Jackson <ian.jackson@xxxxxxxxxxxxx> # Date 1337684101 -3600 # Node ID 59bbda2c840c67e9f84ab52457fe3d7cb360cef8 # Parent 174dcb06b9245f4d6076050ef44325715758fdda libxl: events: improve debugging output for xs watches * Add debugging output for register/deregister. * Make the debugging printfs consistent about the order in which they print the information. * Where we touch the code, change LIBXL__LOG to LOG. Signed-off-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> Committed-by: Ian Campbell <ian.campbell@xxxxxxxxxx> --- diff -r 174dcb06b924 -r 59bbda2c840c tools/libxl/libxl_event.c --- a/tools/libxl/libxl_event.c Tue May 22 11:55:00 2012 +0100 +++ b/tools/libxl/libxl_event.c Tue May 22 11:55:01 2012 +0100 @@ -420,9 +420,8 @@ static void watchfd_callback(libxl__egc } if (w->counterval != counterval) { - LIBXL__LOG(CTX, LIBXL__LOG_DEBUG, - "watch epath=%s token=%s: counter != %"PRIx32, - epath, token, w->counterval); + LOG(DEBUG, "watch w=%p epath=%s token=%s: counter != %"PRIx32, + w, epath, token, w->counterval); goto ignore; } @@ -440,16 +439,14 @@ static void watchfd_callback(libxl__egc * See also docs/misc/xenstore.txt. */ if (!xs_path_is_subpath(w->path, epath)) { - LIBXL__LOG(CTX, LIBXL__LOG_DEBUG, - "watch epath=%s token=%s: not child of wpath=%s", - epath, token, w->path); + LOG(DEBUG, "watch w=%p wpath=%s token=%s: unexpected epath=%s", + w, w->path, token, epath); goto ignore; } /* At last, we have checked everything! */ - LIBXL__LOG(CTX, LIBXL__LOG_DEBUG, - "watch event: epath=%s token=%s wpath=%s w=%p", - epath, token, w->path, w); + LOG(DEBUG, "watch w=%p wpath=%s token=%s: event epath=%s", + w, w->path, token, epath); w->callback(egc, w, w->path, epath); ignore: @@ -502,7 +499,11 @@ int libxl__ev_xswatch_register(libxl__gc int slotnum = use - CTX->watch_slots; w->counterval = CTX->watch_counter++; - if (!xs_watch(CTX->xsh, path, watch_token(gc, slotnum, w->counterval))) { + const char *token = watch_token(gc, slotnum, w->counterval); + LOG(DEBUG, "watch w=%p wpath=%s token=%s: register slotnum=%d", + w, path, token, slotnum); + + if (!xs_watch(CTX->xsh, path, token)) { LIBXL__LOG_ERRNOVAL(CTX, LIBXL__LOG_ERROR, errno, "create watch for path %s", path); rc = ERROR_FAIL; @@ -534,7 +535,11 @@ void libxl__ev_xswatch_deregister(libxl_ CTX_LOCK; if (w->slotnum >= 0) { - char *token = watch_token(gc, w->slotnum, w->counterval); + const char *token = watch_token(gc, w->slotnum, w->counterval); + + LOG(DEBUG, "watch w=%p wpath=%s token=%s: deregister slotnum=%d", + w, w->path, token, w->slotnum); + if (!xs_unwatch(CTX->xsh, w->path, token)) /* Oh well, we will just get watch events forever more * and ignore them. But we should complain to the log. */ @@ -544,6 +549,8 @@ void libxl__ev_xswatch_deregister(libxl_ libxl__ev_watch_slot *slot = &CTX->watch_slots[w->slotnum]; LIBXL_SLIST_INSERT_HEAD(&CTX->watch_freeslots, slot, empty); w->slotnum = -1; + } else { + LOG(DEBUG, "watch w=%p: deregister unregistered", w); } free(w->path); _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |