Re: [net-next 2/2] macvlan: Enable qdisc backoff logic.
From: Arnd Bergmann <arnd@arndb.de>
Date: 2010-08-25 19:24:14
From: Arnd Bergmann <arnd@arndb.de>
Date: 2010-08-25 19:24:14
On Wednesday 25 August 2010 21:00:51 Ben Greear wrote:
This allows macvlans to apply backpressure to calling code in the transmit path when the underlying qdisc cannot accept additional packets. Signed-off-by: Ben Greear <redacted>
Ah, very nice! I was wondering how to do this. I suppose we need to do something in macvtap to handle this as well, right? A guest trying to send a frame through qemu or vhost net into macvtap needs to be prevented from sending more when we get into this path. Right now, we just ignore the return value of macvlan_start_xmit. Arnd