diff options
author | Amar Tumballi <amar@gluster.com> | 2011-06-21 04:56:41 +0000 |
---|---|---|
committer | Anand Avati <avati@gluster.com> | 2011-06-23 21:30:53 -0700 |
commit | c9854677fcd5a0a68e885cc18b6d9d6d92218f23 (patch) | |
tree | 3f54e891e90f05f9e5f7758da355522adfadaf65 /rpc | |
parent | 0d87bfca5c9a95977215599d5800e751ec8f2205 (diff) |
gluster volume create: option for stripe + replicate volume
So RAID01 like option is a possibility
Signed-off-by: Amar Tumballi <amar@gluster.com>
Signed-off-by: Anand Avati <avati@gluster.com>
BUG: 3040 (need a way to create volumes with 'stripe+replicate' setup..)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=3040
Diffstat (limited to 'rpc')
-rw-r--r-- | rpc/xdr/src/cli1-xdr.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rpc/xdr/src/cli1-xdr.h b/rpc/xdr/src/cli1-xdr.h index 80a2b4633..01b4e461c 100644 --- a/rpc/xdr/src/cli1-xdr.h +++ b/rpc/xdr/src/cli1-xdr.h @@ -37,6 +37,7 @@ enum gf1_cluster_type { GF_CLUSTER_TYPE_NONE = 0, GF_CLUSTER_TYPE_STRIPE = 0 + 1, GF_CLUSTER_TYPE_REPLICATE = 0 + 2, + GF_CLUSTER_TYPE_STRIPE_REPLICATE = 0 + 3, }; typedef enum gf1_cluster_type gf1_cluster_type; |