Mailing List Archive

[xen-unstable] xs: avoid pthread_join deadlock in xs_daemon_close
# HG changeset patch
# User Keir Fraser <keir.fraser@citrix.com>
# Date 1273650553 -3600
# Node ID 9de69d816b11dd656595c1c4a5383d19a650334f
# Parent 2dd3141b3e3e6987f18ba54ff7f2b9bf4f061903
xs: avoid pthread_join deadlock in xs_daemon_close

Doing a pthread_cancel and join on the reader thread while holding all
the request/reply/watch mutexes can deadlock if the thread needs to
take any of those mutexes to exit. Kill off the reader thread before
taking any mutexes (which should be redundant if we're
single-threaded at that point).

Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
---
tools/xenstore/xs.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)

diff -r 2dd3141b3e3e -r 9de69d816b11 tools/xenstore/xs.c
--- a/tools/xenstore/xs.c Wed May 12 08:48:14 2010 +0100
+++ b/tools/xenstore/xs.c Wed May 12 08:49:13 2010 +0100
@@ -260,16 +260,16 @@ void xs_daemon_destroy_postfork(struct x

void xs_daemon_close(struct xs_handle *h)
{
- mutex_lock(&h->request_mutex);
- mutex_lock(&h->reply_mutex);
- mutex_lock(&h->watch_mutex);
-
#ifdef USE_PTHREAD
if (h->read_thr_exists) {
pthread_cancel(h->read_thr);
pthread_join(h->read_thr, NULL);
}
#endif
+
+ mutex_lock(&h->request_mutex);
+ mutex_lock(&h->reply_mutex);
+ mutex_lock(&h->watch_mutex);

close_free_msgs(h);


_______________________________________________
Xen-changelog mailing list
Xen-changelog@lists.xensource.com
http://lists.xensource.com/xen-changelog