]> bbs.cooldavid.org Git - net-next-2.6.git/commit - include/linux/netdevice.h
[NET]: Add per-connection option to set max TSO frame size
authorPeter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Fri, 21 Mar 2008 10:43:19 +0000 (03:43 -0700)
committerDavid S. Miller <davem@davemloft.net>
Fri, 21 Mar 2008 10:43:19 +0000 (03:43 -0700)
commit82cc1a7a56872056af0ead6c7d695aa223f36695
tree0891cf854a40cac90fc4fec3bd6b5ecb213d4452
parenta25606c845856e5ca5ed54d23cab077e3a49bf10
[NET]: Add per-connection option to set max TSO frame size

Update: My mailer ate one of Jarek's feedback mails...  Fixed the
parameter in netif_set_gso_max_size() to be u32, not u16.  Fixed the
whitespace issue due to a patch import botch.  Changed the types from
u32 to unsigned int to be more consistent with other variables in the
area.  Also brought the patch up to the latest net-2.6.26 tree.

Update: Made gso_max_size container 32 bits, not 16.  Moved the
location of gso_max_size within netdev to be less hotpath.  Made more
consistent names between the sock and netdev layers, and added a
define for the max GSO size.

Update: Respun for net-2.6.26 tree.

Update: changed max_gso_frame_size and sk_gso_max_size from signed to
unsigned - thanks Stephen!

This patch adds the ability for device drivers to control the size of
the TSO frames being sent to them, per TCP connection.  By setting the
netdevice's gso_max_size value, the socket layer will set the GSO
frame size based on that value.  This will propogate into the TCP
layer, and send TSO's of that size to the hardware.

This can be desirable to help tune the bursty nature of TSO on a
per-adapter basis, where one may have 1 GbE and 10 GbE devices
coexisting in a system, one running multiqueue and the other not, etc.

This can also be desirable for devices that cannot support full 64 KB
TSO's, but still want to benefit from some level of segmentation
offloading.

Signed-off-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/netdevice.h
include/net/sock.h
net/core/dev.c
net/core/sock.c
net/ipv4/tcp_output.c