Hide Forgot
This looks like just a typo, but it causes the pre-attribute string to get overwritten by the post-attribute string and the post-attribute string to remain null. This can cause a bit of confusion while trying to debug other problems. ;) Here's the one-line patch. git diff -w xlators/debug/trace/src/trace.c --- a/xlators/debug/trace/src/trace.c +++ b/xlators/debug/trace/src/trace.c @@ -505,7 +505,7 @@ trace_unlink_cbk (call_frame_t *frame, if (trace_fop_names[GF_FOP_UNLINK].enabled) { if (op_ret >= 0) { preparentstr = trace_stat_to_str (preparent); - preparentstr = trace_stat_to_str (postparent); + postparentstr = trace_stat_to_str (postparent); gf_log (this->name, GF_LOG_NORMAL, "%"PRId64": (op_ret=%d, *preparent = {%s}, "
Thats correct. I have this and a bunch of other fixes to trace already in my private tree. I'll be sending them along with NFS patches in a couple of weeks. Thanks for reporting.
PATCH: http://patches.gluster.com/patch/2687 in master (trace: multiple fixes)
PATCH: http://patches.gluster.com/patch/2826 in master (trace: Do not clobber own itable)
PATCH: http://patches.gluster.com/patch/2828 in master (trace: Print correct variable in lookup_cbk)
PATCH: http://patches.gluster.com/patch/2838 in master (trace: Print st_dev for struct stat)
PATCH: http://patches.gluster.com/patch/2829 in master (trace: Do not print results on failed readlink)
PATCH: http://patches.gluster.com/patch/2845 in master (trace: Display op_errno even on successful readv)