diff options
author | Sage Weil <sage@redhat.com> | 2019-10-03 19:28:10 +0200 |
---|---|---|
committer | Sage Weil <sage@redhat.com> | 2019-10-03 19:28:10 +0200 |
commit | f5a7a0b1686b7219f4930b5c24d10b65af4095eb (patch) | |
tree | 6d2bd5480e8e2bbf15a0099e2ca308f4e3bae31e /src/msg/async/ProtocolV1.cc | |
parent | Merge PR #29711 into master (diff) | |
parent | msg/async: rename outcoming_bl -> outgoing_bl in AsyncConnection. (diff) | |
download | ceph-f5a7a0b1686b7219f4930b5c24d10b65af4095eb.tar.xz ceph-f5a7a0b1686b7219f4930b5c24d10b65af4095eb.zip |
Merge PR #30709 into master
* refs/pull/30709/head:
msg/async: rename outcoming_bl -> outgoing_bl in AsyncConnection.
Reviewed-by: Sage Weil <sage@redhat.com>
Diffstat (limited to 'src/msg/async/ProtocolV1.cc')
-rw-r--r-- | src/msg/async/ProtocolV1.cc | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/src/msg/async/ProtocolV1.cc b/src/msg/async/ProtocolV1.cc index 3405bacde4f..5fd2eb84294 100644 --- a/src/msg/async/ProtocolV1.cc +++ b/src/msg/async/ProtocolV1.cc @@ -361,8 +361,8 @@ void ProtocolV1::write_event() { if (left) { ceph_le64 s; s = in_seq; - connection->outcoming_bl.append(CEPH_MSGR_TAG_ACK); - connection->outcoming_bl.append((char *)&s, sizeof(s)); + connection->outgoing_bl.append(CEPH_MSGR_TAG_ACK); + connection->outgoing_bl.append((char *)&s, sizeof(s)); ldout(cct, 10) << __func__ << " try send msg ack, acked " << left << " messages" << dendl; ack_left -= left; @@ -547,16 +547,16 @@ void ProtocolV1::append_keepalive_or_ack(bool ack, utime_t *tp) { ceph_assert(tp); struct ceph_timespec ts; tp->encode_timeval(&ts); - connection->outcoming_bl.append(CEPH_MSGR_TAG_KEEPALIVE2_ACK); - connection->outcoming_bl.append((char *)&ts, sizeof(ts)); + connection->outgoing_bl.append(CEPH_MSGR_TAG_KEEPALIVE2_ACK); + connection->outgoing_bl.append((char *)&ts, sizeof(ts)); } else if (connection->has_feature(CEPH_FEATURE_MSGR_KEEPALIVE2)) { struct ceph_timespec ts; utime_t t = ceph_clock_now(); t.encode_timeval(&ts); - connection->outcoming_bl.append(CEPH_MSGR_TAG_KEEPALIVE2); - connection->outcoming_bl.append((char *)&ts, sizeof(ts)); + connection->outgoing_bl.append(CEPH_MSGR_TAG_KEEPALIVE2); + connection->outgoing_bl.append((char *)&ts, sizeof(ts)); } else { - connection->outcoming_bl.append(CEPH_MSGR_TAG_KEEPALIVE); + connection->outgoing_bl.append(CEPH_MSGR_TAG_KEEPALIVE); } } @@ -1067,9 +1067,9 @@ void ProtocolV1::session_reset() { connection->dispatch_queue->discard_queue(connection->conn_id); discard_out_queue(); - // note: we need to clear outcoming_bl here, but session_reset may be + // note: we need to clear outgoing_bl here, but session_reset may be // called by other thread, so let caller clear this itself! - // outcoming_bl.clear(); + // outgoing_bl.clear(); connection->dispatch_queue->queue_remote_reset(connection); @@ -1125,8 +1125,8 @@ ssize_t ProtocolV1::write_message(Message *m, bufferlist &bl, bool more) { } } - connection->outcoming_bl.append(CEPH_MSGR_TAG_MSG); - connection->outcoming_bl.append((char *)&header, sizeof(header)); + connection->outgoing_bl.append(CEPH_MSGR_TAG_MSG); + connection->outgoing_bl.append((char *)&header, sizeof(header)); ldout(cct, 20) << __func__ << " sending message type=" << header.type << " src " << entity_name_t(header.src) @@ -1135,17 +1135,17 @@ ssize_t ProtocolV1::write_message(Message *m, bufferlist &bl, bool more) { if ((bl.length() <= ASYNC_COALESCE_THRESHOLD) && (bl.buffers().size() > 1)) { for (const auto &pb : bl.buffers()) { - connection->outcoming_bl.append((char *)pb.c_str(), pb.length()); + connection->outgoing_bl.append((char *)pb.c_str(), pb.length()); } } else { - connection->outcoming_bl.claim_append(bl); + connection->outgoing_bl.claim_append(bl); } // send footer; if receiver doesn't support signatures, use the old footer // format ceph_msg_footer_old old_footer; if (connection->has_feature(CEPH_FEATURE_MSG_AUTH)) { - connection->outcoming_bl.append((char *)&footer, sizeof(footer)); + connection->outgoing_bl.append((char *)&footer, sizeof(footer)); } else { if (messenger->crcflags & MSG_CRC_HEADER) { old_footer.front_crc = footer.front_crc; @@ -1156,20 +1156,20 @@ ssize_t ProtocolV1::write_message(Message *m, bufferlist &bl, bool more) { old_footer.data_crc = messenger->crcflags & MSG_CRC_DATA ? footer.data_crc : 0; old_footer.flags = footer.flags; - connection->outcoming_bl.append((char *)&old_footer, sizeof(old_footer)); + connection->outgoing_bl.append((char *)&old_footer, sizeof(old_footer)); } m->trace.event("async writing message"); ldout(cct, 20) << __func__ << " sending " << m->get_seq() << " " << m << dendl; - ssize_t total_send_size = connection->outcoming_bl.length(); + ssize_t total_send_size = connection->outgoing_bl.length(); ssize_t rc = connection->_try_send(more); if (rc < 0) { ldout(cct, 1) << __func__ << " error sending " << m << ", " << cpp_strerror(rc) << dendl; } else { connection->logger->inc( - l_msgr_send_bytes, total_send_size - connection->outcoming_bl.length()); + l_msgr_send_bytes, total_send_size - connection->outgoing_bl.length()); ldout(cct, 10) << __func__ << " sending " << m << (rc ? " continuely." : " done.") << dendl; } @@ -1661,7 +1661,7 @@ CtPtr ProtocolV1::handle_connect_reply_2() { connect_seq = 0; // see session_reset - connection->outcoming_bl.clear(); + connection->outgoing_bl.clear(); return CONTINUE(send_connect_message); } @@ -2348,7 +2348,7 @@ CtPtr ProtocolV1::replace(const AsyncConnectionRef& existing, std::lock_guard<std::mutex> l(existing->lock); existing->write_lock.lock(); exproto->requeue_sent(); - existing->outcoming_bl.clear(); + existing->outgoing_bl.clear(); existing->open_write = false; existing->write_lock.unlock(); if (exproto->state == NONE) { |