blob: 4f24d0e37d9c1e9d5336e8e99253e660143362c9 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Stephen Hemminger77522372007-04-23 22:28:23 -07002/*
3 * TCP Vegas congestion control interface
4 */
5#ifndef __TCP_VEGAS_H
6#define __TCP_VEGAS_H 1
7
8/* Vegas variables */
9struct vegas {
10 u32 beg_snd_nxt; /* right edge during last RTT */
11 u32 beg_snd_una; /* left edge during last RTT */
12 u32 beg_snd_cwnd; /* saves the size of the cwnd */
13 u8 doing_vegas_now;/* if true, do vegas for this RTT */
14 u16 cntRTT; /* # of RTTs measured within last RTT */
15 u32 minRTT; /* min of RTTs measured within last RTT (in usec) */
16 u32 baseRTT; /* the min of all Vegas RTT measurements seen (in usec) */
17};
18
Joe Perches7e584872013-10-18 13:48:24 -070019void tcp_vegas_init(struct sock *sk);
20void tcp_vegas_state(struct sock *sk, u8 ca_state);
Lawrence Brakmo756ee172016-05-11 10:02:13 -070021void tcp_vegas_pkts_acked(struct sock *sk, const struct ack_sample *sample);
Joe Perches7e584872013-10-18 13:48:24 -070022void tcp_vegas_cwnd_event(struct sock *sk, enum tcp_ca_event event);
Eric Dumazet64f40ff2015-04-28 16:23:48 -070023size_t tcp_vegas_get_info(struct sock *sk, u32 ext, int *attr,
24 union tcp_cc_info *info);
Stephen Hemminger77522372007-04-23 22:28:23 -070025
26#endif /* __TCP_VEGAS_H */