Date: Thu, 5 Aug 2010 19:01:57 +0000 (UTC) From: Pawel Jakub Dawidek <pjd@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r210881 - head/sbin/hastd Message-ID: <201008051901.o75J1vLT077385@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pjd Date: Thu Aug 5 19:01:57 2010 New Revision: 210881 URL: http://svn.freebsd.org/changeset/base/210881 Log: Allow to use 'none' keywork as remote address in case second cluster node is not setup yet. MFC after: 1 month Modified: head/sbin/hastd/primary.c Modified: head/sbin/hastd/primary.c ============================================================================== --- head/sbin/hastd/primary.c Thu Aug 5 18:58:00 2010 (r210880) +++ head/sbin/hastd/primary.c Thu Aug 5 19:01:57 2010 (r210881) @@ -298,6 +298,13 @@ hast_activemap_flush(struct hast_resourc return (0); } +static bool +real_remote(const struct hast_resource *res) +{ + + return (strcmp(res->hr_remoteaddr, "none") != 0); +} + static void init_environment(struct hast_resource *res __unused) { @@ -479,6 +486,7 @@ init_remote(struct hast_resource *res, s size_t size; assert((inp == NULL && outp == NULL) || (inp != NULL && outp != NULL)); + assert(real_remote(res)); in = out = NULL; @@ -765,7 +773,7 @@ hastd_primary(struct hast_resource *res) signal(SIGCHLD, SIG_DFL); init_local(res); - if (init_remote(res, NULL, NULL)) + if (real_remote(res) && init_remote(res, NULL, NULL)) sync_start(); init_ggate(res); init_environment(res); @@ -1760,7 +1768,7 @@ guard_thread(void *arg) pjdlog_debug(2, "remote_guard: Connection to %s is ok.", res->hr_remoteaddr); - } else { + } else if (real_remote(res)) { assert(res->hr_remotein == NULL); assert(res->hr_remoteout == NULL); /* @@ -1795,6 +1803,8 @@ guard_thread(void *arg) res->hr_remoteaddr); timeout = RECONNECT_SLEEP; } + } else { + rw_unlock(&hio_remote_lock[ii]); } } (void)cv_timedwait(&hio_guard_cond, &hio_guard_lock, timeout);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201008051901.o75J1vLT077385>