Lines Matching refs:tunnel_cfg
3545 struct udp_tunnel_sock_cfg tunnel_cfg; in vxlan_socket_create() local
3573 memset(&tunnel_cfg, 0, sizeof(tunnel_cfg)); in vxlan_socket_create()
3574 tunnel_cfg.sk_user_data = vs; in vxlan_socket_create()
3575 tunnel_cfg.encap_type = 1; in vxlan_socket_create()
3576 tunnel_cfg.encap_rcv = vxlan_rcv; in vxlan_socket_create()
3577 tunnel_cfg.encap_err_lookup = vxlan_err_lookup; in vxlan_socket_create()
3578 tunnel_cfg.encap_destroy = NULL; in vxlan_socket_create()
3580 tunnel_cfg.gro_receive = vxlan_gpe_gro_receive; in vxlan_socket_create()
3581 tunnel_cfg.gro_complete = vxlan_gpe_gro_complete; in vxlan_socket_create()
3583 tunnel_cfg.gro_receive = vxlan_gro_receive; in vxlan_socket_create()
3584 tunnel_cfg.gro_complete = vxlan_gro_complete; in vxlan_socket_create()
3587 setup_udp_tunnel_sock(net, sock, &tunnel_cfg); in vxlan_socket_create()