diff options
author | Vikas Gorur <vikas@gluster.com> | 2009-10-05 05:38:09 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2009-10-05 05:16:58 -0700 |
commit | f719a641841a2bbd6f59945e5e32350cfe89f814 (patch) | |
tree | c941c39d5e4731ba95716b056eae267ef49a5fd1 /xlators/features/locks/src/inodelk.c | |
parent | 965b74d7d6faeebb17f580cefcadca15dece3b08 (diff) |
features/locks: Change STACK_UNWIND to STACK_UNWIND_STRICT.
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 269 (Add a specialized STACK_UNWIND macro for each FOP)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=269
Diffstat (limited to 'xlators/features/locks/src/inodelk.c')
-rw-r--r-- | xlators/features/locks/src/inodelk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xlators/features/locks/src/inodelk.c b/xlators/features/locks/src/inodelk.c index 9885de5e0b0..6e95ec6e8e5 100644 --- a/xlators/features/locks/src/inodelk.c +++ b/xlators/features/locks/src/inodelk.c @@ -269,7 +269,7 @@ __grant_blocked_inode_locks (xlator_t *this, pl_inode_t *pl_inode, pl_dom_list_t bl->user_flock.l_start, bl->user_flock.l_len); - STACK_UNWIND (bl->frame, 0, 0, &bl->user_flock); + STACK_UNWIND_STRICT (inodelk, bl->frame, 0, 0); } } return; @@ -525,7 +525,7 @@ pl_common_inodelk (call_frame_t *frame, xlator_t *this, op_ret = 0; unwind: - STACK_UNWIND (frame, op_ret, op_errno); + STACK_UNWIND_STRICT (inodelk, frame, op_ret, op_errno); out: return 0; } |