diff options
author | Florin Coras <fcoras@cisco.com> | 2020-05-22 21:51:30 +0000 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2020-05-24 17:34:32 +0000 |
commit | d4712a8933c2f498bc0a482b2e9b904ea7973cc7 (patch) | |
tree | 78e7f29130b034b246b27a82805c982845fa1b26 /src/vnet/tcp/tcp.h | |
parent | fdca4dd1a1a817e65bf44e435261d893fc0c51d6 (diff) |
tcp: track buffer alloc failures
Reported as part of "show tcp stats"
Type: improvement
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I499ab4e41d13aaf1a0d060e37f09087e63d09567
Diffstat (limited to 'src/vnet/tcp/tcp.h')
-rw-r--r-- | src/vnet/tcp/tcp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vnet/tcp/tcp.h b/src/vnet/tcp/tcp.h index f4cc2c88e62..5c66412dfea 100644 --- a/src/vnet/tcp/tcp.h +++ b/src/vnet/tcp/tcp.h @@ -58,6 +58,7 @@ typedef struct _tcp_lookup_dispatch _(to_closing, u32, "timeout closing") \ _(tr_abort, u32, "timer retransmit abort") \ _(rst_unread, u32, "reset on close due to unread data") \ + _(no_buffer, u32, "out of buffers") \ typedef struct tcp_wrk_stats_ { |