]> git.baikalelectronics.ru Git - kernel.git/commit
net: Always allocate at least 16 skb frags regardless of page size
authorAnton Blanchard <anton@samba.org>
Sun, 27 Mar 2011 14:57:26 +0000 (14:57 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 29 Mar 2011 05:26:32 +0000 (22:26 -0700)
commitea66d62a8891647a0684896b7da3c63ec8abb00f
tree7734586473abed25f7ec4b8423adbdba3d829a61
parentb48250764d33b0ba1b062f5ca27260a1c8ac43bf
net: Always allocate at least 16 skb frags regardless of page size

When analysing performance of the cxgb3 on a ppc64 box I noticed that
we weren't doing much GRO merging. It turns out we are limited by the
number of SKB frags:

#define MAX_SKB_FRAGS (65536/PAGE_SIZE + 2)

With a 4kB page size we have 18 frags, but with a 64kB page size we
only have 3 frags.

I ran a single stream TCP bandwidth test to compare the performance of

Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/skbuff.h