diff options
-rw-r--r-- | xlators/cluster/dht/src/dht-common.h | 4 | ||||
-rw-r--r-- | xlators/cluster/dht/src/dht-inode-read.c | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/xlators/cluster/dht/src/dht-common.h b/xlators/cluster/dht/src/dht-common.h index b82d3c4d267..9a4734e1ee2 100644 --- a/xlators/cluster/dht/src/dht-common.h +++ b/xlators/cluster/dht/src/dht-common.h @@ -796,9 +796,7 @@ typedef struct dht_fd_ctx { } \ } while (0) -#define dht_inode_missing(op_errno) (op_errno == ENOENT || op_errno == ESTALE \ - || op_errno == EIO) \ -/*Bad fix. Please revert the commit after fixing the bug 1329505*/ +#define dht_inode_missing(op_errno) (op_errno == ENOENT || op_errno == ESTALE) #define check_is_dir(i,s,x) (IA_ISDIR(s->ia_type)) diff --git a/xlators/cluster/dht/src/dht-inode-read.c b/xlators/cluster/dht/src/dht-inode-read.c index d1895eb2abb..7e4aef4ccc6 100644 --- a/xlators/cluster/dht/src/dht-inode-read.c +++ b/xlators/cluster/dht/src/dht-inode-read.c @@ -78,7 +78,7 @@ dht_open2 (xlator_t *this, xlator_t *subvol, call_frame_t *frame, int ret) goto out; local = frame->local; - op_errno = ENOENT; + op_errno = local->op_errno; if (we_are_not_migrating (ret)) { /* This DHT layer is not migrating the file */ |