net: don't reallocate skb->head unless the current one hasn't the needed extra size...
authorChangli Gao <xiaosuo@gmail.com>
Mon, 29 Nov 2010 22:48:46 +0000 (22:48 +0000)
committerDavid S. Miller <davem@davemloft.net>
Fri, 3 Dec 2010 18:59:47 +0000 (10:59 -0800)
skb head being allocated by kmalloc(), it might be larger than what
actually requested because of discrete kmem caches sizes. Before
reallocating a new skb head, check if the current one has the needed
extra size.

Do this check only if skb head is not shared.

Signed-off-by: Changli Gao <xiaosuo@gmail.com>
Cc: Eric Dumazet <eric.dumazet@gmail.com>
Acked-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

No differences found