From f0193ce9b6b76647483f1380e7a8d791a5e64e61 Mon Sep 17 00:00:00 2001 From: Joseph Fernandes Date: Thu, 5 Nov 2015 14:59:54 +0530 Subject: tier/ctr: Ignore bitrot related fops Ignore bitrot related fops since they are internal fops. Backport of http://review.gluster.org/#/c/12512/ Change-Id: I5b676fe450d266b95bbd25aeca0d54436e098917 BUG: 1278640 Signed-off-by: Joseph Fernandes Reviewed-on: http://review.gluster.org/12533 Tested-by: NetBSD Build System Tested-by: Gluster Build System Reviewed-by: Dan Lambright --- xlators/features/changetimerecorder/src/ctr-helper.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/xlators/features/changetimerecorder/src/ctr-helper.h b/xlators/features/changetimerecorder/src/ctr-helper.h index e0304140fc4..654607fb852 100644 --- a/xlators/features/changetimerecorder/src/ctr-helper.h +++ b/xlators/features/changetimerecorder/src/ctr-helper.h @@ -256,6 +256,13 @@ do {\ * * ****************************************************************************/ +/* + * If a bitrot fop + * */ +#define BITROT_FOP(frame)\ + (frame->root->pid == GF_CLIENT_PID_BITD) + + /* * If a rebalancer fop * */ @@ -299,6 +306,9 @@ gf_boolean_t is_internal_fop (call_frame_t *frame, if (AFR_SELF_HEAL_FOP (frame)) { ret = _gf_true; } + if (BITROT_FOP (frame)) { + ret = _gf_true; + } if (REBALANCE_FOP (frame) || TIER_REBALANCE_FOP (frame)) { ret = _gf_true; if (xdata && dict_get (xdata, CTR_ATTACH_TIER_LOOKUP)) { -- cgit