diff options
author | Florin Coras <fcoras@cisco.com> | 2023-06-24 18:57:17 -0700 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2023-06-25 01:49:58 +0000 |
commit | 503480d772158d404987aca60c94f96505991d4e (patch) | |
tree | e9a65f6448cb8cb6c11c218784d1de933a4e2f50 /src/vnet/tcp/tcp.h | |
parent | 1271e3a2a1b028e5b9cd7ca35a6bd06ddbe2c63b (diff) |
tcp: avoid initializing counters multiple times
Type: fix
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: Ia98dae5fdde16426d5457742aff0a1b04db4d034
Diffstat (limited to 'src/vnet/tcp/tcp.h')
-rw-r--r-- | src/vnet/tcp/tcp.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/vnet/tcp/tcp.h b/src/vnet/tcp/tcp.h index 962324e2eaf..2362a8bb857 100644 --- a/src/vnet/tcp/tcp.h +++ b/src/vnet/tcp/tcp.h @@ -240,6 +240,9 @@ typedef struct _tcp_main /** Flag that indicates if stack is on or off */ u8 is_enabled; + /** Set if counters on stats segment initialized */ + u8 counters_init; + /** Flag that indicates if v4 punting is enabled */ u8 punt_unknown4; |