This reverts commit
3f23709c474292f9239f77a6cce26309fc86ce29.
We have changed mark_down() behavior so that it no longer blocks on
fast dispatch. This makes the objecter reply handler safe again.
Fixes: #9598
Signed-off-by: Sage Weil <sage@redhat.com>
public:
bool ms_dispatch(Message *m);
bool ms_can_fast_dispatch_any() const {
- return false;
+ return true;
}
bool ms_can_fast_dispatch(Message *m) const {
switch (m->get_type()) {
case CEPH_MSG_OSD_OPREPLY:
- /* sadly, we need to solve a deadlock before reenabling.
- * See tracker issue #9462 */
- return false;
+ return true;
default:
return false;
}