aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-03-23 15:17:18 -0700
committerGravatar Craig Tiller <ctiller@google.com>2017-03-23 15:17:18 -0700
commitb64d652703e998525291eef36c416874894d5749 (patch)
tree323b06a2b149375df9cae5cdef209bd020d94ebc /src/core/lib
parent878a7c2a09d01baec4df8eb99ba9cbe1dc9af7e3 (diff)
Spam cleanup
Diffstat (limited to 'src/core/lib')
-rw-r--r--src/core/lib/surface/channel.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/core/lib/surface/channel.c b/src/core/lib/surface/channel.c
index a80f24e740..b4bfb92042 100644
--- a/src/core/lib/surface/channel.c
+++ b/src/core/lib/surface/channel.c
@@ -200,16 +200,13 @@ size_t grpc_channel_get_call_size_estimate(grpc_channel *channel) {
(which is common) - which tends to help most allocators reuse memory
2. a small amount of allowed growth over the estimate without hitting
the arena size doubling case, reducing overall memory usage */
- size_t est = ((size_t)gpr_atm_no_barrier_load(&channel->call_size_estimate) +
- 2 * ROUND_UP_SIZE) &
- ~(size_t)(ROUND_UP_SIZE - 1);
- gpr_log(GPR_DEBUG, "est: %d", (int)est);
- return est;
+ return ((size_t)gpr_atm_no_barrier_load(&channel->call_size_estimate) +
+ 2 * ROUND_UP_SIZE) &
+ ~(size_t)(ROUND_UP_SIZE - 1);
}
void grpc_channel_update_call_size_estimate(grpc_channel *channel,
size_t size) {
- gpr_log(GPR_DEBUG, "used: %d", (int)size);
size_t cur = (size_t)gpr_atm_no_barrier_load(&channel->call_size_estimate);
if (cur < size) {
/* size grew: update estimate */