From: Hannes Frederic Sowa <han...@stressinduktion.org> Date: Fri, 8 Apr 2016 22:55:01 +0200
> @@ -1053,7 +1052,9 @@ static void __vxlan_sock_release(struct vxlan_sock *vs) > vxlan_notify_del_rx_port(vs); > spin_unlock(&vn->sock_lock); > > - queue_work(vxlan_wq, &vs->del_work); > + synchronize_net(); > + udp_tunnel_sock_release(vs->sock); > + kfree(vs); > } > > static void vxlan_sock_release(struct vxlan_dev *vxlan) I just want to make sure you saw this change in net-next: ==================== commit ca065d0cf80fa547724440a8bf37f1e674d917c0 Author: Eric Dumazet <eduma...@google.com> Date: Fri Apr 1 08:52:13 2016 -0700 udp: no longer use SLAB_DESTROY_BY_RCU ==================== Does that effect your change?