From 334bf7e3dceed080776148555790b60b69527e40 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Thu, 22 Feb 2018 09:18:28 -0600 Subject: [PATCH] osd/PG: set send_notify on child If we are a non-primary, we need to ensure the split children send notifies. Signed-off-by: Sage Weil --- src/osd/PG.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/osd/PG.cc b/src/osd/PG.cc index 4c68bb152db..9759312bf51 100644 --- a/src/osd/PG.cc +++ b/src/osd/PG.cc @@ -2558,6 +2558,8 @@ void PG::split_into(pg_t child_pgid, PG *child, unsigned split_bits) child->on_new_interval(); + child->send_notify = !child->is_primary(); + child->dirty_info = true; child->dirty_big_info = true; dirty_info = true; -- 2.39.5