X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Ftcp%2Ftcp_output.c;h=1b9530b4e1a5e73efed3c15fb3135e9957984eef;hb=5e6305fb02ccdfd38c8c5e369a960deaa7602eba;hp=e843c7ea990df7d60db2b3d7ee4d0220b28bdad6;hpb=30928f87a3c9d98e288d1364d50c032e052e69ab;p=vpp.git diff --git a/src/vnet/tcp/tcp_output.c b/src/vnet/tcp/tcp_output.c index e843c7ea990..1b9530b4e1a 100644 --- a/src/vnet/tcp/tcp_output.c +++ b/src/vnet/tcp/tcp_output.c @@ -1400,6 +1400,7 @@ tcp_prepare_retransmit_segment (tcp_worker_ctx_t * wrk, tc->bytes_retrans += n_bytes; tc->segs_retrans += 1; + tcp_workerp_stats_inc (wrk, rxt_segs, 1); TCP_EVT (TCP_EVT_CC_RTX, tc, offset, n_bytes); return n_bytes; @@ -1452,6 +1453,7 @@ tcp_timer_retransmit_handler (u32 tc_index, u32 thread_index) vlib_buffer_t *b = 0; u32 bi, n_bytes; + tcp_workerp_stats_inc (wrk, tr_events, 1); tc = tcp_connection_get (tc_index, thread_index); /* Note: the connection may have been closed and pool_put */ @@ -1505,6 +1507,7 @@ tcp_timer_retransmit_handler (u32 tc_index, u32 thread_index) session_transport_closed_notify (&tc->connection); tcp_connection_timers_reset (tc); tcp_timer_update (tc, TCP_TIMER_WAITCLOSE, tcp_cfg.closewait_time); + tcp_workerp_stats_inc (wrk, tr_abort, 1); return; } @@ -1556,6 +1559,7 @@ tcp_timer_retransmit_handler (u32 tc_index, u32 thread_index) tcp_connection_set_state (tc, TCP_STATE_CLOSED); tcp_connection_timers_reset (tc); tcp_timer_update (tc, TCP_TIMER_WAITCLOSE, tcp_cfg.cleanup_time); + tcp_workerp_stats_inc (wrk, tr_abort, 1); return; }