[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20200714121527.3dc55a35@kicinski-fedora-pc1c0hjn.dhcp.thefacebook.com>
Date: Tue, 14 Jul 2020 12:15:27 -0700
From: Jakub Kicinski <kuba@...nel.org>
To: davem@...emloft.net
Cc: netdev@...r.kernel.org, oss-drivers@...ronome.com,
simon.horman@...ronome.com, ajit.khaparde@...adcom.com,
sriharsha.basavapatna@...adcom.com, somnath.kotur@...adcom.com,
thomas.lendacky@....com, aelior@...vell.com, skalluru@...vell.com,
vishal@...lsio.com, benve@...co.com, _govind@....com,
dchickles@...vell.com, sburla@...vell.com, fmanlunas@...vell.com,
jeffrey.t.kirsher@...el.com, anthony.l.nguyen@...el.com,
GR-everest-linux-l2@...vell.com, shshaikh@...vell.com,
manishc@...vell.com, GR-Linux-NIC-Dev@...vell.com
Subject: Re: [PATCH net-next v2 11/12] qede: convert to new udp_tunnel_nic
infra
On Tue, 14 Jul 2020 11:29:07 -0700 Jakub Kicinski wrote:
> +const struct udp_tunnel_nic_info qede_udp_tunnels_both = {
self-nak, this needs a static
Gotta make my own infra work for local patches :S
> + .sync_table = qede_udp_tunnel_sync,
> + .flags = UDP_TUNNEL_NIC_INFO_MAY_SLEEP,
> + .tables = {
> + { .n_entries = 1, .tunnel_types = UDP_TUNNEL_TYPE_VXLAN, },
> + { .n_entries = 1, .tunnel_types = UDP_TUNNEL_TYPE_GENEVE, },
> + },
> +}, qede_udp_tunnels_vxlan = {
> + .sync_table = qede_udp_tunnel_sync,
> + .flags = UDP_TUNNEL_NIC_INFO_MAY_SLEEP,
> + .tables = {
> + { .n_entries = 1, .tunnel_types = UDP_TUNNEL_TYPE_VXLAN, },
> + },
> +}, qede_udp_tunnels_geneve = {
> + .sync_table = qede_udp_tunnel_sync,
> + .flags = UDP_TUNNEL_NIC_INFO_MAY_SLEEP,
> + .tables = {
> + { .n_entries = 1, .tunnel_types = UDP_TUNNEL_TYPE_GENEVE, },
> + },
> +};
Powered by blists - more mailing lists