All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] xen-netback: use netdev_alloc_skb_ip_align
@ 2013-03-20 19:21 Stephen Hemminger
  2013-04-09 11:27 ` Ian Campbell
  0 siblings, 1 reply; 4+ messages in thread
From: Stephen Hemminger @ 2013-03-20 19:21 UTC (permalink / raw)
  To: Ian Campbell; +Cc: xen-devel

Use standard helper function to allocate and align received packet.
Compile tested only

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>


--- a/drivers/net/xen-netback/netback.c	2013-03-07 18:12:52.825300956 -0800
+++ b/drivers/net/xen-netback/netback.c	2013-03-20 12:09:09.052034865 -0700
@@ -1357,8 +1357,8 @@ static unsigned xen_netbk_tx_build_gops(
 			    ret < MAX_SKB_FRAGS) ?
 			PKT_PROT_LEN : txreq.size;
 
-		skb = alloc_skb(data_len + NET_SKB_PAD + NET_IP_ALIGN,
-				GFP_ATOMIC | __GFP_NOWARN);
+		skb = __netdev_alloc_skb_ip_align(vif->dev, data_len,
+						  GFP_ATOMIC | __GFP_NOWARN);
 		if (unlikely(skb == NULL)) {
 			netdev_dbg(vif->dev,
 				   "Can't allocate a skb in start_xmit.\n");
@@ -1366,9 +1366,6 @@ static unsigned xen_netbk_tx_build_gops(
 			break;
 		}
 
-		/* Packets passed to netif_rx() must have some headroom. */
-		skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
-
 		if (extras[XEN_NETIF_EXTRA_TYPE_GSO - 1].type) {
 			struct xen_netif_extra_info *gso;
 			gso = &extras[XEN_NETIF_EXTRA_TYPE_GSO - 1];

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] xen-netback: use netdev_alloc_skb_ip_align
  2013-03-20 19:21 [PATCH] xen-netback: use netdev_alloc_skb_ip_align Stephen Hemminger
@ 2013-04-09 11:27 ` Ian Campbell
  2013-04-09 23:07   ` Stephen Hemminger
  0 siblings, 1 reply; 4+ messages in thread
From: Ian Campbell @ 2013-04-09 11:27 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: xen-devel@lists.xensource.com

(apologies for the late reply, I've been away)

On Wed, 2013-03-20 at 19:21 +0000, Stephen Hemminger wrote:
> Use standard helper function to allocate and align received packet.
> Compile tested only
> 
> Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
> 
> 
> --- a/drivers/net/xen-netback/netback.c	2013-03-07 18:12:52.825300956 -0800
> +++ b/drivers/net/xen-netback/netback.c	2013-03-20 12:09:09.052034865 -0700
> @@ -1357,8 +1357,8 @@ static unsigned xen_netbk_tx_build_gops(
>  			    ret < MAX_SKB_FRAGS) ?
>  			PKT_PROT_LEN : txreq.size;
>  
> -		skb = alloc_skb(data_len + NET_SKB_PAD + NET_IP_ALIGN,
> -				GFP_ATOMIC | __GFP_NOWARN);
> +		skb = __netdev_alloc_skb_ip_align(vif->dev, data_len,
> +						  GFP_ATOMIC | __GFP_NOWARN);

__netdev_alloc_skb_ip_align accounts for NET_IP_ALIGN but not
NET_SKB_PAD, is this aspect of the change intentional? (I'm not really
sure how much NET_SKB_PAD is worth in practice).


>  		if (unlikely(skb == NULL)) {
>  			netdev_dbg(vif->dev,
>  				   "Can't allocate a skb in start_xmit.\n");
> @@ -1366,9 +1366,6 @@ static unsigned xen_netbk_tx_build_gops(
>  			break;
>  		}
>  
> -		/* Packets passed to netif_rx() must have some headroom. */
> -		skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
> -
>  		if (extras[XEN_NETIF_EXTRA_TYPE_GSO - 1].type) {
>  			struct xen_netif_extra_info *gso;
>  			gso = &extras[XEN_NETIF_EXTRA_TYPE_GSO - 1];

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] xen-netback: use netdev_alloc_skb_ip_align
  2013-04-09 11:27 ` Ian Campbell
@ 2013-04-09 23:07   ` Stephen Hemminger
  2013-04-10 13:18     ` Ian Campbell
  0 siblings, 1 reply; 4+ messages in thread
From: Stephen Hemminger @ 2013-04-09 23:07 UTC (permalink / raw)
  To: Ian Campbell; +Cc: xen-devel@lists.xensource.com

On Tue, 9 Apr 2013 12:27:31 +0100
Ian Campbell <Ian.Campbell@citrix.com> wrote:

> (apologies for the late reply, I've been away)
> 
> On Wed, 2013-03-20 at 19:21 +0000, Stephen Hemminger wrote:
> > Use standard helper function to allocate and align received packet.
> > Compile tested only
> > 
> > Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
> > 
> > 
> > --- a/drivers/net/xen-netback/netback.c	2013-03-07 18:12:52.825300956 -0800
> > +++ b/drivers/net/xen-netback/netback.c	2013-03-20 12:09:09.052034865 -0700
> > @@ -1357,8 +1357,8 @@ static unsigned xen_netbk_tx_build_gops(
> >  			    ret < MAX_SKB_FRAGS) ?
> >  			PKT_PROT_LEN : txreq.size;
> >  
> > -		skb = alloc_skb(data_len + NET_SKB_PAD + NET_IP_ALIGN,
> > -				GFP_ATOMIC | __GFP_NOWARN);
> > +		skb = __netdev_alloc_skb_ip_align(vif->dev, data_len,
> > +						  GFP_ATOMIC | __GFP_NOWARN);
> 
> __netdev_alloc_skb_ip_align accounts for NET_IP_ALIGN but not
> NET_SKB_PAD, is this aspect of the change intentional? (I'm not really
> sure how much NET_SKB_PAD is worth in practice).

__nedev_alloc_skb_ip_align(dev, length, gfp)
 calls __netdev_alloc_skb(dev, length + NET_IP_ALIGN, gfp)
   calls __netdev_alloc_skb

which adds padding here:
struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
				   unsigned int length, gfp_t gfp_mask)
{
	struct sk_buff *skb = NULL;
	unsigned int fragsz = SKB_DATA_ALIGN(length + NET_SKB_PAD) +
			      SKB_DATA_ALIGN(sizeof(struct skb_shared_info));

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] xen-netback: use netdev_alloc_skb_ip_align
  2013-04-09 23:07   ` Stephen Hemminger
@ 2013-04-10 13:18     ` Ian Campbell
  0 siblings, 0 replies; 4+ messages in thread
From: Ian Campbell @ 2013-04-10 13:18 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: xen-devel@lists.xensource.com

On Wed, 2013-04-10 at 00:07 +0100, Stephen Hemminger wrote:
> On Tue, 9 Apr 2013 12:27:31 +0100
> Ian Campbell <Ian.Campbell@citrix.com> wrote:
> 
> > (apologies for the late reply, I've been away)
> > 
> > On Wed, 2013-03-20 at 19:21 +0000, Stephen Hemminger wrote:
> > > Use standard helper function to allocate and align received packet.
> > > Compile tested only
> > > 
> > > Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
> > > 
> > > 
> > > --- a/drivers/net/xen-netback/netback.c	2013-03-07 18:12:52.825300956 -0800
> > > +++ b/drivers/net/xen-netback/netback.c	2013-03-20 12:09:09.052034865 -0700
> > > @@ -1357,8 +1357,8 @@ static unsigned xen_netbk_tx_build_gops(
> > >  			    ret < MAX_SKB_FRAGS) ?
> > >  			PKT_PROT_LEN : txreq.size;
> > >  
> > > -		skb = alloc_skb(data_len + NET_SKB_PAD + NET_IP_ALIGN,
> > > -				GFP_ATOMIC | __GFP_NOWARN);
> > > +		skb = __netdev_alloc_skb_ip_align(vif->dev, data_len,
> > > +						  GFP_ATOMIC | __GFP_NOWARN);
> > 
> > __netdev_alloc_skb_ip_align accounts for NET_IP_ALIGN but not
> > NET_SKB_PAD, is this aspect of the change intentional? (I'm not really
> > sure how much NET_SKB_PAD is worth in practice).
> 
> __nedev_alloc_skb_ip_align(dev, length, gfp)
>  calls __netdev_alloc_skb(dev, length + NET_IP_ALIGN, gfp)
>    calls __netdev_alloc_skb
> 
> which adds padding here:
> struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
> 				   unsigned int length, gfp_t gfp_mask)
> {
> 	struct sk_buff *skb = NULL;
> 	unsigned int fragsz = SKB_DATA_ALIGN(length + NET_SKB_PAD) +
> 			      SKB_DATA_ALIGN(sizeof(struct skb_shared_info));

Thanks for the explanation.

Acked-by: Ian Campbell <ian.campbell@citix.com>

I see this wasn't CCd to netdev -- do you want to resend or would you
like me to fwd to DaveM for you?

Ian.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-04-10 13:18 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-20 19:21 [PATCH] xen-netback: use netdev_alloc_skb_ip_align Stephen Hemminger
2013-04-09 11:27 ` Ian Campbell
2013-04-09 23:07   ` Stephen Hemminger
2013-04-10 13:18     ` Ian Campbell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.