summaryrefslogtreecommitdiffstats
path: root/xlators/features/shard/src/shard.c
diff options
context:
space:
mode:
authorKrutika Dhananjay <kdhananj@redhat.com>2015-05-21 14:58:26 +0530
committerPranith Kumar Karampuri <pkarampu@redhat.com>2015-06-03 06:37:07 -0700
commit990cb828a2e9b0d83a767977712305534fac39e2 (patch)
tree7ede152fd49f319e9d441bebb59bab9caad92813 /xlators/features/shard/src/shard.c
parentda111ae21429d33179cd11409bc171fae9d55194 (diff)
features/shard: Handle symlinks appropriately in fops
(f)stat, unlink and rename must skip doing inode_ctx_get() of shard block size on symbolic links. Change-Id: I68688532164dd2ab491ff5c59b343174f8c4ce7f BUG: 1223759 Signed-off-by: Krutika Dhananjay <kdhananj@redhat.com> Reviewed-on: http://review.gluster.org/10995 Tested-by: NetBSD Build System <jenkins@build.gluster.org> Reviewed-by: Pranith Kumar Karampuri <pkarampu@redhat.com>
Diffstat (limited to 'xlators/features/shard/src/shard.c')
-rw-r--r--xlators/features/shard/src/shard.c20
1 files changed, 15 insertions, 5 deletions
diff --git a/xlators/features/shard/src/shard.c b/xlators/features/shard/src/shard.c
index 670fc60ddc0..cbc836476d0 100644
--- a/xlators/features/shard/src/shard.c
+++ b/xlators/features/shard/src/shard.c
@@ -782,7 +782,8 @@ shard_stat (call_frame_t *frame, xlator_t *this, loc_t *loc, dict_t *xdata)
uint64_t block_size = 0;
shard_local_t *local = NULL;
- if (IA_ISDIR (loc->inode->ia_type)) {
+ if ((IA_ISDIR (loc->inode->ia_type)) ||
+ (IA_ISLNK (loc->inode->ia_type))) {
STACK_WIND (frame, default_stat_cbk, FIRST_CHILD (this),
FIRST_CHILD (this)->fops->stat, loc, xdata);
return 0;
@@ -832,7 +833,8 @@ shard_fstat (call_frame_t *frame, xlator_t *this, fd_t *fd, dict_t *xdata)
uint64_t block_size = 0;
shard_local_t *local = NULL;
- if (IA_ISDIR (fd->inode->ia_type)) {
+ if ((IA_ISDIR (fd->inode->ia_type)) ||
+ (IA_ISLNK (fd->inode->ia_type))) {
STACK_WIND (frame, default_fstat_cbk, FIRST_CHILD(this),
FIRST_CHILD (this)->fops->fstat, fd, xdata);
return 0;
@@ -1856,7 +1858,7 @@ shard_unlink (call_frame_t *frame, xlator_t *this, loc_t *loc, int xflag,
shard_local_t *local = NULL;
ret = shard_inode_ctx_get_block_size (loc->inode, this, &block_size);
- if (ret) {
+ if ((ret) && (!IA_ISLNK(loc->inode->ia_type))) {
gf_log (this->name, GF_LOG_ERROR, "Failed to get block size "
"from inode ctx of %s", uuid_utoa (loc->inode->gfid));
goto err;
@@ -1981,7 +1983,8 @@ shard_rename_src_cbk (call_frame_t *frame, void *cookie, xlator_t *this,
local->postoldparent = *postoldparent;
local->prenewparent = *prenewparent;
local->postnewparent = *postnewparent;
- local->xattr_rsp = dict_ref (xdata);
+ if (xdata)
+ local->xattr_rsp = dict_ref (xdata);
/* Now the base file is looked up to gather the ia_size and ia_blocks.*/
@@ -2046,8 +2049,15 @@ shard_rename (call_frame_t *frame, xlator_t *this, loc_t *oldloc, loc_t *newloc,
uint64_t dst_block_size = 0;
shard_local_t *local = NULL;
+ if (IA_ISDIR (oldloc->inode->ia_type)) {
+ STACK_WIND (frame, default_rename_cbk, FIRST_CHILD(this),
+ FIRST_CHILD(this)->fops->rename, oldloc, newloc,
+ xdata);
+ return 0;
+ }
+
ret = shard_inode_ctx_get_block_size (oldloc->inode, this, &block_size);
- if (ret) {
+ if ((ret) && (!IA_ISLNK (oldloc->inode->ia_type))) {
gf_log (this->name, GF_LOG_ERROR, "Failed to get block size "
"from inode ctx of %s",
uuid_utoa (oldloc->inode->gfid));