Cluster Project branch, master, updated. cluster-2.99.00-36-gbe636f4

teigland@sourceware.org teigland@sourceware.org
Mon May 12 21:09:00 GMT 2008


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Cluster Project".

http://sources.redhat.com/git/gitweb.cgi?p=cluster.git;a=commitdiff;h=be636f43283d12906c75b1ff4783d582040c0b25

The branch, master has been updated
       via  be636f43283d12906c75b1ff4783d582040c0b25 (commit)
      from  44ee0c0cb17e5e319250086d18c6feef98f875ec (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit be636f43283d12906c75b1ff4783d582040c0b25
Author: David Teigland <teigland@redhat.com>
Date:   Mon May 12 16:08:13 2008 -0500

    dlm_tool: refine list output
    
    Signed-off-by: David Teigland <teigland@redhat.com>

-----------------------------------------------------------------------

Summary of changes:
 dlm/tool/main.c |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dlm/tool/main.c b/dlm/tool/main.c
index d8cf726..211024f 100644
--- a/dlm/tool/main.c
+++ b/dlm/tool/main.c
@@ -490,10 +490,10 @@ char *condition_str(int cond)
 static void show_ls(struct dlmc_lockspace *ls)
 {
 	printf("dlm lockspace \"%s\"\n", ls->name);
-	printf("global_id 0x%x flags 0x%x %s\n", ls->global_id, ls->flags,
+	printf("id 0x%x flags 0x%x %s\n", ls->global_id, ls->flags,
 		dlmc_lf_str(ls->flags));
 
-	printf("prev seq %u-%u counts member %d joined %d remove %d failed %d\n",
+	printf("seq %u-%u counts member %d joined %d remove %d failed %d\n",
 	        ls->cg_prev.combined_seq, ls->cg_prev.seq,
 		ls->cg_prev.member_count, ls->cg_prev.joined_count,
 		ls->cg_prev.remove_count, ls->cg_prev.failed_count);
@@ -501,12 +501,12 @@ static void show_ls(struct dlmc_lockspace *ls)
 	if (!ls->cg_next.seq)
 		return;
 
-	printf("next seq %u-%u counts member %d joined %d remove %d failed %d\n",
+	printf("new seq %u-%u counts member %d joined %d remove %d failed %d\n",
 	        ls->cg_next.combined_seq, ls->cg_next.seq,
 		ls->cg_next.member_count, ls->cg_next.joined_count,
 		ls->cg_next.remove_count, ls->cg_next.failed_count);
 
-	printf("next wait_messages %d wait_condition %d %s\n",
+	printf("new wait_messages %d wait_condition %d %s\n",
 		ls->cg_next.wait_messages, ls->cg_next.wait_condition,
 		condition_str(ls->cg_next.wait_condition));
 }
@@ -586,7 +586,7 @@ static void do_list(char *name)
 
 		qsort(nodes, node_count, sizeof(struct dlmc_node),node_compare);
 
-		printf("prev members ");
+		printf("members ");
 		show_nodeids(node_count, nodes);
 
 		if (!ls->cg_next.seq)
@@ -602,7 +602,7 @@ static void do_list(char *name)
 
 		qsort(nodes, node_count, sizeof(struct dlmc_node),node_compare);
 
-		printf("next members ");
+		printf("new members ");
 		show_nodeids(node_count, nodes);
 
  show_all:


hooks/post-receive
--
Cluster Project



More information about the Cluster-cvs mailing list