Hi, On Fri, 12 Aug 2016 11:51:07 +0800 wenxu <we...@ucloud.cn> wrote: > > And in b8247f095edd, the condition skb_iif also should be removed. > given: > ovs-internal-dev bridge with ovs-gre > > There are the same problem which the skb from local.
There's no need to remove the skb_iif criteria: For the local bridge port, we have control over its mtu. This allows setting an mtu value that takes into account the gre encapsulation performed by other member ports. By doing so, locally generated traffic (on br0) will have a proper gso_size. OTOH if packet arrives from an ingress member port (such as tap0) the packet's gso_size could have been set by another system - which is not always under our control. ( see discussion in http://www.spinics.net/lists/netdev/msg385085.html ) Regards, Shmulik