diff options
| author | Raghavendra G <rgowdapp@redhat.com> | 2013-11-04 16:21:14 +0530 | 
|---|---|---|
| committer | Anand Avati <avati@redhat.com> | 2014-01-25 00:03:26 -0800 | 
| commit | c0c1210ffd5a45a47a3ad6a61545145f1a8e129c (patch) | |
| tree | d486a4658faf2ce9a60750dc5be95faf3ba658eb | |
| parent | 0f6fb218e41e3f5d2a1b76b217197b2ca7597ff7 (diff) | |
cluster/dht: set op_errno correctly during migration.
Change-Id: I65acedf92c1003975a584a2ac54527e9a2a1e52f
BUG: 1010241
Signed-off-by: Raghavendra G <rgowdapp@redhat.com>
Reviewed-on: http://review.gluster.org/6219
Reviewed-by: Shyamsundar Ranganathan <srangana@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Anand Avati <avati@redhat.com>
| -rw-r--r-- | xlators/cluster/dht/src/dht-helper.c | 21 | 
1 files changed, 18 insertions, 3 deletions
diff --git a/xlators/cluster/dht/src/dht-helper.c b/xlators/cluster/dht/src/dht-helper.c index 76bfbaedb..381643b22 100644 --- a/xlators/cluster/dht/src/dht-helper.c +++ b/xlators/cluster/dht/src/dht-helper.c @@ -747,8 +747,10 @@ dht_migration_complete_check_task (void *data)          src_node = local->cached_subvol; -        if (!local->loc.inode && !local->fd) +        if (!local->loc.inode && !local->fd) { +                local->op_errno = EINVAL;                  goto out; +        }          inode = (!local->fd) ? local->loc.inode : local->fd->inode; @@ -770,19 +772,23 @@ dht_migration_complete_check_task (void *data)          if (ret) {                  if (!dht_inode_missing(-ret) || (!local->loc.inode)) { +                        local->op_errno = -ret;                          gf_log (this->name, GF_LOG_ERROR,                                  "%s: failed to get the 'linkto' xattr %s",                                  local->loc.path, strerror (-ret));                          ret = -1;                          goto out;                  } +                  /* Need to do lookup on hashed subvol, then get the file */                  ret = syncop_lookup (this, &local->loc, NULL, &stbuf, NULL,                                       NULL);                  if (ret) { +                        local->op_errno = -ret;                          ret = -1;                          goto out;                  } +                  dst_node = dht_subvol_get_cached (this, local->loc.inode);          } @@ -791,17 +797,20 @@ dht_migration_complete_check_task (void *data)                          "%s: failed to get the destination node",                          local->loc.path);                  ret = -1; +                local->op_errno = EINVAL;                  goto out;          }          /* lookup on dst */          if (local->loc.inode) { -                ret = syncop_lookup (dst_node, &local->loc, NULL, &stbuf, NULL, NULL); +                ret = syncop_lookup (dst_node, &local->loc, NULL, &stbuf, NULL, +                                     NULL);                  if (ret) {                          gf_log (this->name, GF_LOG_ERROR,                                  "%s: failed to lookup the file on %s",                                  local->loc.path, dst_node->name); +                        local->op_errno = -ret;                          ret = -1;                          goto out;                  } @@ -811,6 +820,7 @@ dht_migration_complete_check_task (void *data)                                  "%s: gfid different on the target file on %s",                                  local->loc.path, dst_node->name);                          ret = -1; +                        local->op_errno = EIO;                          goto out;                  }          } @@ -824,6 +834,7 @@ dht_migration_complete_check_task (void *data)                          "%s: could not set preset layout for subvol %s",                          local->loc.path, dst_node->name);                  ret   = -1; +                local->op_errno = EINVAL;                  goto out;          } @@ -833,6 +844,7 @@ dht_migration_complete_check_task (void *data)                          "%s: no pre-set layout for subvolume %s",                          local->loc.path, dst_node ? dst_node->name : "<nil>");                  ret = -1; +                local->op_errno = EINVAL;                  goto out;          } @@ -841,6 +853,7 @@ dht_migration_complete_check_task (void *data)                  gf_log (this->name, GF_LOG_ERROR,                          "%s: failed to set the new layout",                          local->loc.path); +                local->op_errno = EINVAL;                  goto out;          } @@ -877,13 +890,15 @@ dht_migration_complete_check_task (void *data)                          gf_log (this->name, GF_LOG_ERROR, "failed to open "                                  "the fd (%p, flags=0%o) on file %s @ %s",                                  iter_fd, iter_fd->flags, path, dst_node->name); -                        ret = -1;                          open_failed = 1; +                        local->op_errno = -ret; +                        ret = -1;                  }          }          GF_FREE (path);          SYNCTASK_SETID (frame->root->uid, frame->root->gid); +          if (open_failed) {                  ret = -1;                  goto out;  | 
