aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
Commit message (Collapse)AuthorAge
* Separate CAS/ADD RMWsGravatar Craig Tiller2017-02-21
|
* Add counters for rmw atomic operations to microbenchmarksGravatar Craig Tiller2017-02-21
|
* Merge branch 'master' into healthGravatar yang-g2017-02-17
|\
| * Restore the NextMessageSize for streamed callsGravatar yang-g2017-02-16
| |
| * Merge pull request #9696 from yang-g/network_status_shardGravatar Yang Gao2017-02-16
| |\ | | | | | | Remove network_status_tracker code
| * \ Merge pull request #9648 from dgquintas/lr_sans_mdGravatar David G. Quintas2017-02-16
| |\ \ | | | | | | | | Use call context to propagare LR costs
| | | * Remove code from network_status_tracker.c Pull the hash function to useful.hGravatar yang-g2017-02-16
| | | |
| | * | commentsGravatar David Garcia Quintas2017-02-15
| | | |
| * | | Merge remote-tracking branch 'upstream/master' into packet-coalescing-coreGravatar Muxi Yan2017-02-14
| |\ \ \ | | | |/ | | |/|
| | | * Use call context to propagare LR costsGravatar David Garcia Quintas2017-02-13
| | |/
| | * Expand wildcard IP addresses on servers.Gravatar Dan Born2017-02-09
| | |
| | * Merge pull request #9629 from yang-g/qqqGravatar Yang Gao2017-02-08
| | |\ | | | | | | | | Add a PreServerStart in global server callbacks
| | * \ Merge pull request #9616 from ctiller/disable_bdpGravatar Craig Tiller2017-02-07
| | |\ \ | | | | | | | | | | Add a hook to disable BDP probing
* | | | | Remove asyncGravatar yang-g2017-02-07
| | | | |
* | | | | merge with headGravatar yang-g2017-02-07
|\ \ \ \ \
| | | | | * Add a PreServerStart in global server callbacksGravatar yang-g2017-02-07
| | |_|_|/ | |/| | |
| | | * | Fix read from uninitialized memory bug in GrpcBufferWriter.Gravatar Harvey Tuch2017-02-07
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
| | | * Add a hook to disable BDP probingGravatar Craig Tiller2017-02-07
| | |/ | |/|
| * | Merge github.com:grpc/grpc into bwestGravatar Craig Tiller2017-02-02
| |\ \
| | * \ Merge pull request #7617 from sebright/fix-typos-in-commentsGravatar David G. Quintas2017-02-02
| | |\ \ | | | | | | | | | | Fix typos in comments in census.h
| | | | * Merge remote-tracking branch 'upstream/master' into packet-coalescing-coreGravatar Muxi Yan2017-02-01
| | | | |\ | | | |_|/ | | |/| |
| | | | * Dynamically enable packet coalescing by channel argsGravatar Muxi Yan2017-02-01
| | | | |
| | | | * Revert "Dynamically enable/disable packet coalecsing and test it"Gravatar Muxi Yan2017-02-01
| | | | | | | | | | | | | | | | | | | | This reverts commit 60ab7ef00ac0a988ee2672c636d946c964e6fa41.
* | | | | Merge remote-tracking branch 'upstream/master' into healthGravatar yang-g2017-01-30
|\ \ \ \ \ | | |/ / / | |/| | |
| | * | | Merge branch 'bm_countwrites' into bwestGravatar Craig Tiller2017-01-27
| | |\ \ \ | | |/ / / | |/| | |
| * | | | Merge github.com:grpc/grpc into rollfwdGravatar Craig Tiller2017-01-27
| |\ \ \ \
| | | * | | Merge branch 'bwest' into bm_countwrites+bwestGravatar Craig Tiller2017-01-26
| | |/| | |
| | | * | | Merge github.com:grpc/grpc into bwestGravatar Craig Tiller2017-01-26
| | | |\ \ \
| | * | \ \ \ Merge github.com:grpc/grpc into maxmsgszGravatar Craig Tiller2017-01-26
| | |\ \ \ \ \ | | | | |/ / / | | | |/| | |
* | | | | | | merge with headGravatar yang-g2017-01-26
|\ \ \ \ \ \ \ | | |_|/ / / / | |/| | | | |
| | * | | | | Merge github.com:grpc/grpc into rollfwdGravatar Craig Tiller2017-01-26
| | |\ \ \ \ \ | | |/ / / / / | |/| | | | |
| * | | | | | Move parameters for all grpc_op types into their own sub-structs.Gravatar Mark D. Roth2017-01-25
| | | | | | |
| | * | | | | Merge github.com:grpc/grpc into rollfwdGravatar Craig Tiller2017-01-24
| | |\ \ \ \ \ | | |/ / / / / | |/| | | | |
| | | | | | * Dynamically enable/disable packet coalecsing and test itGravatar Muxi Yan2017-01-23
| | | | | | |
| * | | | | | Merge github.com:grpc/grpc into faster_slicesGravatar Craig Tiller2017-01-23
| |\ \ \ \ \ \ | | | |_|_|_|/ | | |/| | | |
| | | * | | | Revert "Revert "Metadata handling rewrite""Gravatar Craig Tiller2017-01-23
| | |/ / / / | | | | | | | | | | | | | | | | | | This reverts commit 5e01e2ac977655aa074faf7fde0a74298f5e4c55.
| | * | | | Revert "Metadata handling rewrite"Gravatar Craig Tiller2017-01-20
| | | | | |
| * | | | | Fix core banned functionsGravatar Craig Tiller2017-01-20
| | | | | |
| | | * | | Merge github.com:grpc/grpc into maxmsgszGravatar Craig Tiller2017-01-20
| | | |\ \ \ | | | |/ / / | | |/| | |
| * | | | | Merge github.com:grpc/grpc into faster_slicesGravatar Craig Tiller2017-01-20
| |\| | | |
| | | | * | Merge github.com:grpc/grpc into bwestGravatar Craig Tiller2017-01-20
| | | | |\ \ | | | |_|/ / | | |/| | |
| | * | | | Merge github.com:grpc/grpc into metadata_filterGravatar Craig Tiller2017-01-20
| | |\ \ \ \
| * | | | | | Make move_first linearGravatar Craig Tiller2017-01-19
| | | | | | |
| * | | | | | Merge branch 'tweak_slice_buffer' of github.com:sreecha/grpc into blahGravatar Craig Tiller2017-01-19
| |\ \ \ \ \ \
| | | | * \ \ \ Merge pull request #8830 from vjpai/its_compatGravatar Vijay Pai2017-01-19
| | | | |\ \ \ \ | | | | | | | | | | | | | | | | | | C++11: Support compat with 1.0.x generated PB files
| | | | | | * | | Fix integer overflowGravatar Craig Tiller2017-01-19
| | | | | | | | |
| | | | | * | | | Merge branch 'master' into its_compatGravatar Vijay Pai2017-01-19
| | | | | |\ \ \ \ | | |_|_|_|/ / / / | |/| | | | | | |
| | | | | | * | | Remove double-checking of max-message-size in C++ layersGravatar Craig Tiller2017-01-19
| | |_|_|_|/ / / | |/| | | | | |
| | | | * | | | Add ChannelArguments methods for setting max send/recv message size.Gravatar Mark D. Roth2017-01-19
| | |_|/ / / / | |/| | | | |
| | | * | | | Merge github.com:grpc/grpc into metadata_filterGravatar Craig Tiller2017-01-17
| | | |\ \ \ \ | | |_|/ / / / | |/| | | | |