rolling-upgrade - PE: Bug cl#5059 - Use the correct action's status when calculating required actions for interleaved clones - Upstream version cs: 61a079313275f3e9d0e85671f62c721d32ce3563 - corosync: Determine node state for plugin based cluster types - tools: crm_node - Test stack membership only when displaying partition members - Overhaul the way peers are determined to be sufficiently active - PE: Observe the promotion score of probed resources - crmd: Detect when peers have an incorrectly set process list - corosync: Detect when the first corosync has not yet formed and handle it gracefully - Corosync: Move deprecated corosync variants to their own file - Upstream version cs: 4c8b599e6d79499f28f8178988d65fd33e0d9b24 - Update to version 1.1.7 - crmd: cl#5057 - Restart sub-systems correctly (bnc#755671) - corosync: Fix compilation when libqb is not available - pengine: cl#5058 - Fixes issue with on-fail option on operation being ignored. - tools: rhbz#754216 - Make crm_mon --as-xml option default to --one-shot mode - cts: cl#5047 - Suppress cts badnews output related to fencing when fencing is expected. - crmd: cl#5053 - Fixes fail-count not being updated properly. - crmd: cl#5051 - Fixes file leak in pe ipc connection initialization. - Tools: crm_simulate - Correctly detect status sections with duplicate node_state entries OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/pacemaker?expand=0&rev=38
44 lines
1.3 KiB
Diff
44 lines
1.3 KiB
Diff
commit 3e12eebb6cb2636054f42198222e52a28da40056
|
|
Author: Gao,Yan <ygao@suse.com>
|
|
Date: Fri May 18 10:48:49 2012 +0800
|
|
|
|
High: Core: Revert to the original process flags for the support of rolling-upgrade
|
|
|
|
diff --git a/include/crm/ais.h b/include/crm/ais.h
|
|
index cf00fff..f2615d6 100644
|
|
--- a/include/crm/ais.h
|
|
+++ b/include/crm/ais.h
|
|
@@ -107,22 +107,22 @@ enum crm_proc_flag {
|
|
crm_proc_none = 0x00000001,
|
|
|
|
/* 3 messaging types */
|
|
- crm_proc_heartbeat = 0x00000100,
|
|
- crm_proc_plugin = 0x00000200,
|
|
- crm_proc_cpg = 0x00000400,
|
|
+ crm_proc_heartbeat = 0x01000000,
|
|
+ crm_proc_plugin = 0x00000002,
|
|
+ crm_proc_cpg = 0x04000000,
|
|
|
|
- crm_proc_lrmd = 0x00001000,
|
|
- crm_proc_cib = 0x00002000,
|
|
- crm_proc_crmd = 0x00004000,
|
|
- crm_proc_attrd = 0x00008000,
|
|
+ crm_proc_lrmd = 0x00000010,
|
|
+ crm_proc_cib = 0x00000100,
|
|
+ crm_proc_crmd = 0x00000200,
|
|
+ crm_proc_attrd = 0x00001000,
|
|
|
|
crm_proc_pe = 0x00010000,
|
|
crm_proc_te = 0x00020000,
|
|
|
|
- crm_proc_stonithd = 0x00100000,
|
|
- crm_proc_stonith_ng= 0x00200000,
|
|
+ crm_proc_stonithd = 0x00002000,
|
|
+ crm_proc_stonith_ng= 0x00100000,
|
|
|
|
- crm_proc_mgmtd = 0x01000000,
|
|
+ crm_proc_mgmtd = 0x00040000,
|
|
};
|
|
/* *INDENT-ON* */
|
|
|