Re: netif_rx packet dumping
From: John Heffner <hidden>
Date: 2005-03-03 23:48:50
From: John Heffner <hidden>
Date: 2005-03-03 23:48:50
On Thu, 3 Mar 2005, Stephen Hemminger wrote:
Another alternative would be some form of adaptive threshold, something like adaptive drop tail described in this paper. http://www.ee.cityu.edu.hk/~gchen/pdf/ITC18.pdf Since netif_rx is running at interrupt time, it has to be simple/quick.
All these AQM schemes are trying to solve a fundamentally different problem. With TCP at least, the only congestion experienced at this point will be transient, so you do not want to send any congestion signals (drop packets) if you can avoid it at all. Making the limit as high as you can tolerate seems like the best thing to me. I am a bit worried that removing the throttling *is* a DOS risk though. -John