e7a346
From 5d649e42f6566f6f2f3425298cfee48d170ab4ea Mon Sep 17 00:00:00 2001
e7a346
From: N Balachandran <nbalacha@redhat.com>
e7a346
Date: Wed, 16 May 2018 18:15:02 +0530
e7a346
Subject: [PATCH 282/282] cluster/dht: Remove EIO from dht_inode_missing
e7a346
e7a346
Removed EIO from the list of errnos that triggered
e7a346
a migrate check task.
e7a346
e7a346
upstream patch: https://review.gluster.org/#/c/20028/
e7a346
e7a346
> Change-Id: I7f89c7a16056421588f1af2377cebe6affddcb47
e7a346
> fixes: bz#1578823
e7a346
> Signed-off-by: N Balachandran <nbalacha@redhat.com>
e7a346
e7a346
Change-Id: I1962f0db916af71d2903814dc01f0c0809e57ce7
e7a346
BUG: 1580344
e7a346
Signed-off-by: N Balachandran <nbalacha@redhat.com>
e7a346
Reviewed-on: https://code.engineering.redhat.com/gerrit/139188
e7a346
Tested-by: Sunil Kumar Heggodu Gopala Acharya <sheggodu@redhat.com>
e7a346
Tested-by: RHGS Build Bot <nigelb@redhat.com>
e7a346
Reviewed-by: Pranith Kumar Karampuri <pkarampu@redhat.com>
e7a346
---
e7a346
 xlators/cluster/dht/src/dht-common.h     | 4 +---
e7a346
 xlators/cluster/dht/src/dht-inode-read.c | 2 +-
e7a346
 2 files changed, 2 insertions(+), 4 deletions(-)
e7a346
e7a346
diff --git a/xlators/cluster/dht/src/dht-common.h b/xlators/cluster/dht/src/dht-common.h
e7a346
index 10b7c7e..a70342f 100644
e7a346
--- a/xlators/cluster/dht/src/dht-common.h
e7a346
+++ b/xlators/cluster/dht/src/dht-common.h
e7a346
@@ -795,9 +795,7 @@ typedef struct dht_fd_ctx {
e7a346
                 }                                               \
e7a346
         } while (0)
e7a346
 
e7a346
-#define dht_inode_missing(op_errno) (op_errno == ENOENT || op_errno == ESTALE \
e7a346
-                                     || op_errno == EIO) \
e7a346
-/*Bad fix. Please revert the commit after fixing the bug 1329505*/
e7a346
+#define dht_inode_missing(op_errno) (op_errno == ENOENT || op_errno == ESTALE)
e7a346
 
e7a346
 #define check_is_dir(i,s,x) (IA_ISDIR(s->ia_type))
e7a346
 
e7a346
diff --git a/xlators/cluster/dht/src/dht-inode-read.c b/xlators/cluster/dht/src/dht-inode-read.c
e7a346
index d1895eb..7e4aef4 100644
e7a346
--- a/xlators/cluster/dht/src/dht-inode-read.c
e7a346
+++ b/xlators/cluster/dht/src/dht-inode-read.c
e7a346
@@ -78,7 +78,7 @@ dht_open2 (xlator_t *this, xlator_t *subvol, call_frame_t *frame, int ret)
e7a346
                 goto out;
e7a346
 
e7a346
         local = frame->local;
e7a346
-        op_errno = ENOENT;
e7a346
+        op_errno = local->op_errno;
e7a346
 
e7a346
         if (we_are_not_migrating (ret)) {
e7a346
                 /* This DHT layer is not migrating the file */
e7a346
-- 
e7a346
1.8.3.1
e7a346