diff options
author | Ashish Pandey <aspandey@redhat.com> | 2015-04-21 17:22:40 +0530 |
---|---|---|
committer | Pranith Kumar Karampuri <pkarampu@redhat.com> | 2015-05-06 14:02:53 -0700 |
commit | 50063ea7f4182ed30b86f38a716d03464e07b8c6 (patch) | |
tree | 8d6c8bdd3112781062206a5a0513df4a0fff1f18 /xlators/cluster/ec/src/ec-data.h | |
parent | b054985d2f7db9ab72759c988db11feb855a1b5e (diff) |
cluster/ec: add separate versions for data/entry, metadata
Adding 64 bits in "version" key of extended attributes. First 64 bits (Left)
represents Data version. Last 64 bits (right) represents Meta Data version.
Note: 3.7 and 3.6 version ec can't co-exist with this change because xattrop in
3.6 will fail with ERANGE as the buffer passed to it will be '8' bytes where as
the value will be 16 bytes in 3.7. Where as 3.7 version clients can work with
old version files. For upgrades we need to tell users to complete heals and
then upgrade
BUG: 1215265
Change-Id: Ib85114680cb7e75b8371c984d9f7b6401c1ffb93
Signed-off-by: Ashish Pandey <aspandey@redhat.com>
Reviewed-on: http://review.gluster.org/10312
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Tested-by: NetBSD Build System
Reviewed-by: Pranith Kumar Karampuri <pkarampu@redhat.com>
Diffstat (limited to 'xlators/cluster/ec/src/ec-data.h')
-rw-r--r-- | xlators/cluster/ec/src/ec-data.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xlators/cluster/ec/src/ec-data.h b/xlators/cluster/ec/src/ec-data.h index 80936aeaada..85037f62bb4 100644 --- a/xlators/cluster/ec/src/ec-data.h +++ b/xlators/cluster/ec/src/ec-data.h @@ -143,8 +143,8 @@ struct _ec_lock int32_t have_size; uint64_t size; uint64_t size_delta; - uint64_t version; - uint64_t version_delta; + uint64_t version[2]; + uint64_t version_delta[2]; ec_fop_data_t *owner; loc_t loc; union @@ -249,7 +249,7 @@ struct _ec_cbk_data int32_t int32; uintptr_t uintptr[3]; uint64_t size; - uint64_t version; + uint64_t version[2]; inode_t * inode; fd_t * fd; struct statvfs statvfs; @@ -282,7 +282,7 @@ struct _ec_heal uintptr_t fixed; uint64_t offset; uint64_t size; - uint64_t version; + uint64_t version[2]; uint64_t raw_size; }; |