cluster: RHEL6 - rgmanager: Fix bad passing of SFL_FAILURE up

Lon Hohberger lon at fedoraproject.org
Fri Jul 8 16:56:32 UTC 2011


Gitweb:        http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=ef342f0e8ff753d8ecb8e84f2d36807008848594
Commit:        ef342f0e8ff753d8ecb8e84f2d36807008848594
Parent:        2cf74b34240e5830c49ecd1da7ce63f92026a2e4
Author:        Lon Hohberger <lhh at redhat.com>
AuthorDate:    Thu Jun 23 10:36:09 2011 -0400
Committer:     Lon Hohberger <lhh at redhat.com>
CommitterDate: Fri Jul 8 12:55:42 2011 -0400

rgmanager: Fix bad passing of SFL_FAILURE up

We were handling failures at the 'highest' independent subtree
level instead of lowest; this patch fixes that.

Resolves: rhbz#711521

Signed-off-by: Lon Hohberger <lhh at redhat.com>
Reviewed-by: Bob Peterson <rpeterso at redhat.com>
---
 rgmanager/src/daemons/restree.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/rgmanager/src/daemons/restree.c b/rgmanager/src/daemons/restree.c
index 3892ab9..a13f907 100644
--- a/rgmanager/src/daemons/restree.c
+++ b/rgmanager/src/daemons/restree.c
@@ -1548,7 +1548,7 @@ _res_op_internal(resource_node_t __attribute__ ((unused)) **tree,
 		  and all our children as failed and return a flag stating
 		  that this section is recoverable apart from siblings in
 		  the resource tree. */
-		if (op == RS_STATUS && (rv & (SFL_FAILURE|SFL_RECOVERABLE)) &&
+		if (op == RS_STATUS && (rv & SFL_FAILURE) &&
 		    (node->rn_flags & RF_INDEPENDENT)) {
 
 			rte = restart_threshold_exceeded(node->rn_restart_counter);


More information about the cluster-commits mailing list