aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
Commit message (Collapse)AuthorAge
* Explicitly enable epoll on manylinux1Gravatar Mehrdad Afshari2018-01-17
| | | | | | | | | | | | For some reason, the glibc version check does not enable GRPC_LINUX_EPOLL on manylinux1. This commit: * Explicitly enables GRPC_LINUX_LEGACY_EPOLL on MANYLINUX1 * Switches the flag to enable epoll1 IO manager to GRPC_LINUX_LEGACY_EPOLL instead of GRPC_LINUX_EPOLL. This is to ensure epollex and epollsig that are not yet compatible with epoll_create (not epoll_create1) do not get activated unintentionally.
* Merge pull request #14041 from mehrdada/enable-epollGravatar Mehrdad Afshari2018-01-17
|\ | | | | Enable epoll on Python manylinux1
* \ Merge pull request #13984 from markdroth/ref_countingGravatar Mark D. Roth2018-01-17
|\ \ | | | | | | Fix existing ref counting classes and add new ones.
| | * Enable epoll on Python manylinux1Gravatar Mehrdad Afshari2018-01-16
| |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | The Python packages built for Linux and uploaded to PyPI are required to target a standardized platform specification dubbed `manylinux1`, which tries to cover a vast array of Linux distributions, thereby emulating a legacy lowest-common-denominator distribution, with an old `glibc` that does not support `epoll_create1`, but provides the `epoll_create` interface. While there are race condition risks associated with utilizing the latter interface and setting the `O_CLOEXEC` flag immediately on the file descriptor returned by `epoll_create`, the payoff is well worth the risks for our Python users, who currently end up falling back on `poll` polling engine when downloading our Linux binary packages.
| * Code review changes.Gravatar Mark D. Roth2018-01-16
| |
* | Merge pull request #13363 from grpc/revert-13346-revert-13322-oauth_failureGravatar Jan Tattermusch2018-01-16
|\ \ | | | | | | Revert "Revert "Switching from UNAUTHENTICATED to UNAVAILABLE for auth metadata failure""
| | * Merge remote-tracking branch 'upstream/master' into ref_countingGravatar Mark D. Roth2018-01-16
| | |\ | |_|/ |/| |
| | * clang-formatGravatar Mark D. Roth2018-01-16
| | |
* | | Merge pull request #13289 from ncteisen/flow-control-part4Gravatar Vijay Pai2018-01-12
|\ \ \ | | | | | | | | Virtual Flow Control
* \ \ \ Merge pull request #13975 from danzh2010/adjustrcvbufGravatar Yang Gao2018-01-12
|\ \ \ \ | | | | | | | | | | change udp_server receive/send buffer size and set SO_RXQ_OVFL
| | | | * Add equality operators to RefCountedPtr.Gravatar Mark D. Roth2018-01-12
| | | | |
* | | | | Merge pull request #13985 from markdroth/lb_policy_ref_simplificationGravatar Mark D. Roth2018-01-12
|\ \ \ \ \ | | | | | | | | | | | | Simply LB policy refcounting, again.
* | | | | | Revert "Revert "Set error status correctly on server side""Gravatar Ken Payson2018-01-11
| | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 951f84aea00a1f8a65cf160d7d8f342c30593000.
* | | | | | Revert "Set error status correctly on server side"Gravatar David G. Quintas2018-01-11
| | | | | |
| | * | | | formatGravatar Dan Zhang2018-01-11
| | | | | |
| | * | | | %zd->%dGravatar Dan Zhang2018-01-11
| | | | | |
| | * | | | change to int typeGravatar Dan Zhang2018-01-11
| | | | | |
* | | | | | Merge pull request #13972 from ctiller/ownerzGravatar Craig Tiller2018-01-11
|\ \ \ \ \ \ | | | | | | | | | | | | | | Substitute a11r for ctiller in all OWNERS files
| | * | | | | Don't unref null client_stats.Gravatar Mark D. Roth2018-01-11
| | | | | | |
| | * | | | | Revert "Merge pull request #13970 from ↵Gravatar Mark D. Roth2018-01-11
| |/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | grpc/revert-13857-lb_policy_ref_simplification" This reverts commit 61b32965bec11f4106c729bb0a428ff03d2d03ab, reversing changes made to 2eb22fd67d73a210c1f41d79efcfe52285ccb2ec.
| | * | | | fix portability errorsGravatar Dan Zhang2018-01-11
| | | | | |
| | | | | * Fix existing ref counting classes and add new ones.Gravatar Mark D. Roth2018-01-11
| |_|_|_|/ |/| | | |
* | | | | Merge pull request #13676 from markdroth/inlined_vectorGravatar Mark D. Roth2018-01-11
|\ \ \ \ \ | | | | | | | | | | | | Implement InlinedVector independently of absl.
| | | | * | Reviewer feedbackGravatar ncteisen2018-01-10
| | | | | |
* | | | | | exec_ctx_fwd.h should never have been in public headersGravatar Vijay Pai2018-01-10
| | | | | |
| | | * | | change to pass in valueGravatar Dan Zhang2018-01-10
| | | | | |
| * | | | | Implement InlinedVector independently of absl.Gravatar Mark D. Roth2018-01-10
| | | | | |
| | * | | | Substitute a11r for ctiller in all OWNERS filesGravatar Craig Tiller2018-01-10
| |/ / / / |/| | | |
| | * | | Adjust receiv buffer via setsockopt for udp_server's listening socket.Gravatar Dan Zhang2018-01-10
| | | | | | | | | | | | | | | | | | | | | | | | | Since this socket is used for all incoming traffic, its current buffer 1MB is appearantly too small. Change it to 10 MB for now.
* | | | | Revert "Simplify LB policy refcounting."Gravatar Yash Tibrewal2018-01-10
| |/ / / |/| | |
* | | | Merge pull request #13912 from ncteisen/nullptrGravatar David G. Quintas2018-01-09
|\ \ \ \ | |/ / / |/| | | Missing s/NULL/nullptr
* | | | Simplify LB policy refcounting.Gravatar Mark D. Roth2018-01-09
| | | |
* | | | Merge pull request #13805 from AspirinSJL/lb_bugGravatar Juanli Shen2018-01-08
|\ \ \ \ | | | | | | | | | | Change client_load_report_timer_pending var name
| * | | | Unify the timer callback boolsGravatar Juanli Shen2018-01-08
| | | | |
* | | | | Merge pull request #13922 from y-zeng/openssl_1_1_0Gravatar Yuchen Zeng2018-01-08
|\ \ \ \ \ | | | | | | | | | | | | Silence openssl 1.1.0 warnings
* \ \ \ \ \ Merge pull request #13933 from kpayson64/avoid_stallGravatar kpayson642018-01-08
|\ \ \ \ \ \ | | | | | | | | | | | | | | Avoid stall
| * | | | | | Fix bug with pollhup workaroundGravatar Ken Payson2018-01-05
| | | | | | |
* | | | | | | Merge pull request #13931 from apolcyn/merge_18xGravatar apolcyn2018-01-05
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Merge 1.8.x into master
| | * | | | | | Add more control flow loggingGravatar Ken Payson2018-01-05
| | | | | | | |
| * | | | | | | Manual merge conflict resolve: remove exec_ctx param from tcp_freeGravatar Alexander Polcyn2018-01-05
| | | | | | | |
| | * | | | | | Fix a Python spinlock bugGravatar Ken Payson2018-01-05
| | | | | | | |
* | | | | | | | Merge pull request #13900 from vjpai/odrGravatar Vijay Pai2018-01-05
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Wrap duplicated-name definitions in anonymous namespace (except for iomgr)
| | * | | | | | | Merge remote-tracking branch 'upstream/v1.8.x' into merge_18xGravatar Alexander Polcyn2018-01-05
| |/| | | | | | | |/| | | | | | | |
| | | | * | | | | Silence openssl 1.1.0 warningsGravatar Yuchen Zeng2018-01-04
| | | | | | | | |
* | | | | | | | | Set error status correctly on server sideGravatar Ken Payson2018-01-04
| |_|_|/ / / / / |/| | | | | | |
| | * | | | | | Mark tcp errors as UNAVAILABLE in UV tcp codeGravatar murgatroid992018-01-04
| | | | | | | |
| | | | | | * | Fix objc compileGravatar ncteisen2018-01-03
| | | | | | | |
| | | | | * | | Missing s/NULL/nullptrGravatar ncteisen2018-01-03
| |_|_|_|/ / / |/| | | | | |
| | | | | * | Fix tsanGravatar ncteisen2018-01-03
| | | | | | |
| * | | | | | Revert unneeded changesGravatar Vijay Pai2018-01-03
| | | | | | |