diff options
author | Ilya Dryomov <idryomov@gmail.com> | 2020-11-05 17:01:53 +0300 |
---|---|---|
committer | Ilya Dryomov <idryomov@gmail.com> | 2020-12-15 01:21:48 +0300 |
commit | b77f8f0e4f271c29cf5cc071ea1b6bc3a675b340 (patch) | |
tree | c025446d0af503cf48fbe035407565760682e211 /net/ceph | |
parent | 4f1ddb1ea874c7703528a8c21b77b7f2462ee247 (diff) | |
download | linux-b77f8f0e4f271c29cf5cc071ea1b6bc3a675b340.tar.xz |
libceph: include middle_len in process_message() dout
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Diffstat (limited to 'net/ceph')
-rw-r--r-- | net/ceph/messenger.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ceph/messenger.c b/net/ceph/messenger.c index af0f1fa24937..214ae2d17a90 100644 --- a/net/ceph/messenger.c +++ b/net/ceph/messenger.c @@ -2528,12 +2528,13 @@ static void process_message(struct ceph_connection *con) con->in_seq++; mutex_unlock(&con->mutex); - dout("===== %p %llu from %s%lld %d=%s len %d+%d (%u %u %u) =====\n", + dout("===== %p %llu from %s%lld %d=%s len %d+%d+%d (%u %u %u) =====\n", msg, le64_to_cpu(msg->hdr.seq), ENTITY_NAME(msg->hdr.src), le16_to_cpu(msg->hdr.type), ceph_msg_type_name(le16_to_cpu(msg->hdr.type)), le32_to_cpu(msg->hdr.front_len), + le32_to_cpu(msg->hdr.middle_len), le32_to_cpu(msg->hdr.data_len), con->in_front_crc, con->in_middle_crc, con->in_data_crc); con->ops->dispatch(con, msg); |