diff options
| author | Anand Avati <avati@redhat.com> | 2013-12-12 15:43:28 -0800 | 
|---|---|---|
| committer | Vijay Bellur <vbellur@redhat.com> | 2013-12-13 02:19:18 -0800 | 
| commit | ea89a25b0b4e8796c421c32fb6dbc4661081f6e1 (patch) | |
| tree | a2af5f7e8c0c4b0dbc90dbe2b2f2c7784979be41 | |
| parent | 8bdc329e892f35ca19dfd07b542aa81afd855fce (diff) | |
dht: handle ESTALE/ENOENT in dht_access
Had misssed out dht_access in the previous round of cleanup
Change-Id: Ib255b9ad13ca62a8bc2eea225c46632aff8e820f
BUG: 1032894
Signed-off-by: Anand Avati <avati@redhat.com>
Reviewed-on: http://review.gluster.org/6496
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Amar Tumballi <amarts@gmail.com>
| -rw-r--r-- | xlators/cluster/dht/src/dht-inode-read.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/cluster/dht/src/dht-inode-read.c b/xlators/cluster/dht/src/dht-inode-read.c index 12a5515051c..e8a9a7196bf 100644 --- a/xlators/cluster/dht/src/dht-inode-read.c +++ b/xlators/cluster/dht/src/dht-inode-read.c @@ -531,7 +531,7 @@ dht_access_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                              &local->loc, local->rebalance.flags, NULL);                  return 0;          } -        if ((op_ret == -1) && (op_errno == ENOENT)) { +        if ((op_ret == -1) && dht_inode_missing(op_errno)) {                  /* File would be migrated to other node */                  local->op_errno = op_errno;                  local->rebalance.target_op_fn = dht_access2;  | 
