* [PATCH net-next] xen-netback: add gso_segs calculation
@ 2013-12-16 17:20 Paul Durrant
2013-12-16 18:23 ` Eric Dumazet
0 siblings, 1 reply; 4+ messages in thread
From: Paul Durrant @ 2013-12-16 17:20 UTC (permalink / raw)
To: xen-devel, netdev; +Cc: Paul Durrant, Wei Liu, Ian Campbell, David Vrabel
netback already has code which parses IPv4 and v6 headers to set up checksum
offsets and these are always applied to GSO packets being sent from
frontends. It's therefore suboptimal that GSOs are being marked
SKB_GSO_DODGY to defer the gso_segs calculation when netback already has all
necessary information to hand to do the calculation. This patch adds that
calculation.
Signed-off-by: Paul Durrant <paul.durrant@citrix.com>
Cc: Wei Liu <wei.liu2@citrix.com>
Cc: Ian Campbell <ian.campbell@citrix.com>
Cc: David Vrabel <david.vrabel@citrix.com>
---
drivers/net/xen-netback/netback.c | 17 +++++++++++++----
1 file changed, 13 insertions(+), 4 deletions(-)
diff --git a/drivers/net/xen-netback/netback.c b/drivers/net/xen-netback/netback.c
index 904e497..0af8d97 100644
--- a/drivers/net/xen-netback/netback.c
+++ b/drivers/net/xen-netback/netback.c
@@ -1043,10 +1043,7 @@ static int xenvif_set_skb_gso(struct xenvif *vif,
}
skb_shinfo(skb)->gso_size = gso->u.gso.size;
-
- /* Header must be checked, and gso_segs computed. */
- skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
- skb_shinfo(skb)->gso_segs = 0;
+ /* gso_segs will be calculated later */
return 0;
}
@@ -1582,6 +1579,18 @@ static int xenvif_tx_submit(struct xenvif *vif, int budget)
skb_probe_transport_header(skb, 0);
+ /* If the packet is GSO then we will have just set up the
+ * transport header offset in checksum_setup so it's now
+ * straightforward to calculate gso_segs.
+ */
+ if (skb_is_gso(skb)) {
+ int mss = skb_shinfo(skb)->gso_size;
+ int hdrlen = skb->transport_header + tcp_hdrlen(skb);
+
+ skb_shinfo(skb)->gso_segs =
+ DIV_ROUND_UP(skb->len - hdrlen, mss);
+ }
+
vif->dev->stats.rx_bytes += skb->len;
vif->dev->stats.rx_packets++;
--
1.7.10.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH net-next] xen-netback: add gso_segs calculation
2013-12-16 17:20 [PATCH net-next] xen-netback: add gso_segs calculation Paul Durrant
@ 2013-12-16 18:23 ` Eric Dumazet
2013-12-16 22:57 ` Eric Dumazet
0 siblings, 1 reply; 4+ messages in thread
From: Eric Dumazet @ 2013-12-16 18:23 UTC (permalink / raw)
To: Paul Durrant; +Cc: xen-devel, netdev, Wei Liu, Ian Campbell, David Vrabel
On Mon, 2013-12-16 at 17:20 +0000, Paul Durrant wrote:
> netback already has code which parses IPv4 and v6 headers to set up checksum
> offsets and these are always applied to GSO packets being sent from
> frontends. It's therefore suboptimal that GSOs are being marked
> SKB_GSO_DODGY to defer the gso_segs calculation when netback already has all
> necessary information to hand to do the calculation. This patch adds that
> calculation.
>
> Signed-off-by: Paul Durrant <paul.durrant@citrix.com>
> Cc: Wei Liu <wei.liu2@citrix.com>
> Cc: Ian Campbell <ian.campbell@citrix.com>
> Cc: David Vrabel <david.vrabel@citrix.com>
> ---
> drivers/net/xen-netback/netback.c | 17 +++++++++++++----
> 1 file changed, 13 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/net/xen-netback/netback.c b/drivers/net/xen-netback/netback.c
> index 904e497..0af8d97 100644
> --- a/drivers/net/xen-netback/netback.c
> +++ b/drivers/net/xen-netback/netback.c
> @@ -1043,10 +1043,7 @@ static int xenvif_set_skb_gso(struct xenvif *vif,
> }
>
> skb_shinfo(skb)->gso_size = gso->u.gso.size;
> -
> - /* Header must be checked, and gso_segs computed. */
> - skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
> - skb_shinfo(skb)->gso_segs = 0;
> + /* gso_segs will be calculated later */
>
> return 0;
> }
> @@ -1582,6 +1579,18 @@ static int xenvif_tx_submit(struct xenvif *vif, int budget)
>
> skb_probe_transport_header(skb, 0);
>
> + /* If the packet is GSO then we will have just set up the
> + * transport header offset in checksum_setup so it's now
> + * straightforward to calculate gso_segs.
> + */
> + if (skb_is_gso(skb)) {
> + int mss = skb_shinfo(skb)->gso_size;
> + int hdrlen = skb->transport_header + tcp_hdrlen(skb);
This means there is no headroom ?
This is not what I am seeing in this driver, as it uses :
skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
> +
> + skb_shinfo(skb)->gso_segs =
> + DIV_ROUND_UP(skb->len - hdrlen, mss);
> + }
> +
> vif->dev->stats.rx_bytes += skb->len;
> vif->dev->stats.rx_packets++;
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH net-next] xen-netback: add gso_segs calculation
2013-12-16 18:23 ` Eric Dumazet
@ 2013-12-16 22:57 ` Eric Dumazet
2013-12-17 8:06 ` Paul Durrant
0 siblings, 1 reply; 4+ messages in thread
From: Eric Dumazet @ 2013-12-16 22:57 UTC (permalink / raw)
To: Paul Durrant; +Cc: xen-devel, netdev, Wei Liu, Ian Campbell, David Vrabel
On Mon, 2013-12-16 at 10:23 -0800, Eric Dumazet wrote:
> On Mon, 2013-12-16 at 17:20 +0000, Paul Durrant wrote:
> > netback already has code which parses IPv4 and v6 headers to set up checksum
> > offsets and these are always applied to GSO packets being sent from
> > frontends. It's therefore suboptimal that GSOs are being marked
> > SKB_GSO_DODGY to defer the gso_segs calculation when netback already has all
> > necessary information to hand to do the calculation. This patch adds that
> > calculation.
> >
> > Signed-off-by: Paul Durrant <paul.durrant@citrix.com>
> > Cc: Wei Liu <wei.liu2@citrix.com>
> > Cc: Ian Campbell <ian.campbell@citrix.com>
> > Cc: David Vrabel <david.vrabel@citrix.com>
> > ---
> > drivers/net/xen-netback/netback.c | 17 +++++++++++++----
> > 1 file changed, 13 insertions(+), 4 deletions(-)
> >
> > diff --git a/drivers/net/xen-netback/netback.c b/drivers/net/xen-netback/netback.c
> > index 904e497..0af8d97 100644
> > --- a/drivers/net/xen-netback/netback.c
> > +++ b/drivers/net/xen-netback/netback.c
> > @@ -1043,10 +1043,7 @@ static int xenvif_set_skb_gso(struct xenvif *vif,
> > }
> >
> > skb_shinfo(skb)->gso_size = gso->u.gso.size;
> > -
> > - /* Header must be checked, and gso_segs computed. */
> > - skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
> > - skb_shinfo(skb)->gso_segs = 0;
> > + /* gso_segs will be calculated later */
> >
> > return 0;
> > }
> > @@ -1582,6 +1579,18 @@ static int xenvif_tx_submit(struct xenvif *vif, int budget)
> >
> > skb_probe_transport_header(skb, 0);
> >
> > + /* If the packet is GSO then we will have just set up the
> > + * transport header offset in checksum_setup so it's now
> > + * straightforward to calculate gso_segs.
> > + */
> > + if (skb_is_gso(skb)) {
> > + int mss = skb_shinfo(skb)->gso_size;
> > + int hdrlen = skb->transport_header + tcp_hdrlen(skb);
>
> This means there is no headroom ?
>
> This is not what I am seeing in this driver, as it uses :
>
> skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
You probably need to use :
hdrlen = skb_transport_header(skb) - skb_mac_header(skb) +
tcp_hdrlen(skb);
(Assuming only TCP is supported)
^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: [PATCH net-next] xen-netback: add gso_segs calculation
2013-12-16 22:57 ` Eric Dumazet
@ 2013-12-17 8:06 ` Paul Durrant
0 siblings, 0 replies; 4+ messages in thread
From: Paul Durrant @ 2013-12-17 8:06 UTC (permalink / raw)
To: Eric Dumazet
Cc: xen-devel@lists.xen.org, netdev@vger.kernel.org, Wei Liu,
Ian Campbell, David Vrabel
> -----Original Message-----
> From: Eric Dumazet [mailto:eric.dumazet@gmail.com]
> Sent: 16 December 2013 22:57
> To: Paul Durrant
> Cc: xen-devel@lists.xen.org; netdev@vger.kernel.org; Wei Liu; Ian Campbell;
> David Vrabel
> Subject: Re: [PATCH net-next] xen-netback: add gso_segs calculation
>
> On Mon, 2013-12-16 at 10:23 -0800, Eric Dumazet wrote:
> > On Mon, 2013-12-16 at 17:20 +0000, Paul Durrant wrote:
> > > netback already has code which parses IPv4 and v6 headers to set up
> checksum
> > > offsets and these are always applied to GSO packets being sent from
> > > frontends. It's therefore suboptimal that GSOs are being marked
> > > SKB_GSO_DODGY to defer the gso_segs calculation when netback
> already has all
> > > necessary information to hand to do the calculation. This patch adds that
> > > calculation.
> > >
> > > Signed-off-by: Paul Durrant <paul.durrant@citrix.com>
> > > Cc: Wei Liu <wei.liu2@citrix.com>
> > > Cc: Ian Campbell <ian.campbell@citrix.com>
> > > Cc: David Vrabel <david.vrabel@citrix.com>
> > > ---
> > > drivers/net/xen-netback/netback.c | 17 +++++++++++++----
> > > 1 file changed, 13 insertions(+), 4 deletions(-)
> > >
> > > diff --git a/drivers/net/xen-netback/netback.c b/drivers/net/xen-
> netback/netback.c
> > > index 904e497..0af8d97 100644
> > > --- a/drivers/net/xen-netback/netback.c
> > > +++ b/drivers/net/xen-netback/netback.c
> > > @@ -1043,10 +1043,7 @@ static int xenvif_set_skb_gso(struct xenvif
> *vif,
> > > }
> > >
> > > skb_shinfo(skb)->gso_size = gso->u.gso.size;
> > > -
> > > - /* Header must be checked, and gso_segs computed. */
> > > - skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
> > > - skb_shinfo(skb)->gso_segs = 0;
> > > + /* gso_segs will be calculated later */
> > >
> > > return 0;
> > > }
> > > @@ -1582,6 +1579,18 @@ static int xenvif_tx_submit(struct xenvif *vif,
> int budget)
> > >
> > > skb_probe_transport_header(skb, 0);
> > >
> > > + /* If the packet is GSO then we will have just set up the
> > > + * transport header offset in checksum_setup so it's now
> > > + * straightforward to calculate gso_segs.
> > > + */
> > > + if (skb_is_gso(skb)) {
> > > + int mss = skb_shinfo(skb)->gso_size;
> > > + int hdrlen = skb->transport_header +
> tcp_hdrlen(skb);
> >
> > This means there is no headroom ?
> >
> > This is not what I am seeing in this driver, as it uses :
> >
> > skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
>
Good point. I'd misunderstood the value in transport_header.
>
> You probably need to use :
>
> hdrlen = skb_transport_header(skb) - skb_mac_header(skb) +
> tcp_hdrlen(skb);
>
Yes, that's what I need.
> (Assuming only TCP is supported)
>
It is. The only possible GSOs are TCP.
Paul
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-12-17 8:06 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-16 17:20 [PATCH net-next] xen-netback: add gso_segs calculation Paul Durrant
2013-12-16 18:23 ` Eric Dumazet
2013-12-16 22:57 ` Eric Dumazet
2013-12-17 8:06 ` Paul Durrant
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).