From c925962b91c67c8cd2391df7dd0251e0cbf66648 Mon Sep 17 00:00:00 2001 From: N Balachandran Date: Wed, 16 May 2018 18:15:02 +0530 Subject: cluster/dht: Remove EIO from dht_inode_missing Removed EIO from the list of errnos that triggered a migrate check task. Change-Id: I7f89c7a16056421588f1af2377cebe6affddcb47 fixes: bz#1578823 Signed-off-by: N Balachandran --- xlators/cluster/dht/src/dht-inode-read.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xlators/cluster/dht/src/dht-inode-read.c') 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 */ -- cgit