diff options
author | Florin Coras <fcoras@cisco.com> | 2018-09-28 14:59:37 -0700 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2018-09-29 07:17:02 +0000 |
commit | 539663c401b087e4576e41af35144e73e1907c9d (patch) | |
tree | e915b2c17f083daab1765be2072b1e4f7237e516 /src/vcl/vcl_test_server.c | |
parent | 537b17ef954b68d09b6f559dc05672cf7acfbe7c (diff) |
vcl: handle old events before blocking in epoll
Change-Id: I3e62c787882d93c3bfb398ed0d04ef56b3a60b2b
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/vcl/vcl_test_server.c')
-rw-r--r-- | src/vcl/vcl_test_server.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/vcl/vcl_test_server.c b/src/vcl/vcl_test_server.c index a184d995372..2913452ab10 100644 --- a/src/vcl/vcl_test_server.c +++ b/src/vcl/vcl_test_server.c @@ -112,8 +112,9 @@ conn_pool_expand (vcl_test_server_worker_t * wrk, size_t expand_size) static inline vcl_test_server_conn_t * conn_pool_alloc (vcl_test_server_worker_t * wrk) { - int i; + int i, expand = 0; +again: for (i = 0; i < wrk->conn_pool_size; i++) { if (!wrk->conn_pool[i].is_alloc) @@ -124,6 +125,13 @@ conn_pool_alloc (vcl_test_server_worker_t * wrk) } } + if (expand == 0) + { + conn_pool_expand (wrk, 2 * wrk->conn_pool_size); + expand = 1; + goto again; + } + vtwrn ("Failed to allocate connection even after expand"); return 0; } @@ -530,7 +538,7 @@ vts_conn_expect_config (vcl_test_server_conn_t * conn) return 1; return (conn->stats.rx_bytes < 128 - || conn->stats.rx_bytes > conn->cfg.total_bytes); + || conn->stats.rx_bytes >= conn->cfg.total_bytes); } static sock_test_cfg_t * |