summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMilan Broz <mbroz@redhat.com>2010-06-21 10:45:15 +0000
committerMilan Broz <mbroz@redhat.com>2010-06-21 10:45:15 +0000
commitaec39dcc34b5d6c7b94d084e17957031f512e594 (patch)
treec88cb864bb579fd4f7c88359b1e767a05a59b81e
parent566515c095121d8411dd0686d52e70d644f39299 (diff)
downloadlvm2-aec39dcc34b5d6c7b94d084e17957031f512e594.tar.gz
lvm2-aec39dcc34b5d6c7b94d084e17957031f512e594.tar.xz
lvm2-aec39dcc34b5d6c7b94d084e17957031f512e594.zip
Let running clvmd process time to reexec.
Because execve stops the command loop, we never receive response (only socket close) for clvmd -S, so waiting for response here makes no sense. But if the calling process (clvmd -S) exits too early, connection is closed from client side, clvmd takes this as an error and never run restart code. Ugly hack(TM).
-rw-r--r--WHATS_NEW1
-rw-r--r--daemons/clvmd/refresh_clvmd.c17
2 files changed, 16 insertions, 2 deletions
diff --git a/WHATS_NEW b/WHATS_NEW
index 716e8b82..0e96f606 100644
--- a/WHATS_NEW
+++ b/WHATS_NEW
@@ -1,5 +1,6 @@
Version 2.02.68 -
===============================
+ Add workaround for clvmd -S (socket closed too early and server drops the command).
Use early udev synchronisation and update of dev nodes for clustered mirrors.
Unneeded kdev_t.h reference causing harm for cmirrord on some archs.
Add man pages for lvmconf and unsupported lvmsadc and lvmsar tools.
diff --git a/daemons/clvmd/refresh_clvmd.c b/daemons/clvmd/refresh_clvmd.c
index 24d29fbe..c1c3aa6f 100644
--- a/daemons/clvmd/refresh_clvmd.c
+++ b/daemons/clvmd/refresh_clvmd.c
@@ -327,8 +327,21 @@ int refresh_clvmd(int all_nodes)
int restart_clvmd(int all_nodes)
{
- int dummy;
- return _cluster_request(CLVMD_CMD_RESTART, all_nodes?"*":".", NULL, 0, NULL, &dummy, 1);
+ int dummy, status;
+
+ status = _cluster_request(CLVMD_CMD_RESTART, all_nodes?"*":".", NULL, 0, NULL, &dummy, 1);
+
+ /*
+ * FIXME: we cannot receive response, clvmd re-exec before it.
+ * but also should not close socket too early (the whole rq is dropped then).
+ * FIXME: This should be handled this way:
+ * - client waits for RESTART ack (and socket close)
+ * - server restarts
+ * - client checks that server is ready again (VERSION command?)
+ */
+ usleep(500000);
+
+ return status;
}
int debug_clvmd(int level, int clusterwide)