commit 3e12eebb6cb2636054f42198222e52a28da40056 Author: Gao,Yan 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* */