Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 22244
b: refs/heads/master
c: 0bc6d90
h: refs/heads/master
v: v3
  • Loading branch information
Baruch Even authored and David S. Miller committed Mar 21, 2006
1 parent be71f21 commit 33e21a3
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c33ad6e476e4cdc245215f3eb5b3df353df1b370
refs/heads/master: 0bc6d90b82775113bbbe371f5d9fcffefa5fa94d
26 changes: 18 additions & 8 deletions trunk/net/ipv4/tcp_htcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ struct htcp {
u8 modeswitch; /* Delay modeswitch until we had at least one congestion event */
u8 ccount; /* Number of RTTs since last congestion event */
u8 undo_ccount;
u16 packetcount;
u16 pkts_acked;
u32 packetcount;
u32 minRTT;
u32 maxRTT;
u32 snd_cwnd_cnt2;
Expand Down Expand Up @@ -92,6 +93,12 @@ static void measure_achieved_throughput(struct sock *sk, u32 pkts_acked)
struct htcp *ca = inet_csk_ca(sk);
u32 now = tcp_time_stamp;

if (icsk->icsk_ca_state == TCP_CA_Open)
ca->pkts_acked = pkts_acked;

if (!use_bandwidth_switch)
return;

/* achieved throughput calculations */
if (icsk->icsk_ca_state != TCP_CA_Open &&
icsk->icsk_ca_state != TCP_CA_Disorder) {
Expand Down Expand Up @@ -217,20 +224,24 @@ static void htcp_cong_avoid(struct sock *sk, u32 ack, u32 rtt,
measure_rtt(sk);

/* keep track of number of round-trip times since last backoff event */
if (ca->snd_cwnd_cnt2++ > tp->snd_cwnd) {
if (ca->snd_cwnd_cnt2 >= tp->snd_cwnd) {
ca->ccount++;
ca->snd_cwnd_cnt2 = 0;
ca->snd_cwnd_cnt2 -= tp->snd_cwnd;
htcp_alpha_update(ca);
}
} else
ca->snd_cwnd_cnt2 += ca->pkts_acked;

/* In dangerous area, increase slowly.
* In theory this is tp->snd_cwnd += alpha / tp->snd_cwnd
*/
if ((tp->snd_cwnd_cnt++ * ca->alpha)>>7 >= tp->snd_cwnd) {
if ((tp->snd_cwnd_cnt * ca->alpha)>>7 >= tp->snd_cwnd) {
if (tp->snd_cwnd < tp->snd_cwnd_clamp)
tp->snd_cwnd++;
tp->snd_cwnd_cnt = 0;
}
} else
tp->snd_cwnd_cnt += ca->pkts_acked;

ca->pkts_acked = 1;
}
}

Expand All @@ -249,6 +260,7 @@ static void htcp_init(struct sock *sk)
memset(ca, 0, sizeof(struct htcp));
ca->alpha = ALPHA_BASE;
ca->beta = BETA_MIN;
ca->pkts_acked = 1;
}

static void htcp_state(struct sock *sk, u8 new_state)
Expand Down Expand Up @@ -278,8 +290,6 @@ static int __init htcp_register(void)
{
BUG_ON(sizeof(struct htcp) > ICSK_CA_PRIV_SIZE);
BUILD_BUG_ON(BETA_MIN >= BETA_MAX);
if (!use_bandwidth_switch)
htcp.pkts_acked = NULL;
return tcp_register_congestion_control(&htcp);
}

Expand Down

0 comments on commit 33e21a3

Please sign in to comment.