]> git.baikalelectronics.ru Git - kernel.git/commit
net: adjust skb_gso_segment() for calling in rx path
authorCong Wang <amwang@redhat.com>
Tue, 5 Feb 2013 16:36:38 +0000 (16:36 +0000)
committerDavid S. Miller <davem@davemloft.net>
Wed, 6 Feb 2013 20:58:00 +0000 (15:58 -0500)
commita71cab15f6b8cf19a5c3ee9aa7e1d3ffc18644af
tree132aecb3e4a78707552a0ddf4d4618734af47efa
parent150b113b7077044e43d23442dedbda43087e83eb
net: adjust skb_gso_segment() for calling in rx path

skb_gso_segment() is almost always called in tx path,
except for openvswitch. It calls this function when
it receives the packet and tries to queue it to user-space.
In this special case, the ->ip_summed check inside
skb_gso_segment() is no longer true, as ->ip_summed value
has different meanings on rx path.

This patch adjusts skb_gso_segment() so that we can at least
avoid such warnings on checksum.

Cc: Jesse Gross <jesse@nicira.com>
Cc: David S. Miller <davem@davemloft.net>
Signed-off-by: Cong Wang <amwang@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/netdevice.h
net/core/dev.c
net/openvswitch/datapath.c