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

Method queue_remote_reset

src/msg/DispatchQueue.h:170–179  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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)

Callers 2

reset_sessionMethod · 0.80
session_resetMethod · 0.80

Calls 3

QueueItemClass · 0.70
enqueue_strictMethod · 0.45
notify_allMethod · 0.45

Tested by

no test coverage detected