[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <1409050530.3173.12.camel@edumazet-glaptop2.roam.corp.google.com>
Date: Tue, 26 Aug 2014 03:55:30 -0700
From: Eric Dumazet <eric.dumazet@...il.com>
To: David Laight <David.Laight@...LAB.COM>
Cc: 'Arnd Bergmann' <arnd@...db.de>,
"linux-arm-kernel@...ts.infradead.org"
<linux-arm-kernel@...ts.infradead.org>,
Jonas Jensen <jonas.jensen@...il.com>,
"netdev@...r.kernel.org" <netdev@...r.kernel.org>,
"f.fainelli@...il.com" <f.fainelli@...il.com>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
"mirqus@...il.com" <mirqus@...il.com>,
"davem@...emloft.net" <davem@...emloft.net>
Subject: RE: [PATCH v6 2/4] net: moxa: replace build_skb() with
netdev_alloc_skb_ip_align() / memcpy()
On Tue, 2014-08-26 at 09:10 +0000, David Laight wrote:
> From: Arnd Bergmann
> > While this seems correct, I wonder why you don't do the normal approach of
> > dequeuing the skb from the chain and adding a newly allocated skb to it to
> > save the memcpy.
>
> Because the receive buffer area isn't made of skbs.
> Post-allocating the skb also reduces the 'true size' of the skb.
This strategy assumes this is not a 10Gbe NIC.
We try to avoid copies because they are generally not needed.
Wifi devices are usually slow, and packet losses are more frequent, so
the copybreak gives better chance to not doing the collapses [1] later
in the TCP stack.
[1] collapses : reducing skb overhead (skb->len / skb->truesize ratio)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists