summaryrefslogtreecommitdiffstats
path: root/xlators/performance/symlink-cache
diff options
context:
space:
mode:
authorshishir gowda <shishirng@gluster.com>2010-07-20 04:25:49 +0000
committerAnand V. Avati <avati@dev.gluster.com>2010-07-20 09:45:57 -0700
commit6d25218a8cb0722e156de3fe73c2e5e577117a62 (patch)
tree680688af2b34a29b6f9c2550ac750e29f26194aa /xlators/performance/symlink-cache
parent0590f3b38519d022b88d43cb0a70962880bc3a9e (diff)
performance/symlink-cache convert STACK_UNWIND to STACK_UNWIND_STRICT
Signed-off-by: shishir gowda <shishirng@gluster.com> 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/performance/symlink-cache')
-rw-r--r--xlators/performance/symlink-cache/src/symlink-cache.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/xlators/performance/symlink-cache/src/symlink-cache.c b/xlators/performance/symlink-cache/src/symlink-cache.c
index 5aaa0a8a7d6..6560c7775c7 100644
--- a/xlators/performance/symlink-cache/src/symlink-cache.c
+++ b/xlators/performance/symlink-cache/src/symlink-cache.c
@@ -250,7 +250,7 @@ sc_readlink_cbk (call_frame_t *frame, void *cookie,
inode_unref (frame->local);
frame->local = NULL;
- STACK_UNWIND (frame, op_ret, op_errno, link, sbuf);
+ STACK_UNWIND_STRICT (readlink, frame, op_ret, op_errno, link, sbuf);
return 0;
}
@@ -275,7 +275,7 @@ sc_readlink (call_frame_t *frame, xlator_t *this,
using buf in readlink_cbk should be aware that @buf
is 0 filled
*/
- STACK_UNWIND (frame, strlen (link), 0, link, &buf);
+ STACK_UNWIND_STRICT (readlink, frame, strlen (link), 0, link, &buf);
FREE (link);
return 0;
}
@@ -303,7 +303,7 @@ sc_symlink_cbk (call_frame_t *frame, void *cookie,
}
}
- STACK_UNWIND (frame, op_ret, op_errno, inode, buf, preparent,
+ STACK_UNWIND_STRICT (symlink, frame, op_ret, op_errno, inode, buf, preparent,
postparent);
return 0;
}
@@ -335,7 +335,7 @@ sc_lookup_cbk (call_frame_t *frame, void *cookie,
else
sc_cache_flush (this, inode);
- STACK_UNWIND (frame, op_ret, op_errno, inode, buf, xattr, postparent);
+ STACK_UNWIND_STRICT (lookup, frame, op_ret, op_errno, inode, buf, xattr, postparent);
return 0;
}