Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Conflicts: net/ipv6/xfrm6_output.c net/openvswitch/flow_netlink.c net/openvswitch/vport-gre.c net/openvswitch/vport-vxlan.c net/openvswitch/vport.c net/openvswitch/vport.h The openvswitch conflicts were overlapping changes. One was the egress tunnel info fix in 'net' and the other was the vport ->send() op simplification in 'net-next'. The xfrm6_output.c conflicts was also a simplification overlapping a bug fix. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
@@ -489,9 +489,8 @@ static int queue_userspace_packet(struct datapath *dp, struct sk_buff *skb,
|
||||
|
||||
if (upcall_info->egress_tun_info) {
|
||||
nla = nla_nest_start(user_skb, OVS_PACKET_ATTR_EGRESS_TUN_KEY);
|
||||
err = ovs_nla_put_egress_tunnel_key(user_skb,
|
||||
upcall_info->egress_tun_info,
|
||||
upcall_info->egress_tun_opts);
|
||||
err = ovs_nla_put_tunnel_info(user_skb,
|
||||
upcall_info->egress_tun_info);
|
||||
BUG_ON(err);
|
||||
nla_nest_end(user_skb, nla);
|
||||
}
|
||||
|
Reference in New Issue
Block a user