| 188 | cond.notify_all(); |
| 189 | } |
| 190 | void queue_refused(Connection *con) { |
| 191 | std::lock_guard l{lock}; |
| 192 | if (stop) |
| 193 | return; |
| 194 | mqueue.enqueue_strict( |
| 195 | 0, |
| 196 | CEPH_MSG_PRIO_HIGHEST, |
| 197 | QueueItem(D_CONN_REFUSED, con)); |
| 198 | cond.notify_all(); |
| 199 | } |
| 200 | |
| 201 | bool can_fast_dispatch(const ceph::cref_t<Message> &m) const; |
| 202 | void fast_dispatch(const ceph::ref_t<Message>& m); |
no test coverage detected