public inbox for cluster-cvs@sourceware.org
help / color / mirror / Atom feed
* cluster: STABLE3 - dlm_tool: ls failure should exit with failure
@ 2009-03-27 17:56 David Teigland
  0 siblings, 0 replies; only message in thread
From: David Teigland @ 2009-03-27 17:56 UTC (permalink / raw)
  To: cluster-cvs-relay

Gitweb:        http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=a29791bb28bdf1528a42be9b569378a04f162ad7
Commit:        a29791bb28bdf1528a42be9b569378a04f162ad7
Parent:        c1e139fb328408891d054e577b33d724230dde43
Author:        David Teigland <teigland@redhat.com>
AuthorDate:    Fri Mar 27 11:35:26 2009 -0500
Committer:     David Teigland <teigland@redhat.com>
CommitterDate: Fri Mar 27 11:35:26 2009 -0500

dlm_tool: ls failure should exit with failure

exit code of list command can be used to check if dlm_controld is running

Signed-off-by: David Teigland <teigland@redhat.com>
---
 dlm/tool/main.c |    9 ++++-----
 1 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/dlm/tool/main.c b/dlm/tool/main.c
index c247044..631fb56 100644
--- a/dlm/tool/main.c
+++ b/dlm/tool/main.c
@@ -1182,16 +1182,15 @@ static void do_list(char *name)
 	memset(lss, 0, sizeof(lss));
 
 	if (name) {
-		rv = dlmc_lockspace_info(name, lss);
-		if (rv < 0)
-			return;
 		ls_count = 1;
+		rv = dlmc_lockspace_info(name, lss);
 	} else {
 		rv = dlmc_lockspaces(MAX_LS, &ls_count, lss);
-		if (rv < 0)
-			return;
 	}
 
+	if (rv < 0)
+		exit(EXIT_FAILURE); /* dlm_controld probably not running */
+
 	if (ls_count)
 		printf("dlm lockspaces\n");
 


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-03-27 17:56 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-03-27 17:56 cluster: STABLE3 - dlm_tool: ls failure should exit with failure David Teigland

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).