It's possible that packets that are sent on internal devices (from the OVS perspective) have already traversed the local IP stack. After they go through the internal device, they will again travel through the IP stack which may get confused by the presence of existing information in the skb. This clears out that information to avoid problems but deliberately leaves other metadata alone. This is to provide maximum flexibility in chaining together OVS and other Linux components.
Bug #10995 Signed-off-by: Jesse Gross <je...@nicira.com> --- datapath/vport-internal_dev.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/datapath/vport-internal_dev.c b/datapath/vport-internal_dev.c index af7fe649..aaed45e 100644 --- a/datapath/vport-internal_dev.c +++ b/datapath/vport-internal_dev.c @@ -25,6 +25,8 @@ #include <linux/skbuff.h> #include <linux/version.h> +#include <net/xfrm.h> + #include "checksum.h" #include "datapath.h" #include "vlan.h" @@ -289,6 +291,11 @@ static int internal_dev_recv(struct vport *vport, struct sk_buff *skb) #endif len = skb->len; + + skb_dst_drop(skb); + nf_reset(skb); + secpath_reset(skb); + skb->dev = netdev; skb->pkt_type = PACKET_HOST; skb->protocol = eth_type_trans(skb, netdev); -- 1.7.9.5 _______________________________________________ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev