From fd33eb319f922332f4d1da39d37a09b6341e327c Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Tue, 21 May 2019 10:57:55 +0100 Subject: [PATCH] add a flag to turn off PRR --- internal/congestion/cubic_sender.go | 15 ++++++++++----- internal/congestion/cubic_sender_test.go | 14 ++++++++++++++ 2 files changed, 24 insertions(+), 5 deletions(-) diff --git a/internal/congestion/cubic_sender.go b/internal/congestion/cubic_sender.go index d04ec1e4..71bebe71 100644 --- a/internal/congestion/cubic_sender.go +++ b/internal/congestion/cubic_sender.go @@ -20,7 +20,8 @@ type cubicSender struct { stats connectionStats cubic *Cubic - reno bool + noPRR bool + reno bool // Track the largest packet that has been sent. largestSentPacketNumber protocol.PacketNumber @@ -86,7 +87,7 @@ func NewCubicSender(clock Clock, rttStats *RTTStats, reno bool, initialCongestio // TimeUntilSend returns when the next packet should be sent. func (c *cubicSender) TimeUntilSend(bytesInFlight protocol.ByteCount) time.Duration { - if c.InRecovery() { + if !c.noPRR && c.InRecovery() { // PRR is used when in recovery. if c.prr.CanSend(c.GetCongestionWindow(), bytesInFlight, c.GetSlowStartThreshold()) { return 0 @@ -114,7 +115,7 @@ func (c *cubicSender) OnPacketSent( } func (c *cubicSender) CanSend(bytesInFlight protocol.ByteCount) bool { - if c.InRecovery() { + if !c.noPRR && c.InRecovery() { return c.prr.CanSend(c.GetCongestionWindow(), bytesInFlight, c.GetSlowStartThreshold()) } return bytesInFlight < c.GetCongestionWindow() @@ -159,7 +160,9 @@ func (c *cubicSender) OnPacketAcked( c.largestAckedPacketNumber = utils.MaxPacketNumber(ackedPacketNumber, c.largestAckedPacketNumber) if c.InRecovery() { // PRR is used when in recovery. - c.prr.OnPacketAcked(ackedBytes) + if !c.noPRR { + c.prr.OnPacketAcked(ackedBytes) + } return } c.maybeIncreaseCwnd(ackedPacketNumber, ackedBytes, priorInFlight, eventTime) @@ -192,7 +195,9 @@ func (c *cubicSender) OnPacketLost( c.stats.slowstartPacketsLost++ } - c.prr.OnPacketLost(priorInFlight) + if !c.noPRR { + c.prr.OnPacketLost(priorInFlight) + } // TODO(chromium): Separate out all of slow start into a separate class. if c.slowStartLargeReduction && c.InSlowStart() { diff --git a/internal/congestion/cubic_sender_test.go b/internal/congestion/cubic_sender_test.go index 2c02216e..3b33e2db 100644 --- a/internal/congestion/cubic_sender_test.go +++ b/internal/congestion/cubic_sender_test.go @@ -553,6 +553,20 @@ var _ = Describe("Cubic Sender", func() { Expect(sender.GetCongestionWindow()).To(Equal(expectedSendWindow)) }) + It("no PRR", func() { + sender.SetNumEmulatedConnections(1) + sender.noPRR = true + + SendAvailableSendWindow() + LoseNPackets(9) + AckNPackets(1) + + Expect(sender.GetCongestionWindow()).To(Equal(protocol.ByteCount(renoBeta * float32(defaultWindowTCP)))) + windowInPackets := renoBeta * float32(defaultWindowTCP) / float32(protocol.DefaultTCPMSS) + numSent := SendAvailableSendWindow() + Expect(numSent).To(BeEquivalentTo(windowInPackets)) + }) + It("reset after connection migration", func() { Expect(sender.GetCongestionWindow()).To(Equal(defaultWindowTCP)) Expect(sender.SlowstartThreshold()).To(Equal(MaxCongestionWindow))