public inbox for cluster-cvs@sourceware.org
help / color / mirror / Atom feed
* rgmanager: master - rgmanager: Fix stop/start race
@ 2009-06-22 16:55 Lon Hohberger
0 siblings, 0 replies; only message in thread
From: Lon Hohberger @ 2009-06-22 16:55 UTC (permalink / raw)
To: cluster-cvs-relay
Gitweb: http://git.fedorahosted.org/git/rgmanager.git?p=rgmanager.git;a=commitdiff;h=10f9c02038d1086287f1322287a65101c98828e9
Commit: 10f9c02038d1086287f1322287a65101c98828e9
Parent: a9ff22b81d8f37d7b6a9d52944dbf5da7c978cd8
Author: Lon Hohberger <lhh@redhat.com>
AuthorDate: Mon Jun 15 14:18:36 2009 -0400
Committer: Lon Hohberger <lhh@redhat.com>
CommitterDate: Mon Jun 22 12:52:11 2009 -0400
rgmanager: Fix stop/start race
If a thread exits right as rgmanager gets a request
to start a new thread, there's a chance that the
the starting thread will incorrectly have a reference
to the old thread and not retry when it should.
Signed-off-by: Lon Hohberger <lhh@redhat.com>
---
rgmanager/src/daemons/rg_thread.c | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/rgmanager/src/daemons/rg_thread.c b/rgmanager/src/daemons/rg_thread.c
index 1aa64b3..5d22968 100644
--- a/rgmanager/src/daemons/rg_thread.c
+++ b/rgmanager/src/daemons/rg_thread.c
@@ -584,6 +584,8 @@ spawn_if_needed(const char *resgroupname)
int ret;
resthread_t *resgroup = NULL;
+retry:
+ resgroup = NULL;
pthread_mutex_lock(&reslist_mutex);
while (resgroup == NULL) {
resgroup = find_resthread_byname(resgroupname);
@@ -601,8 +603,8 @@ spawn_if_needed(const char *resgroupname)
ret = (resgroup->rt_status == RG_STATE_STOPPING);
pthread_mutex_unlock(&reslist_mutex);
- if (wait_initialize(resgroupname) < 0) {
- return -1;
+ if (!ret && wait_initialize(resgroupname) < 0) {
+ goto retry;
}
return ret;
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-06-22 16:55 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-06-22 16:55 rgmanager: master - rgmanager: Fix stop/start race Lon Hohberger
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).