diff options
author | Florin Coras <fcoras@cisco.com> | 2022-03-14 21:17:25 -0700 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2022-03-22 15:14:25 +0000 |
commit | 6bd8d3fbba74f8f80a0c09f87c6cbfddd054042f (patch) | |
tree | 51e5c3c09b6ad5b8dcd2fa77df3fb9a3dc3e7289 /src/vnet/session/session_lookup.c | |
parent | b1c0b9afacb12e8255681db25a01b94f25fed89e (diff) |
session: use safe realloc for pools
Type: improvement
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I313c916d268c4b2b448b93e90bc67da341b803e3
Diffstat (limited to 'src/vnet/session/session_lookup.c')
-rw-r--r-- | src/vnet/session/session_lookup.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/vnet/session/session_lookup.c b/src/vnet/session/session_lookup.c index 5cd1712f195..68f98d0f046 100644 --- a/src/vnet/session/session_lookup.c +++ b/src/vnet/session/session_lookup.c @@ -1046,9 +1046,7 @@ session_lookup_connection4 (u32 fib_index, ip4_address_t * lcl, /** * Lookup session with ip4 and transport layer information * - * Important note: this may look into another thread's pool table and - * register as 'peeker'. Caller should call @ref session_pool_remove_peeker as - * if needed as soon as possible. + * Important note: this may look into another thread's pool table * * Lookup logic is similar to that of @ref session_lookup_connection_wt4 but * this returns a session as opposed to a transport connection and it does not |