From b8f1ef2b02b8709c72408ee4803f442efc9f4576 Mon Sep 17 00:00:00 2001 From: Konstantin Ananyev Date: Mon, 4 Nov 2019 13:50:31 +0000 Subject: v6: make TCP stream alloc/free to use memtank API Introduce two extra parameters for TCP context creation: struct { uint32_t min; /**< min number of free streams (grow threshold). */ uint32_t max; /**< max number of free streams (shrink threshold). */ } free_streams; By default these params are equal to max_streams value (avoid dynamic allocation and preserve current beahviour). grow() is invoked from accept() FE call to refill streams tank for BE. shrink() is invoked from close() FE call. Signed-off-by: Konstantin Ananyev Change-Id: I7af6a76d64813ee4a535323e27ffbfd75037fc92 --- test/gtest/Makefile | 2 +- test/gtest/test_tle_tcp_stream.h | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'test/gtest') diff --git a/test/gtest/Makefile b/test/gtest/Makefile index e980c23..3858306 100644 --- a/test/gtest/Makefile +++ b/test/gtest/Makefile @@ -125,7 +125,7 @@ LDLIBS += -lstdc++ LDLIBS += -L$(GMOCK_DIR) -L$(GMOCK_DIR)/../lib -lgmock LDLIBS += -L$(GMOCK_DIR)/gtest -L$(GMOCK_DIR)/../lib -lgtest LDLIBS += -L$(RTE_OUTPUT)/lib -LDLIBS += -whole-archive -ltle_l4p -ltle_dring -ltle_timer +LDLIBS += -whole-archive -ltle_l4p -ltle_dring -ltle_memtank -ltle_timer include $(TLDK_ROOT)/mk/tle.app.mk endif diff --git a/test/gtest/test_tle_tcp_stream.h b/test/gtest/test_tle_tcp_stream.h index 2caf2b5..cb2946e 100644 --- a/test/gtest/test_tle_tcp_stream.h +++ b/test/gtest/test_tle_tcp_stream.h @@ -41,6 +41,10 @@ static struct tle_ctx_param ctx_prm_tmpl = { .socket_id = SOCKET_ID_ANY, .proto = TLE_PROTO_TCP, .max_streams = MAX_STREAMS, + . free_streams = { + .min = 0, + .max = 0, + }, .max_stream_rbufs = MAX_STREAM_RBUFS, .max_stream_sbufs = MAX_STREAM_SBUFS, }; -- cgit 1.2.3-korg