diff options
author | Samuel Just <samuel.just@dreamhost.com> | 2012-04-26 10:39:04 -0700 |
---|---|---|
committer | Samuel Just <samuel.just@dreamhost.com> | 2012-04-26 10:51:08 -0700 |
commit | 9579365720818125a4b15741ae65e58948b9c69f (patch) | |
tree | 5426de0969ebae61d0b11faf60abf44ac77a925f | |
parent | 4bfcbe6ab890bf0112cd60ed451002dfb7516c1e (diff) | |
download | ceph-9579365720818125a4b15741ae65e58948b9c69f.tar.gz |
PG: whitelist MNotifyRec in started
Signed-off-by: Samuel Just <samuel.just@dreamhost.com>
-rw-r--r-- | src/osd/PG.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/osd/PG.h b/src/osd/PG.h index 70466db5a4a..ef37cb87314 100644 --- a/src/osd/PG.h +++ b/src/osd/PG.h @@ -1018,8 +1018,10 @@ public: typedef boost::mpl::list < boost::statechart::custom_reaction< QueryState >, boost::statechart::custom_reaction< AdvMap >, + boost::statechart::custom_reaction< MNotifyRec >, boost::statechart::transition< boost::statechart::event_base, Crashed > > reactions; + boost::statechart::result react(const MNotifyRec&) { return discard_event(); } boost::statechart::result react(const QueryState& q); boost::statechart::result react(const AdvMap&); }; |