summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Teigland <teigland@redhat.com>2015-06-17 10:25:25 -0500
committerDavid Teigland <teigland@redhat.com>2015-06-23 17:08:54 -0500
commit2c18f29fc39749bb4e5fef1369fc8b80aa4c8112 (patch)
treeee766040a843462f247b0011a9de84b1cc9540d0
parent43c7851c4fbc7ba3c8853fe598a2fe66d3347d2d (diff)
downloadlvm2-2c18f29fc39749bb4e5fef1369fc8b80aa4c8112.tar.gz
pvmove: add comments about lvmlockd and lvmpolld
-rw-r--r--tools/pvmove.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/pvmove.c b/tools/pvmove.c
index 03ad656b4..8efa6b099 100644
--- a/tools/pvmove.c
+++ b/tools/pvmove.c
@@ -848,13 +848,17 @@ int pvmove(struct cmd_context *cmd, int argc, char **argv)
}
if (lvmlockd_use() && !lvmpolld_use()) {
+ /*
+ * Don't want to spend the time making lvmlockd
+ * work without lvmpolld.
+ */
log_error("Enable lvmpolld when using lvmlockd.");
return ECMD_FAILED;
}
if (lvmlockd_use() && !argc) {
/*
- * TODO: move process_each_vg from polldaemon up to here,
+ * FIXME: move process_each_vg from polldaemon up to here,
* then we can remove this limitation.
*/
log_error("Specify pvmove args when using lvmlockd.");