Re: [PATCH RFC 0/6] copy aside frags with destructors (was [PATCH 7/9] net: add skb_orphan_frags to copy aside frags with destructors)
From: Ian Campbell <hidden>
Date: 2012-05-09 14:01:50
On Wed, 2012-05-09 at 14:52 +0100, Michael S. Tsirkin wrote:
On Wed, May 09, 2012 at 02:18:49PM +0100, Ian Campbell wrote:quoted
On Mon, 2012-05-07 at 14:53 +0100, Michael S. Tsirkin wrote:quoted
On Fri, May 04, 2012 at 11:51:31AM +0100, Ian Campbell wrote:quoted
On Fri, 2012-05-04 at 11:03 +0100, Michael S. Tsirkin wrote:quoted
On Fri, May 04, 2012 at 02:54:33AM -0400, David Miller wrote:quoted
From: "Michael S. Tsirkin" <mst@redhat.com> Date: Fri, 4 May 2012 00:10:24 +0300quoted
Hmm we orphan skbs when we loop them back so how about reusing the skb->destructor for this?That's one possibility.So originally I thought it would work: destructor would wake the original owner which would do data copy and modify the fragments. But then I unfortunately realized that would be racy: the new owner could beBy "new owner" you mean the owner of some other skb which refernences the same shinfo (so either clone or the original if we currently hold a clone).quoted
using the old frags and there appears no way for us to make sure it doesn't so that we can put the original page.Right, the key issue is, I think, that cloning etc take an extra dataref on the shinfo but do not take references on the frags. This is obviously sane but does cause the issue above.quoted
And the same logic applies to modifying the frags at any other time if the skb is cloned. So it seems we must copy if we want to clone the skb.Right. I had been hoping that the frag destructors could avoid this but it seems like this is not going to be the case. Just as a thought experiment would taking a frag ref on clone help us? (lets assume for now that, iff there are destructors, this is cheaper than the copy). I think this doesn't work -- since although the ref will mean that the page doesn't go away under anyone elses feet after we've orphaned it we will have lost the pointer to the original page by the time that other ref is dropped, so freeing it will be tricky. So following that train of thought a step further -- would creating a new shinfo entirely on frag orphan buy us anything (and at what cost)? Obviously it an extra allocation -- but we are already allocating N pages of new frag. The others skb's referencing the shared shinfo would still continue to see the old shinfo, pages and refs until they themselves needed to orphan the frags (if they do, they might avoid it).So it would address the second problem (cloned skb) but not the first one (original owner racing with the first one).
Right.
quoted
I think that could work, but I'm not sure it is worth the complexity. Basically all it means that if you are bridging + flooding then you would potentially save some number of a copies depending on the types of devices on each port. [...]quoted
Second option is what macvtap zero copy uses and it already does copy on clone too. So I hacked that to make it support tcp/udp used by sunrpc.This does seem like it is the preferable solution. I haven't read the patches yet, so maybe you already support this, but it would be good to allow the creator of an skb to declare that it doesn't want this behaviour, e.g. because it has some other mechanism for dealing with this copy out for the case where an skb gets held somewhere. Ian.Sure, if we find a way to do that we just don't set ZEROCOPY skb flag.
After reading "net: orphan frags on receive" I'm not sure how necessary it will be, since the main case I was worried about was lots of copying/orphaning on bridge forwarding, but I convinced myself (I think) that the series only effects delivery and not forwarding. Still, no harm in offering the option.
So I'll give people a bit more time to review, hope you find the time too.
I took a look at a fairly high level and it all looked sensible, I've not looked closely at the details, not run it yet, I hope I can do that shortly. BTW, I never said thanks for looking into this, so thanks ;-)