| 148 | void dispatch_throttle_release(uint64_t msize); |
| 149 | |
| 150 | void queue_connect(Connection *con) { |
| 151 | std::lock_guard l{lock}; |
| 152 | if (stop) |
| 153 | return; |
| 154 | mqueue.enqueue_strict( |
| 155 | 0, |
| 156 | CEPH_MSG_PRIO_HIGHEST, |
| 157 | QueueItem(D_CONNECT, con)); |
| 158 | cond.notify_all(); |
| 159 | } |
| 160 | void queue_accept(Connection *con) { |
| 161 | std::lock_guard l{lock}; |
| 162 | if (stop) |
no test coverage detected