summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--xlators/cluster/dht/src/dht-common.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/xlators/cluster/dht/src/dht-common.c b/xlators/cluster/dht/src/dht-common.c
index 982b155d57c..3ae9502430e 100644
--- a/xlators/cluster/dht/src/dht-common.c
+++ b/xlators/cluster/dht/src/dht-common.c
@@ -5475,7 +5475,7 @@ dht_mknod (call_frame_t *frame, xlator_t *this,
gf_msg_debug (this->name, 0,
"no subvolume in layout for path=%s",
loc->path);
- op_errno = ENOENT;
+ op_errno = EIO;
goto err;
}
@@ -5584,7 +5584,7 @@ dht_symlink (call_frame_t *frame, xlator_t *this,
gf_msg_debug (this->name, 0,
"no subvolume in layout for path=%s",
loc->path);
- op_errno = ENOENT;
+ op_errno = EIO;
goto err;
}
@@ -5888,7 +5888,7 @@ dht_link (call_frame_t *frame, xlator_t *this,
gf_msg_debug (this->name, 0,
"no subvolume in layout for path=%s",
newloc->path);
- op_errno = ENOENT;
+ op_errno = EIO;
goto err;
}
@@ -6381,7 +6381,7 @@ dht_create (call_frame_t *frame, xlator_t *this,
"no subvolume in layout for path=%s",
loc->path);
- op_errno = ENOENT;
+ op_errno = EIO;
goto err;
}
@@ -6674,7 +6674,7 @@ dht_mkdir (call_frame_t *frame, xlator_t *this,
gf_msg_debug (this->name, 0,
"hashed subvol not found for %s",
loc->path);
- op_errno = ENOENT;
+ op_errno = EIO;
goto err;
}