| 5388 | } |
| 5389 | |
| 5390 | void Objecter::_send_command(CommandOp *c) |
| 5391 | { |
| 5392 | ldout(cct, 10) << "_send_command " << c->tid << dendl; |
| 5393 | ceph_assert(c->session); |
| 5394 | ceph_assert(c->session->con); |
| 5395 | auto m = new MCommand(monc->monmap.fsid); |
| 5396 | m->cmd = c->cmd; |
| 5397 | m->set_data(c->inbl); |
| 5398 | m->set_tid(c->tid); |
| 5399 | c->session->con->send_message(m); |
| 5400 | logger->inc(l_osdc_command_send); |
| 5401 | } |
| 5402 | |
| 5403 | int Objecter::command_op_cancel(OSDSession *s, ceph_tid_t tid, |
| 5404 | bs::error_code ec) |
nothing calls this directly
no test coverage detected