All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC] lvmetad_is_disabled: check config before connecting to socket
@ 2017-10-13  9:08 Thomas Lamprecht
  2017-10-13 10:06 ` Zdenek Kabelac
  2017-10-13 15:32 ` David Teigland
  0 siblings, 2 replies; 7+ messages in thread
From: Thomas Lamprecht @ 2017-10-13  9:08 UTC (permalink / raw)
  To: lvm-devel

Else, lvmetad always gets started due to systemds socket auto
activation when executing, for example:
 # pvscan --cache
as pvscan uses lvmetad_is_disabled to check if metad is disabled
before connecting. This is OK for systems where systemd is not used
but for others, the systemd 'auto activation on socket connect'
feature causes the start of lvm2-lvmetad.service which is not desired
when disabled in the config.

ref: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=826570
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
---

An alternative approach would be to just guard the lvmetad_is_disabled
call in tools/pvscan.c : 412 with the config check - and thus address
the FIXME mentioned there.
Would be maybe the less intrusive version?

RFC.

 lib/cache/lvmetad.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/lib/cache/lvmetad.c b/lib/cache/lvmetad.c
index 1ba844fc8..94fba8979 100644
--- a/lib/cache/lvmetad.c
+++ b/lib/cache/lvmetad.c
@@ -2846,6 +2846,12 @@ int lvmetad_is_disabled(struct cmd_context *cmd, const char **reason)
 	const char *reply_reason;
 	int ret = 0;
 
+	if (!find_config_tree_bool(cmd, global_use_lvmetad_CFG, NULL)) {
+		*reason = "the disable flag was set directly";
+		ret = 1;
+		goto out;
+	}
+
 	reply = daemon_send_simple(_lvmetad, "get_global_info",
 				   "token = %s", "skip",
 				   "pid = " FMTd64, (int64_t)getpid(),
-- 
2.11.0




^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2017-10-13 15:39 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-13  9:08 [RFC] lvmetad_is_disabled: check config before connecting to socket Thomas Lamprecht
2017-10-13 10:06 ` Zdenek Kabelac
2017-10-13 11:23   ` Thomas Lamprecht
2017-10-13 12:04     ` Zdenek Kabelac
2017-10-13 13:25       ` Peter Rajnoha
2017-10-13 15:39   ` David Teigland
2017-10-13 15:32 ` David Teigland

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.