| 168 | cond.notify_all(); |
| 169 | } |
| 170 | void queue_remote_reset(Connection *con) { |
| 171 | std::lock_guard l{lock}; |
| 172 | if (stop) |
| 173 | return; |
| 174 | mqueue.enqueue_strict( |
| 175 | 0, |
| 176 | CEPH_MSG_PRIO_HIGHEST, |
| 177 | QueueItem(D_BAD_REMOTE_RESET, con)); |
| 178 | cond.notify_all(); |
| 179 | } |
| 180 | void queue_reset(Connection *con) { |
| 181 | std::lock_guard l{lock}; |
| 182 | if (stop) |
no test coverage detected