]> git.baikalelectronics.ru Git - kernel.git/commit
net: Add ndo_gso_check
authorTom Herbert <therbert@google.com>
Tue, 14 Oct 2014 22:19:06 +0000 (15:19 -0700)
committerDavid S. Miller <davem@davemloft.net>
Wed, 15 Oct 2014 16:11:00 +0000 (12:11 -0400)
commit241beb5262c6b21bf28e9fce747a8cc0add48e01
treefd5367f3d55fad3b3b9b33a378b9cf4d1eb2298b
parent3096be98a93b9357d6419e259a74660274c2ad40
net: Add ndo_gso_check

Add ndo_gso_check which a device can define to indicate whether is
is capable of doing GSO on a packet. This funciton would be called from
the stack to determine whether software GSO is needed to be done. A
driver should populate this function if it advertises GSO types for
which there are combinations that it wouldn't be able to handle. For
instance a device that performs UDP tunneling might only implement
support for transparent Ethernet bridging type of inner packets
or might have limitations on lengths of inner headers.

Signed-off-by: Tom Herbert <therbert@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/macvtap.c
drivers/net/xen-netfront.c
include/linux/netdevice.h
net/core/dev.c