From: Ian Campbell <Ian.Campbell@citrix.com>
To: Simon Graham <simon.graham@citrix.com>
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>,
Ben Hutchings <bhutchings@solarflare.com>,
"xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>,
"netdev@vger.kernel.org" <netdev@vger.kernel.org>,
"davem@davemloft.net" <davem@davemloft.net>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
Adnan Misherfi <adnan.misherfi@oracle.com>
Subject: RE: [PATCH] xen/netback: calculate correctly the SKB slots.
Date: Tue, 22 May 2012 20:28:50 +0100 [thread overview]
Message-ID: <1337714930.3991.1.camel@dagon.hellion.org.uk> (raw)
In-Reply-To: <F02ED76F3FCF8C468AD22A7618C05BBBB18DBFFE61@FTLPMAILBOX01.citrite.net>
On Tue, 2012-05-22 at 20:01 +0100, Simon Graham wrote:
> > >
> > > > > int i, copy_off;
> > > > >
> > > > > count = DIV_ROUND_UP(
> > > > > - offset_in_page(skb->data)+skb_headlen(skb),
> > PAGE_SIZE);
> > > > > + offset_in_page(skb->data + skb_headlen(skb)),
> > PAGE_SIZE);
> > > >
> > > > The new version would be equivalent to:
> > > > count = offset_in_page(skb->data + skb_headlen(skb)) != 0;
> > > > which is not right, as netbk_gop_skb() will use one slot per page.
> > >
> > > Just outside the context of this patch we separately count the frag
> > > pages.
> > >
> > > However I think you are right if skb->data covers > 1 page, since the
> > > new version can only ever return 0 or 1. I expect this patch papers
> > over
> > > the underlying issue by not stopping often enough, rather than
> > actually
> > > fixing the underlying issue.
> >
> > Ah, any thoughts? Have you guys seen this behavior as well?
>
> We ran into this same problem and the fix we've been running with for
> a while now (been meaning to submit it!) is:
>
> diff --git a/drivers/net/xen-netback/netback.c b/drivers/net/xen-netback/netback.c
> index c2669b8..7925bd3 100644
> --- a/drivers/net/xen-netback/netback.c
> +++ b/drivers/net/xen-netback/netback.c
> @@ -312,8 +312,7 @@ unsigned int xen_netbk_count_skb_slots(struct xenvif *vif, struct sk_buff *skb)
> unsigned int count;
> int i, copy_off;
>
> - count = DIV_ROUND_UP(
> - offset_in_page(skb->data)+skb_headlen(skb), PAGE_SIZE);
> + count = DIV_ROUND_UP(skb_headlen(skb), PAGE_SIZE);
>
> copy_off = skb_headlen(skb) % PAGE_SIZE;
>
> The rationale for this is that if the header spanned a page boundary,
> you would calculate that it needs 2 slots for the header BUT
> netback_gop_skb copies the header into the start of the page so only
> needs one slot (and only decrements the count of inuse entries by 1).
That sounds very plausible indeed!
Please can format this as a commit message and resend with a
Signed-off-by.
many thanks,
Ian.
>
> We found this running with a VIF bridged to a USB 3G Modem where
> skb->data started near the end of a page so the header would always
> span the page boundary.
>
> It was very easy to get the VIF to stop processing frames with the old
> code and we have not seen any problems since applying this patch.
>
> Simon
>
next prev parent reply other threads:[~2012-05-22 19:28 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-05-21 17:36 [PATCH] xen/netback: calculate correctly the SKB slots Konrad Rzeszutek Wilk
2012-05-21 19:14 ` Ben Hutchings
2012-05-22 9:21 ` Ian Campbell
2012-05-22 18:09 ` Konrad Rzeszutek Wilk
2012-05-22 19:01 ` Simon Graham
2012-05-22 19:28 ` Ian Campbell [this message]
2012-05-22 20:03 ` Simon Graham
2012-05-23 13:12 ` Konrad Rzeszutek Wilk
2012-05-23 14:17 ` Simon Graham
2012-05-22 19:24 ` Adnan Misherfi
2012-05-24 11:12 ` Ian Campbell
2012-05-22 18:01 ` Konrad Rzeszutek Wilk
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1337714930.3991.1.camel@dagon.hellion.org.uk \
--to=ian.campbell@citrix.com \
--cc=adnan.misherfi@oracle.com \
--cc=bhutchings@solarflare.com \
--cc=davem@davemloft.net \
--cc=konrad.wilk@oracle.com \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=simon.graham@citrix.com \
--cc=xen-devel@lists.xensource.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).