MCPcopy Create free account
hub / github.com/ceph/ceph / queue_accept

Method queue_accept

src/msg/DispatchQueue.h:160–169  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

158 cond.notify_all();
159 }
160 void queue_accept(Connection *con) {
161 std::lock_guard l{lock};
162 if (stop)
163 return;
164 mqueue.enqueue_strict(
165 0,
166 CEPH_MSG_PRIO_HIGHEST,
167 QueueItem(D_ACCEPT, con));
168 cond.notify_all();
169 }
170 void queue_remote_reset(Connection *con) {
171 std::lock_guard l{lock};
172 if (stop)

Callers 3

send_server_identMethod · 0.80
send_reconnect_okMethod · 0.80

Calls 3

QueueItemClass · 0.70
enqueue_strictMethod · 0.45
notify_allMethod · 0.45

Tested by

no test coverage detected