lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
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

Powered by Openwall GNU/*/Linux Powered by OpenVZ