Blame SOURCES/059-soname-compat.patch

60de42
From d8c70161a608500de9e692d74a6df54dd6495059 Mon Sep 17 00:00:00 2001
60de42
From: Ken Gaillot <kgaillot@redhat.com>
60de42
Date: Mon, 8 May 2017 13:00:10 -0500
60de42
Subject: [PATCH] Refactor: libpe_status: ensure new fields are at end of
60de42
 struct
60de42
60de42
struct is internal, but better safe than sorry
60de42
---
60de42
 include/crm/pengine/status.h | 5 +++--
60de42
 1 file changed, 3 insertions(+), 2 deletions(-)
60de42
60de42
diff --git a/include/crm/pengine/status.h b/include/crm/pengine/status.h
60de42
index 50940d4..e0297f9 100644
60de42
--- a/include/crm/pengine/status.h
60de42
+++ b/include/crm/pengine/status.h
60de42
@@ -132,7 +132,8 @@ typedef struct pe_working_set_s {
60de42
 struct node_shared_s {
60de42
     const char *id;
60de42
     const char *uname;
60de42
-/* Make all these flags into a bitfield one day */
60de42
+
60de42
+    /* @TODO convert these flags (and the ones at the end) into a bitfield */
60de42
     gboolean online;
60de42
     gboolean standby;
60de42
     gboolean standby_onfail;
60de42
@@ -142,7 +143,6 @@ struct node_shared_s {
60de42
     gboolean shutdown;
60de42
     gboolean expected_up;
60de42
     gboolean is_dc;
60de42
-    gboolean unpacked;
60de42
 
60de42
     int num_resources;
60de42
     GListPtr running_rsc;       /* resource_t* */
60de42
@@ -163,6 +163,7 @@ struct node_shared_s {
60de42
     gboolean remote_requires_reset;
60de42
     gboolean remote_was_fenced;
60de42
     gboolean remote_maintenance; /* what the remote-rsc is thinking */
60de42
+    gboolean unpacked;
60de42
 };
60de42
 
60de42
 struct node_s {
60de42
-- 
60de42
1.8.3.1
60de42