summaryrefslogtreecommitdiffstats
path: root/xlators/features/leases/src/leases.c
diff options
context:
space:
mode:
authorPoornima G <pgurusid@redhat.com>2016-05-19 05:04:13 -0400
committerPranith Kumar Karampuri <pkarampu@redhat.com>2016-06-01 00:33:08 -0700
commitb06a77f3446d622f8159f08508f4d5063ec50339 (patch)
treeafbb15743ba9ebb3e2381cfeb71ab5321fea2215 /xlators/features/leases/src/leases.c
parente341d2827800e32997f888668597785178a40626 (diff)
leases: Fix the recall code path
1. Replace frame->op usage with frame->root->op, as frame->op is not filled with appropriate value in all cases 2. Add few log messages 3. Fix boolean assignment Change-Id: I340f2200c1fcc4f4ce5a139b0fd22508cb8ac1e3 BUG: 1319992 Signed-off-by: Poornima G <pgurusid@redhat.com> Reviewed-on: http://review.gluster.org/14434 Smoke: Gluster Build System <jenkins@build.gluster.com> NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org> Reviewed-by: Raghavendra Talur <rtalur@redhat.com> CentOS-regression: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Pranith Kumar Karampuri <pkarampu@redhat.com>
Diffstat (limited to 'xlators/features/leases/src/leases.c')
-rw-r--r--xlators/features/leases/src/leases.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/xlators/features/leases/src/leases.c b/xlators/features/leases/src/leases.c
index 4e5ceab3ffa..3e0460000d7 100644
--- a/xlators/features/leases/src/leases.c
+++ b/xlators/features/leases/src/leases.c
@@ -45,7 +45,7 @@ leases_open (call_frame_t *frame, xlator_t *this, loc_t *loc, int32_t flags,
goto err;
}
- GET_FLAGS (frame->op, flags);
+ GET_FLAGS (frame->root->op, flags);
GET_LEASE_ID (xdata, lease_id, frame->root->client->client_uid);
if (lease_id != NULL)
memcpy (fd_ctx->lease_id, lease_id, LEASE_ID_SIZE);
@@ -108,7 +108,7 @@ leases_writev (call_frame_t *frame, xlator_t *this, fd_t *fd,
EXIT_IF_LEASES_OFF (this, out);
GET_LEASE_ID (xdata, lease_id, frame->root->client->client_uid);
- GET_FLAGS (frame->op, fd->flags);
+ GET_FLAGS (frame->root->op, fd->flags);
ret = check_lease_conflict (frame, fd->inode, lease_id, fop_flags);
if (ret < 0)
@@ -161,7 +161,7 @@ leases_readv (call_frame_t *frame, xlator_t *this,
EXIT_IF_LEASES_OFF (this, out);
GET_LEASE_ID (xdata, lease_id, frame->root->client->client_uid);
- GET_FLAGS (frame->op, fd->flags);
+ GET_FLAGS (frame->root->op, fd->flags);
ret = check_lease_conflict (frame, fd->inode, lease_id, fop_flags);
if (ret < 0)
@@ -293,7 +293,7 @@ leases_truncate (call_frame_t *frame, xlator_t *this, loc_t *loc, off_t offset,
EXIT_IF_LEASES_OFF (this, out);
GET_LEASE_ID (xdata, lease_id, frame->root->client->client_uid);
- GET_FLAGS (frame->op, 0);
+ GET_FLAGS (frame->root->op, 0);
ret = check_lease_conflict (frame, loc->inode, lease_id, fop_flags);
if (ret < 0)
@@ -343,7 +343,7 @@ leases_setattr (call_frame_t *frame, xlator_t *this, loc_t *loc,
EXIT_IF_LEASES_OFF (this, out);
GET_LEASE_ID (xdata, lease_id, frame->root->client->client_uid);
- GET_FLAGS (frame->op, 0);
+ GET_FLAGS (frame->root->op, 0);
ret = check_lease_conflict (frame, loc->inode, lease_id, fop_flags);
if (ret < 0)
@@ -397,7 +397,7 @@ leases_rename (call_frame_t *frame, xlator_t *this,
/* should the lease be also checked for newloc */
GET_LEASE_ID (xdata, lease_id, frame->root->client->client_uid);
- GET_FLAGS (frame->op, 0);
+ GET_FLAGS (frame->root->op, 0);
ret = check_lease_conflict (frame, oldloc->inode, lease_id, fop_flags);
if (ret < 0)
@@ -448,7 +448,7 @@ leases_unlink (call_frame_t *frame, xlator_t *this, loc_t *loc, int xflag,
EXIT_IF_LEASES_OFF (this, out);
GET_LEASE_ID (xdata, lease_id, frame->root->client->client_uid);
- GET_FLAGS (frame->op, 0);
+ GET_FLAGS (frame->root->op, 0);
ret = check_lease_conflict (frame, loc->inode, lease_id, fop_flags);
if (ret < 0)
@@ -498,7 +498,7 @@ leases_link (call_frame_t *frame, xlator_t *this, loc_t *oldloc,
EXIT_IF_LEASES_OFF (this, out);
GET_LEASE_ID (xdata, lease_id, frame->root->client->client_uid);
- GET_FLAGS (frame->op, 0);
+ GET_FLAGS (frame->root->op, 0);
ret = check_lease_conflict (frame, oldloc->inode, lease_id, fop_flags);
if (ret < 0)
@@ -550,7 +550,7 @@ leases_create (call_frame_t *frame, xlator_t *this,
EXIT_IF_LEASES_OFF (this, out);
GET_LEASE_ID (xdata, lease_id, frame->root->client->client_uid);
- GET_FLAGS (frame->op, flags);
+ GET_FLAGS (frame->root->op, flags);
ret = check_lease_conflict (frame, fd->inode, lease_id, fop_flags);
if (ret < 0)
@@ -601,7 +601,7 @@ leases_fsync (call_frame_t *frame, xlator_t *this, fd_t *fd,
EXIT_IF_LEASES_OFF (this, out);
GET_LEASE_ID (xdata, lease_id, frame->root->client->client_uid);
- GET_FLAGS (frame->op, fd->flags);
+ GET_FLAGS (frame->root->op, fd->flags);
ret = check_lease_conflict (frame, fd->inode, lease_id, fop_flags);
if (ret < 0)
@@ -649,7 +649,7 @@ leases_ftruncate (call_frame_t *frame, xlator_t *this,
EXIT_IF_LEASES_OFF (this, out);
GET_LEASE_ID (xdata, lease_id, frame->root->client->client_uid);
- GET_FLAGS (frame->op, 0); /* TODO:fd->flags?*/
+ GET_FLAGS (frame->root->op, 0); /* TODO:fd->flags?*/
ret = check_lease_conflict (frame, fd->inode, lease_id, fop_flags);
if (ret < 0)
@@ -699,7 +699,7 @@ leases_fsetattr (call_frame_t *frame, xlator_t *this, fd_t *fd,
EXIT_IF_LEASES_OFF (this, out);
GET_LEASE_ID (xdata, lease_id, frame->root->client->client_uid);
- GET_FLAGS (frame->op, fd->flags);
+ GET_FLAGS (frame->root->op, fd->flags);
ret = check_lease_conflict (frame, fd->inode, lease_id, fop_flags);
if (ret < 0)
@@ -750,7 +750,7 @@ leases_fallocate (call_frame_t *frame, xlator_t *this, fd_t *fd,
EXIT_IF_LEASES_OFF (this, out);
GET_LEASE_ID (xdata, lease_id, frame->root->client->client_uid);
- GET_FLAGS (frame->op, fd->flags);
+ GET_FLAGS (frame->root->op, fd->flags);
ret = check_lease_conflict (frame, fd->inode, lease_id, fop_flags);
if (ret < 0)
@@ -801,7 +801,7 @@ leases_discard (call_frame_t *frame, xlator_t *this, fd_t *fd,
EXIT_IF_LEASES_OFF (this, out);
GET_LEASE_ID (xdata, lease_id, frame->root->client->client_uid);
- GET_FLAGS (frame->op, fd->flags);
+ GET_FLAGS (frame->root->op, fd->flags);
ret = check_lease_conflict (frame, fd->inode, lease_id, fop_flags);
if (ret < 0)
@@ -852,7 +852,7 @@ leases_zerofill (call_frame_t *frame, xlator_t *this, fd_t *fd,
EXIT_IF_LEASES_OFF (this, out);
GET_LEASE_ID (xdata, lease_id, frame->root->client->client_uid);
- GET_FLAGS (frame->op, fd->flags);
+ GET_FLAGS (frame->root->op, fd->flags);
ret = check_lease_conflict (frame, fd->inode, lease_id, fop_flags);
if (ret < 0)
@@ -901,7 +901,7 @@ leases_flush (call_frame_t *frame, xlator_t *this,
EXIT_IF_LEASES_OFF (this, out);
GET_LEASE_ID (xdata, lease_id, frame->root->client->client_uid);
- GET_FLAGS (frame->op, fd->flags);
+ GET_FLAGS (frame->root->op, fd->flags);
ret = check_lease_conflict (frame, fd->inode, lease_id, fop_flags);
if (ret < 0)