diff options
author | Florin Coras <fcoras@cisco.com> | 2018-11-01 16:30:54 -0700 |
---|---|---|
committer | Marco Varlese <marco.varlese@suse.de> | 2018-11-02 08:06:46 +0000 |
commit | c44a558164a466a74a4c10d4e7d7dd1b9a4b01dd (patch) | |
tree | 3f71b876678de40d0bd6f0a15f463dbe51d61719 /src/vnet/tcp/tcp.h | |
parent | be72ae6149a432899698a887b1820cf5c9d9456f (diff) |
session: measure dispatch period only if under load
Also reset pacer on tcp retransmit timeout
Change-Id: I5a9edee4c00d1d169248d79587a9b10437c2bd87
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/vnet/tcp/tcp.h')
-rw-r--r-- | src/vnet/tcp/tcp.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/vnet/tcp/tcp.h b/src/vnet/tcp/tcp.h index 71af461aca3..bd5e4f71bdb 100644 --- a/src/vnet/tcp/tcp.h +++ b/src/vnet/tcp/tcp.h @@ -735,14 +735,16 @@ void tcp_connection_timers_init (tcp_connection_t * tc); void tcp_connection_timers_reset (tcp_connection_t * tc); void tcp_init_snd_vars (tcp_connection_t * tc); void tcp_connection_init_vars (tcp_connection_t * tc); -void tcp_update_pacer (tcp_connection_t * tc); +void tcp_connection_tx_pacer_update (tcp_connection_t * tc); +void tcp_connection_tx_pacer_reset (tcp_connection_t * tc, u32 window, + u32 start_bucket); always_inline void tcp_cc_rcv_ack (tcp_connection_t * tc) { tc->cc_algo->rcv_ack (tc); tc->tsecr_last_ack = tc->rcv_opts.tsecr; - tcp_update_pacer (tc); + tcp_connection_tx_pacer_update (tc); } always_inline void |