aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr/buffer_list.h
diff options
context:
space:
mode:
authorGravatar Yash Tibrewal <yashkt@google.com>2018-11-28 19:02:23 -0800
committerGravatar Yash Tibrewal <yashkt@google.com>2018-11-28 19:02:23 -0800
commit7cd7ecc941e921e02a280cb358001076d4469610 (patch)
treeb232449c40eacabbaf5ac433bca9edc5ef320442 /src/core/lib/iomgr/buffer_list.h
parent6697496a1dca9012375c8a00ac6acedaa42449d9 (diff)
Add the length of the buffer that is traced
Diffstat (limited to 'src/core/lib/iomgr/buffer_list.h')
-rw-r--r--src/core/lib/iomgr/buffer_list.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/lib/iomgr/buffer_list.h b/src/core/lib/iomgr/buffer_list.h
index 87d74f9ce2..9e2c1dcb24 100644
--- a/src/core/lib/iomgr/buffer_list.h
+++ b/src/core/lib/iomgr/buffer_list.h
@@ -37,6 +37,8 @@ struct Timestamps {
gpr_timespec scheduled_time;
gpr_timespec sent_time;
gpr_timespec acked_time;
+
+ uint32_t length; /* The length of the buffer traced */
};
/** TracedBuffer is a class to keep track of timestamps for a specific buffer in
@@ -56,7 +58,7 @@ class TracedBuffer {
/** Add a new entry in the TracedBuffer list pointed to by head. Also saves
* sendmsg_time with the current timestamp. */
static void AddNewEntry(grpc_core::TracedBuffer** head, uint32_t seq_no,
- void* arg);
+ uint32_t length, void* arg);
/** Processes a received timestamp based on sock_extended_err and
* scm_timestamping structures. It will invoke the timestamps callback if the
@@ -73,7 +75,7 @@ class TracedBuffer {
private:
GPRC_ALLOW_CLASS_TO_USE_NON_PUBLIC_NEW
- TracedBuffer(int seq_no, void* arg)
+ TracedBuffer(uint32_t seq_no, void* arg)
: seq_no_(seq_no), arg_(arg), next_(nullptr) {}
uint32_t seq_no_; /* The sequence number for the last byte in the buffer */