File bsc#1181744-0003-Refactor-fencing-new-function-stonith_op_state_pendi.patch of Package pacemaker.19271
From 234ac5db32f85edd73613684970f8ccfc7265830 Mon Sep 17 00:00:00 2001
From: "Gao,Yan" <ygao@suse.com>
Date: Fri, 19 Feb 2021 11:09:22 +0100
Subject: [PATCH 3/4] Refactor: fencing: new function
stonith_op_state_pending() for checking if a fencing operation is in pending
state
---
include/crm/fencing/internal.h | 14 ++++++++++++++
1 file changed, 14 insertions(+)
Index: pacemaker-2.0.1+20190417.13d370ca9/include/crm/fencing/internal.h
===================================================================
--- pacemaker-2.0.1+20190417.13d370ca9.orig/include/crm/fencing/internal.h
+++ pacemaker-2.0.1+20190417.13d370ca9/include/crm/fencing/internal.h
@@ -157,4 +157,18 @@ int stonith__rhcs_validate(stonith_t *st
const char *agent, GHashTable *params, const char *host_arg,
int timeout, char **output, char **error_output);
+/*!
+ * \internal
+ * \brief Is a fencing operation in pending state?
+ *
+ * \param[in] state State as enum op_state value
+ *
+ * \return A boolean
+ */
+static inline bool
+stonith__op_state_pending(enum op_state state)
+{
+ return state != st_failed && state != st_done;
+}
+
#endif