Muxi Yan
8ce2664497
remove another redundant if statement
8 years ago
Muxi Yan
33c7e8b878
remove redundant if statement
8 years ago
Muxi Yan
35653011a3
Add comments
8 years ago
Muxi Yan
d5bac0d38d
Add comment and fix a trivial
8 years ago
Muxi Yan
016d1085fc
Eliminate magic number 6
8 years ago
Muxi Yan
4373058180
Add comment to logging operations batch
8 years ago
Muxi Yan
7e49365f92
Remove Cronet test cherry-pick
8 years ago
Muxi Yan
1fb35b5348
Add comments to packet coalescing test
8 years ago
Muxi Yan
8e6aec5ed7
Separate/Restore public test interfaces and internal ones
8 years ago
Muxi Yan
14c76cf2c9
Warning and control the rest of interfaces in GRPCCall+Tests as well
8 years ago
Muxi Yan
5bd16b7013
Warnings and macro guards for op batch log
8 years ago
Muxi Yan
acbc5dd6ec
Merge remote-tracking branch 'upstream/master' into packet-coalescing-objc
8 years ago
Muxi Yan
40d7c627bd
Only test the ObjC layer
8 years ago
Muxi Yan
bf803b9563
Nit fixes
8 years ago
Muxi Yan
da7b06c2f8
Merge pull request #9606 from muxi/port-9488
...
Port #9488 and part of #9463
8 years ago
Craig Tiller
7dd42bf3d8
Merge pull request #9522 from ctiller/bm_perf
...
Update latency profiler to use (more appropriate) microbenchmarks
8 years ago
Craig Tiller
2ef0d54ffc
Handle one core
8 years ago
Craig Tiller
360c0d5065
Add comments, fix bug
8 years ago
Jim King
2e096b0fec
Merge pull request #9371 from Vizerai/tracing_API
...
Tracing API
8 years ago
Craig Tiller
f74d172791
Further limit concurrency
8 years ago
Craig Tiller
265775fc20
Handle zero-length filenames
8 years ago
Nathaniel Manista
87562c83e4
Merge pull request #7432 from thinkerou/fix_undefined_name
...
Fix undefined name found by pyflakes.
8 years ago
Yang Gao
f0ef22496c
Merge pull request #9629 from yang-g/qqq
...
Add a PreServerStart in global server callbacks
8 years ago
Craig Tiller
c18f3ed038
Reduce concurrency
8 years ago
Noah Eisen
9d704d209a
Merge pull request #9627 from ncteisen/time-is-but-the-rst-stream-i-go-fishing-in
...
Add More Verbose Status Message to RST_STREAM Case
8 years ago
Craig Tiller
4087712730
Merge pull request #9631 from ctiller/no_no_error
...
Save allocating a grpc_error if there is no error
8 years ago
thinkerou
2b43481ff3
fix undefined name
8 years ago
David G. Quintas
5ef95a96ab
Merge pull request #9194 from dgquintas/lb_secure_naming_3
...
Secure naming support for gRPCLB.
8 years ago
David Garcia Quintas
012915045f
Secure naming support for gRPCLB
8 years ago
Robbie Shade
d92d8270e8
Merge pull request #9617 from rjshade/add_exec_ctx_to_orphan_callback
...
Adds an exec_ctx argument to orphan_cb in udp_server
8 years ago
ncteisen
e128e837f0
clang fmt
8 years ago
Jan Tattermusch
86e3a54900
Merge pull request #9618 from carl-mastrangelo/wander
...
remove extra space in Csharp code
8 years ago
Craig Tiller
c6556af5ec
Merge pull request #9588 from ctiller/fuzzing-memory
...
Add examples from fuzzer server
8 years ago
Craig Tiller
ea2c59420c
Merge pull request #9619 from ctiller/bm_counters
...
Add counters for important metrics to bm_fullstack
8 years ago
Craig Tiller
3f48430beb
Merge pull request #9616 from ctiller/disable_bdp
...
Add a hook to disable BDP probing
8 years ago
Craig Tiller
8c58a489a2
Save allocating a grpc_error if there is no error
8 years ago
Sree Kuchibhotla
04fb965e03
Merge pull request #9054 from sreecha/pollset_set_test
...
Tests for pollset_set.
8 years ago
Craig Tiller
547974e478
Merge pull request #9421 from htuch/grpc-buffer-writer-fix
...
Fix read from uninitialized memory bug in GrpcBufferWriter.
8 years ago
yang-g
f2fe4f7dbd
Add a PreServerStart in global server callbacks
8 years ago
Harvey Tuch
5f3cfe960f
Fix read from uninitialized memory bug in GrpcBufferWriter.
...
This commit fixes an issue in which the following sequence of operations
leads to use of uninitialized memory:
1. Caller invokes GrpcBufferWriter::Next(), and then makes use of 8191
bytes in the returned buffer (which is 8192 bytes in size).
2. Caller then returns the unused single byte via
GrpcBufferWriter::BackUp(). This method invokes
g_core_codegen_interface->grpc_slice_split_tail(), which causes
backup_slice_ to be a grpc_slice with one byte.
3. At the next invocation of GrpcBufferWriter::Next(), a reference to
the single byte grpc_slice is returned to the caller.
The problem here is that the returned reference is to the inlined buffer
in the grpc_slice, which is resident in slice_, not the location of the
buffer inside slice_buffer_ after
g_core_codegen_interface->grpc_slice_buffer_add() in
GrpcBufferWriter::Next(). As a result, any data the caller writes to the
returned void* data is lost.
The solution is to avoid inlined backup slices.
8 years ago
ncteisen
0a8e32ab7f
Add more verbose status msg to rst_stream case
8 years ago
Mark D. Roth
27ee9d015d
Merge pull request #9539 from markdroth/canonicalize_server_uri
...
Canonify server URI when setting the channel arg.
8 years ago
Craig Tiller
715e43bc81
Make a jobspec
8 years ago
Craig Tiller
d52b76de44
Merge github.com:grpc/grpc into bm_perf
8 years ago
Craig Tiller
6911d08388
Fix platform_string() usage, cut temporary space usage
8 years ago
Nathaniel Manista
923e054da4
Merge pull request #8143 from oza/run_test_work_with_python3
...
"/usr/bin/env python" in run_tests.py.
8 years ago
Sree Kuchibhotla
53d7626008
Merge pull request #9571 from sreecha/fix-stress-lb
...
Stress test client service config (in kubernetes) need not be of 'LoadBalancers'.
8 years ago
Sree Kuchibhotla
3d4f443527
Merge pull request #9590 from sreecha/micro_bm
...
Add Streaming ping-pong micro-benchmarks
8 years ago
Muxi Yan
0d2d72f76e
Merge pull request #9596 from muxi/cronet-tests-in-jenkins
...
Add Cronet core tests to Jenkins
8 years ago
Craig Tiller
01d7d9b2e5
Add allocations/iteration counters to bm_fullstack
8 years ago