All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ben Guthro <bguthro@virtualiron.com>
To: xen-devel@lists.xensource.com, Gary Grebus <ggrebus@virtualiron.com>
Subject: [PATCH][QEMU] Make active-timers thread-safe
Date: Mon, 27 Aug 2007 14:58:26 -0400	[thread overview]
Message-ID: <46D31ED2.8070602@virtualiron.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 202 bytes --]

Protect active_timers[] lists with mutexes so timers can be safely used from different threads.

Signed-off-by: Ben Guthro <bguthro@vrtualiron.com>
Signed-off-by: Gary Grebus <ggrebus@virtualiron.com>


[-- Attachment #2: qemu-threadsafe-timers.patch --]
[-- Type: text/x-patch, Size: 3089 bytes --]

diff -r 475eda44cd99 tools/ioemu/vl.c
--- a/tools/ioemu/vl.c	Mon Aug 27 14:14:56 2007 -0400
+++ b/tools/ioemu/vl.c	Mon Aug 27 14:14:56 2007 -0400
@@ -759,6 +759,7 @@ QEMUClock *vm_clock;
 QEMUClock *vm_clock;
 
 static QEMUTimer *active_timers[2];
+static pthread_mutex_t active_timers_lock[2];
 #ifdef _WIN32
 static MMRESULT timerID;
 static HANDLE host_alarm = NULL;
@@ -795,7 +796,7 @@ void qemu_free_timer(QEMUTimer *ts)
 }
 
 /* stop a timer, but do not dealloc it */
-void qemu_del_timer(QEMUTimer *ts)
+static void qemu_del_timer_nolock(QEMUTimer *ts)
 {
     QEMUTimer **pt, *t;
 
@@ -808,10 +809,18 @@ void qemu_del_timer(QEMUTimer *ts)
             break;
         if (t == ts) {
             *pt = t->next;
+	    t->next = NULL;
             break;
         }
         pt = &t->next;
     }
+}
+
+void qemu_del_timer(QEMUTimer *ts)
+{
+    pthread_mutex_lock(&active_timers_lock[ts->clock->type]);
+    qemu_del_timer_nolock(ts);
+    pthread_mutex_unlock(&active_timers_lock[ts->clock->type]);
 }
 
 void qemu_advance_timer(QEMUTimer *ts, int64_t expire_time)
@@ -826,11 +835,13 @@ void qemu_mod_timer(QEMUTimer *ts, int64
 {
     QEMUTimer **pt, *t;
 
-    qemu_del_timer(ts);
-
-    /* add the timer in the sorted list */
     /* NOTE: this code must be signal safe because
        qemu_timer_expired() can be called from a signal. */
+    pthread_mutex_lock(&active_timers_lock[ts->clock->type]);
+
+    qemu_del_timer_nolock(ts);
+
+    /* add the timer in the sorted list */
     pt = &active_timers[ts->clock->type];
     for(;;) {
         t = *pt;
@@ -843,16 +854,20 @@ void qemu_mod_timer(QEMUTimer *ts, int64
     ts->expire_time = expire_time;
     ts->next = *pt;
     *pt = ts;
+    pthread_mutex_unlock(&active_timers_lock[ts->clock->type]);
 }
 
 int qemu_timer_pending(QEMUTimer *ts)
 {
     QEMUTimer *t;
+    pthread_mutex_lock(&active_timers_lock[ts->clock->type]);
     for(t = active_timers[ts->clock->type]; t != NULL; t = t->next) {
         if (t == ts)
-            return 1;
-    }
-    return 0;
+            break;
+    }
+    pthread_mutex_unlock(&active_timers_lock[ts->clock->type]);
+    return !!t;
+
 }
 
 static inline int qemu_timer_expired(QEMUTimer *timer_head, int64_t current_time)
@@ -865,7 +880,12 @@ static void qemu_run_timers(QEMUTimer **
 static void qemu_run_timers(QEMUTimer **ptimer_head, int64_t current_time)
 {
     QEMUTimer *ts;
+    int clock_type;
     
+    if (*ptimer_head == NULL)
+	return;
+    clock_type = (*ptimer_head)->clock->type;
+    pthread_mutex_lock(&active_timers_lock[clock_type]);
     for(;;) {
         ts = *ptimer_head;
         if (!ts || ts->expire_time > current_time)
@@ -875,8 +895,11 @@ static void qemu_run_timers(QEMUTimer **
         ts->next = NULL;
         
         /* run the callback (the timer list can be modified) */
+	pthread_mutex_unlock(&active_timers_lock[clock_type]);
         ts->cb(ts->opaque);
-    }
+	pthread_mutex_lock(&active_timers_lock[clock_type]);
+    }
+    pthread_mutex_unlock(&active_timers_lock[clock_type]);
 }
 
 int64_t qemu_get_clock(QEMUClock *clock)

[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

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

             reply	other threads:[~2007-08-27 18:58 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-08-27 18:58 Ben Guthro [this message]
     [not found] ` <20070827193242.GH9043@redhat.com>
2007-08-29 19:36   ` [PATCH][QEMU] Make active-timers thread-safe Dave Lively

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=46D31ED2.8070602@virtualiron.com \
    --to=bguthro@virtualiron.com \
    --cc=ggrebus@virtualiron.com \
    --cc=xen-devel@lists.xensource.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.