All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Do not fork daemon when dmeventd cannot be found.
@ 2009-06-05 13:38 Milan Broz
  2009-06-05 17:41 ` Petr Rockai
  0 siblings, 1 reply; 2+ messages in thread
From: Milan Broz @ 2009-06-05 13:38 UTC (permalink / raw)
  To: lvm-devel

Do not fork daemon when dmeventd cannot be found.

Otherwise it prints many errors about leaked pools.

(More elegant is properly release context, but this 
workaround is sufficient IMHO.)

Signed-off-by: Milan Broz <mbroz@redhat.com>
---
 daemons/dmeventd/libdevmapper-event.c |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/daemons/dmeventd/libdevmapper-event.c b/daemons/dmeventd/libdevmapper-event.c
index 2650cf0..dae76d3 100644
--- a/daemons/dmeventd/libdevmapper-event.c
+++ b/daemons/dmeventd/libdevmapper-event.c
@@ -425,6 +425,12 @@ static int _start_daemon(struct dm_event_fifos *fifos)
 
       start_server:
 	/* server is not running */
+
+	if (stat(DMEVENTD_PATH, &statbuf)) {
+		log_error("Unable to find dmeventd.");
+		return_0;
+	}
+
 	pid = fork();
 
 	if (pid < 0)




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

end of thread, other threads:[~2009-06-05 17:41 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-05 13:38 [PATCH] Do not fork daemon when dmeventd cannot be found Milan Broz
2009-06-05 17:41 ` Petr Rockai

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.