diff options
author | Vikas Gorur <vikas@gluster.com> | 2009-10-13 06:42:13 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2009-10-13 06:23:03 -0700 |
commit | 7d6e73d4421265a304fd22964649e555a2db8097 (patch) | |
tree | 34010785707512f3cdd6d57d33d1baf77a10682b /xlators/protocol/server/src | |
parent | f085beebd03b2c8be2fa57039ad3cbcb6eaa66d3 (diff) |
posix/client/server: Send postparent in lookup even if lookup fails on the entry itself.
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 137 (Parent directory mtime not reset after a create in self-heal)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=137
Diffstat (limited to 'xlators/protocol/server/src')
-rw-r--r-- | xlators/protocol/server/src/server-protocol.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/xlators/protocol/server/src/server-protocol.c b/xlators/protocol/server/src/server-protocol.c index a6017d2366f..3568a723281 100644 --- a/xlators/protocol/server/src/server-protocol.c +++ b/xlators/protocol/server/src/server-protocol.c @@ -2190,6 +2190,9 @@ server_lookup_cbk (call_frame_t *frame, void *cookie, xlator_t *this, gf_errno = gf_errno_to_error (op_errno); hdr->rsp.op_errno = hton32 (gf_errno); + if (postparent) + gf_stat_from_stat (&rsp->postparent, postparent); + if (op_ret == 0) { root_inode = BOUND_XL(frame)->itable->root; if (inode == root_inode) { @@ -2200,7 +2203,6 @@ server_lookup_cbk (call_frame_t *frame, void *cookie, xlator_t *this, } gf_stat_from_stat (&rsp->stat, stbuf); - gf_stat_from_stat (&rsp->postparent, postparent); if (inode->ino == 0) { inode_link (inode, state->loc.parent, |