]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[INET]: Fix truesize setting in ip_append_data
authorHerbert Xu <herbert@gondor.apana.org.au>
Wed, 23 Jan 2008 06:39:26 +0000 (22:39 -0800)
committerDavid S. Miller <davem@davemloft.net>
Wed, 23 Jan 2008 11:11:43 +0000 (03:11 -0800)
As it is ip_append_data only counts page fragments to the skb that
allocated it.  As such it means that the first skb gets hit with a
4K charge even though it might have only used a fraction of it while
all subsequent skb's that use the same page gets away with no charge
at all.

This bug was exposed by the UDP accounting patch.

[ The wmem_alloc bumping needs to be moved with the truesize,
  noticed by Takahiro Yasui.  -DaveM ]

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>

No differences found