1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

Avoid duplicate definitions.

This commit is contained in:
Alasdair Kergon 2010-03-23 14:35:08 +00:00
parent 7b45e46aa3
commit 8b373275a2

View File

@ -112,9 +112,13 @@ struct cluster_ops *init_corosync_cluster(void);
#ifdef USE_SINGLENODE
# define SINGLENODE_CSID_LEN (sizeof(int))
# define MAX_CLUSTER_MEMBER_NAME_LEN 64
# ifndef MAX_CLUSTER_MEMBER_NAME_LEN
# define MAX_CLUSTER_MEMBER_NAME_LEN 64
# endif
# define SINGLENODE_MAX_CLUSTER_MESSAGE 65535
# define MAX_CSID_LEN sizeof(int)
# ifndef MAX_CSID_LEN
# define MAX_CSID_LEN sizeof(int)
# endif
struct cluster_ops *init_singlenode_cluster(void);
#endif