527a76dc73
types for ABI compliance - stonith: Default to 20s timeout for start and monitor operations of stonith resources which is same as "default-action-timeout" (bnc#733337) - Tools: ptest - Fix "-X, --xml-text" option to handle a XML string as its argument (bnc#736212) - cib: Fix segfault caused by destroying an already freed hash table (cl#5023) - stonith: Expose IDs of stonith resources to stonith agents through "$CRM_meta_st_device_id" environment variable (bnc#728579) OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/pacemaker?expand=0&rev=31
49 lines
1.3 KiB
Diff
49 lines
1.3 KiB
Diff
commit 7f95c09d53cae9c5a6e2348c2d4ad7fd5e59affe
|
|
Author: Gao,Yan <ygao@suse.com>
|
|
Date: Tue Dec 13 14:15:01 2011 +0800
|
|
|
|
Meidum: Core: Move several new fields since v1.1.6 to the end of the data types for ABI compliance
|
|
|
|
diff --git a/include/crm/pengine/status.h b/include/crm/pengine/status.h
|
|
index 1110248..8b00e09 100644
|
|
--- a/include/crm/pengine/status.h
|
|
+++ b/include/crm/pengine/status.h
|
|
@@ -90,7 +90,6 @@ typedef struct pe_working_set_s {
|
|
GHashTable *config_hash;
|
|
GHashTable *domains;
|
|
GHashTable *tickets;
|
|
- GHashTable *template_rsc_sets;
|
|
|
|
GListPtr nodes;
|
|
GListPtr resources;
|
|
@@ -113,6 +112,8 @@ typedef struct pe_working_set_s {
|
|
/* final output */
|
|
xmlNode *graph;
|
|
|
|
+ GHashTable *template_rsc_sets;
|
|
+
|
|
} pe_working_set_t;
|
|
|
|
struct node_shared_s {
|
|
diff --git a/include/crm/transition.h b/include/crm/transition.h
|
|
index 22f095f..02eff03 100644
|
|
--- a/include/crm/transition.h
|
|
+++ b/include/crm/transition.h
|
|
@@ -96,7 +96,6 @@ typedef struct crm_graph_s {
|
|
int num_synapses;
|
|
|
|
int batch_limit;
|
|
- int migration_limit;
|
|
int network_delay;
|
|
int stonith_timeout;
|
|
int transition_timeout;
|
|
@@ -108,6 +107,8 @@ typedef struct crm_graph_s {
|
|
int incomplete;
|
|
|
|
GListPtr synapses; /* synpase_t* */
|
|
+
|
|
+ int migration_limit;
|
|
GHashTable *migrating;
|
|
|
|
} crm_graph_t;
|