Loading drivers/net/geneve.c +13 −6 Original line number Original line Diff line number Diff line Loading @@ -1016,16 +1016,22 @@ static struct device_type geneve_type = { * supply the listening GENEVE udp ports. Callers are expected * supply the listening GENEVE udp ports. Callers are expected * to implement the ndo_udp_tunnel_add. * to implement the ndo_udp_tunnel_add. */ */ static void geneve_push_rx_ports(struct net_device *dev) static void geneve_offload_rx_ports(struct net_device *dev, bool push) { { struct net *net = dev_net(dev); struct net *net = dev_net(dev); struct geneve_net *gn = net_generic(net, geneve_net_id); struct geneve_net *gn = net_generic(net, geneve_net_id); struct geneve_sock *gs; struct geneve_sock *gs; rcu_read_lock(); rcu_read_lock(); list_for_each_entry_rcu(gs, &gn->sock_list, list) list_for_each_entry_rcu(gs, &gn->sock_list, list) { if (push) { udp_tunnel_push_rx_port(dev, gs->sock, udp_tunnel_push_rx_port(dev, gs->sock, UDP_TUNNEL_TYPE_GENEVE); UDP_TUNNEL_TYPE_GENEVE); } else { udp_tunnel_drop_rx_port(dev, gs->sock, UDP_TUNNEL_TYPE_GENEVE); } } rcu_read_unlock(); rcu_read_unlock(); } } Loading Loading @@ -1560,8 +1566,9 @@ static int geneve_netdevice_event(struct notifier_block *unused, { { struct net_device *dev = netdev_notifier_info_to_dev(ptr); struct net_device *dev = netdev_notifier_info_to_dev(ptr); if (event == NETDEV_UDP_TUNNEL_PUSH_INFO) if (event == NETDEV_UDP_TUNNEL_PUSH_INFO || geneve_push_rx_ports(dev); event == NETDEV_UDP_TUNNEL_DROP_INFO) geneve_offload_rx_ports(dev, event == NETDEV_UDP_TUNNEL_PUSH_INFO); return NOTIFY_DONE; return NOTIFY_DONE; } } Loading drivers/net/vxlan.c +17 −8 Original line number Original line Diff line number Diff line Loading @@ -2608,7 +2608,7 @@ static struct device_type vxlan_type = { * supply the listening VXLAN udp ports. Callers are expected * supply the listening VXLAN udp ports. Callers are expected * to implement the ndo_udp_tunnel_add. * to implement the ndo_udp_tunnel_add. */ */ static void vxlan_push_rx_ports(struct net_device *dev) static void vxlan_offload_rx_ports(struct net_device *dev, bool push) { { struct vxlan_sock *vs; struct vxlan_sock *vs; struct net *net = dev_net(dev); struct net *net = dev_net(dev); Loading @@ -2617,11 +2617,19 @@ static void vxlan_push_rx_ports(struct net_device *dev) spin_lock(&vn->sock_lock); spin_lock(&vn->sock_lock); for (i = 0; i < PORT_HASH_SIZE; ++i) { for (i = 0; i < PORT_HASH_SIZE; ++i) { hlist_for_each_entry_rcu(vs, &vn->sock_list[i], hlist) hlist_for_each_entry_rcu(vs, &vn->sock_list[i], hlist) { udp_tunnel_push_rx_port(dev, vs->sock, unsigned short type; (vs->flags & VXLAN_F_GPE) ? UDP_TUNNEL_TYPE_VXLAN_GPE : if (vs->flags & VXLAN_F_GPE) UDP_TUNNEL_TYPE_VXLAN); type = UDP_TUNNEL_TYPE_VXLAN_GPE; else type = UDP_TUNNEL_TYPE_VXLAN; if (push) udp_tunnel_push_rx_port(dev, vs->sock, type); else udp_tunnel_drop_rx_port(dev, vs->sock, type); } } } spin_unlock(&vn->sock_lock); spin_unlock(&vn->sock_lock); } } Loading Loading @@ -3632,8 +3640,9 @@ static int vxlan_netdevice_event(struct notifier_block *unused, if (event == NETDEV_UNREGISTER) if (event == NETDEV_UNREGISTER) vxlan_handle_lowerdev_unregister(vn, dev); vxlan_handle_lowerdev_unregister(vn, dev); else if (event == NETDEV_UDP_TUNNEL_PUSH_INFO) else if (event == NETDEV_UDP_TUNNEL_PUSH_INFO || vxlan_push_rx_ports(dev); event == NETDEV_UDP_TUNNEL_DROP_INFO) vxlan_offload_rx_ports(dev, event == NETDEV_UDP_TUNNEL_PUSH_INFO); return NOTIFY_DONE; return NOTIFY_DONE; } } Loading Loading
drivers/net/geneve.c +13 −6 Original line number Original line Diff line number Diff line Loading @@ -1016,16 +1016,22 @@ static struct device_type geneve_type = { * supply the listening GENEVE udp ports. Callers are expected * supply the listening GENEVE udp ports. Callers are expected * to implement the ndo_udp_tunnel_add. * to implement the ndo_udp_tunnel_add. */ */ static void geneve_push_rx_ports(struct net_device *dev) static void geneve_offload_rx_ports(struct net_device *dev, bool push) { { struct net *net = dev_net(dev); struct net *net = dev_net(dev); struct geneve_net *gn = net_generic(net, geneve_net_id); struct geneve_net *gn = net_generic(net, geneve_net_id); struct geneve_sock *gs; struct geneve_sock *gs; rcu_read_lock(); rcu_read_lock(); list_for_each_entry_rcu(gs, &gn->sock_list, list) list_for_each_entry_rcu(gs, &gn->sock_list, list) { if (push) { udp_tunnel_push_rx_port(dev, gs->sock, udp_tunnel_push_rx_port(dev, gs->sock, UDP_TUNNEL_TYPE_GENEVE); UDP_TUNNEL_TYPE_GENEVE); } else { udp_tunnel_drop_rx_port(dev, gs->sock, UDP_TUNNEL_TYPE_GENEVE); } } rcu_read_unlock(); rcu_read_unlock(); } } Loading Loading @@ -1560,8 +1566,9 @@ static int geneve_netdevice_event(struct notifier_block *unused, { { struct net_device *dev = netdev_notifier_info_to_dev(ptr); struct net_device *dev = netdev_notifier_info_to_dev(ptr); if (event == NETDEV_UDP_TUNNEL_PUSH_INFO) if (event == NETDEV_UDP_TUNNEL_PUSH_INFO || geneve_push_rx_ports(dev); event == NETDEV_UDP_TUNNEL_DROP_INFO) geneve_offload_rx_ports(dev, event == NETDEV_UDP_TUNNEL_PUSH_INFO); return NOTIFY_DONE; return NOTIFY_DONE; } } Loading
drivers/net/vxlan.c +17 −8 Original line number Original line Diff line number Diff line Loading @@ -2608,7 +2608,7 @@ static struct device_type vxlan_type = { * supply the listening VXLAN udp ports. Callers are expected * supply the listening VXLAN udp ports. Callers are expected * to implement the ndo_udp_tunnel_add. * to implement the ndo_udp_tunnel_add. */ */ static void vxlan_push_rx_ports(struct net_device *dev) static void vxlan_offload_rx_ports(struct net_device *dev, bool push) { { struct vxlan_sock *vs; struct vxlan_sock *vs; struct net *net = dev_net(dev); struct net *net = dev_net(dev); Loading @@ -2617,11 +2617,19 @@ static void vxlan_push_rx_ports(struct net_device *dev) spin_lock(&vn->sock_lock); spin_lock(&vn->sock_lock); for (i = 0; i < PORT_HASH_SIZE; ++i) { for (i = 0; i < PORT_HASH_SIZE; ++i) { hlist_for_each_entry_rcu(vs, &vn->sock_list[i], hlist) hlist_for_each_entry_rcu(vs, &vn->sock_list[i], hlist) { udp_tunnel_push_rx_port(dev, vs->sock, unsigned short type; (vs->flags & VXLAN_F_GPE) ? UDP_TUNNEL_TYPE_VXLAN_GPE : if (vs->flags & VXLAN_F_GPE) UDP_TUNNEL_TYPE_VXLAN); type = UDP_TUNNEL_TYPE_VXLAN_GPE; else type = UDP_TUNNEL_TYPE_VXLAN; if (push) udp_tunnel_push_rx_port(dev, vs->sock, type); else udp_tunnel_drop_rx_port(dev, vs->sock, type); } } } spin_unlock(&vn->sock_lock); spin_unlock(&vn->sock_lock); } } Loading Loading @@ -3632,8 +3640,9 @@ static int vxlan_netdevice_event(struct notifier_block *unused, if (event == NETDEV_UNREGISTER) if (event == NETDEV_UNREGISTER) vxlan_handle_lowerdev_unregister(vn, dev); vxlan_handle_lowerdev_unregister(vn, dev); else if (event == NETDEV_UDP_TUNNEL_PUSH_INFO) else if (event == NETDEV_UDP_TUNNEL_PUSH_INFO || vxlan_push_rx_ports(dev); event == NETDEV_UDP_TUNNEL_DROP_INFO) vxlan_offload_rx_ports(dev, event == NETDEV_UDP_TUNNEL_PUSH_INFO); return NOTIFY_DONE; return NOTIFY_DONE; } } Loading