diff options
author | Amar Tumballi <amar@gluster.com> | 2010-09-14 07:40:11 +0000 |
---|---|---|
committer | Vijay Bellur <vijay@dev.gluster.com> | 2010-09-14 08:16:01 -0700 |
commit | 8e068b0615859829ac1bb2351b78307b2b496cdc (patch) | |
tree | 841bc095caf5ed8f81e3d371ce4366a6664e52e4 /xlators/cluster/dht/src/dht-common.c | |
parent | c55cc2d5362a607692beac96a34add2e79a9ad44 (diff) |
remove 'gen' from iatt/protocol structures
Signed-off-by: Amar Tumballi <amar@gluster.com>
Signed-off-by: Vijay Bellur <vijay@dev.gluster.com>
BUG: 971 (dynamic volume management)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=971
Diffstat (limited to 'xlators/cluster/dht/src/dht-common.c')
-rw-r--r-- | xlators/cluster/dht/src/dht-common.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/xlators/cluster/dht/src/dht-common.c b/xlators/cluster/dht/src/dht-common.c index 24430e6bcb4..6f818ea024d 100644 --- a/xlators/cluster/dht/src/dht-common.c +++ b/xlators/cluster/dht/src/dht-common.c @@ -142,7 +142,6 @@ dht_lookup_dir_cbk (call_frame_t *frame, void *cookie, xlator_t *this, if (prev->this == dht_first_up_subvol (this)) { local->ia_ino = local->stbuf.ia_ino; - local->ia_gen = local->stbuf.ia_gen; } } @@ -173,7 +172,6 @@ unlock: if (local->ia_ino) { local->stbuf.ia_ino = local->ia_ino; - local->stbuf.ia_gen = local->ia_gen; } else { gf_log (this->name, GF_LOG_DEBUG, "could not find hashed subvol for %s", @@ -3367,7 +3365,6 @@ dht_mkdir_selfheal_cbk (call_frame_t *frame, void *cookie, if (op_ret == 0) { dht_layout_set (this, local->inode, layout); local->stbuf.ia_ino = local->ia_ino; - local->stbuf.ia_gen = local->ia_gen; if (local->loc.parent) { local->preparent.ia_ino = local->loc.parent->ino; local->postparent.ia_ino = local->loc.parent->ino; @@ -3425,7 +3422,6 @@ dht_mkdir_cbk (call_frame_t *frame, void *cookie, xlator_t *this, if (prev->this == dht_first_up_subvol (this)) { local->ia_ino = local->stbuf.ia_ino; - local->ia_gen = local->stbuf.ia_gen; } } @@ -3479,7 +3475,6 @@ dht_mkdir_hashed_cbk (call_frame_t *frame, void *cookie, dht_iatt_merge (this, &local->postparent, postparent, prev->this); local->ia_ino = local->stbuf.ia_ino; - local->ia_gen = local->stbuf.ia_gen; local->call_cnt = conf->subvolume_cnt - 1; |