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] [thread-next>] [day] [month] [year] [list]
Date:	Mon, 06 Jul 2015 17:19:59 -0700
From:	Alexei Starovoitov <ast@...mgrid.com>
To:	Eric Dumazet <eric.dumazet@...il.com>,
	David Miller <davem@...emloft.net>
CC:	netdev <netdev@...r.kernel.org>,
	Jamal Hadi Salim <jhs@...atatu.com>,
	John Fastabend <john.fastabend@...il.com>
Subject: Re: [PATCH net-next] ifb: add multiqueue operation

On 7/6/15 1:05 PM, Eric Dumazet wrote:
> Add multiqueue capabilities to ifb netdevice.
>
> This removes last bottleneck for ingress when mq qdisc can be used
> to shard load from multiple RX queues on physical device.
...
> Signed-off-by: Eric Dumazet<edumazet@...gle.com>
> Cc: Alexei Starovoitov<ast@...mgrid.com>
> Cc: Jamal Hadi Salim<jhs@...atatu.com>
> Cc: John Fastabend<john.fastabend@...il.com>
> ---
>   drivers/net/ifb.c |  207 +++++++++++++++++++++++++-------------------
>   1 file changed, 120 insertions(+), 87 deletions(-)
...
> -struct ifb_private {
> +struct ifb_q_private {
...
> -};
> +} ____cacheline_aligned_in_smp;
...
> +static int ifb_dev_init(struct net_device *dev)
> +{
> +	struct ifb_dev_private *dp = netdev_priv(dev);
> +	struct ifb_q_private *txp;
> +	int i;
> +
> +	txp = kcalloc(dev->num_tx_queues, sizeof(*txp), GFP_KERNEL);
...
>   static netdev_tx_t ifb_xmit(struct sk_buff *skb, struct net_device *dev)
>   {
> -	struct ifb_private *dp = netdev_priv(dev);
> +	struct ifb_dev_private *dp = netdev_priv(dev);
>   	u32 from = G_TC_FROM(skb->tc_verd);
> +	struct ifb_q_private *txp = dp->tx_private + skb_get_queue_mapping(skb);

All makes sense. Nicely done!
Acked-by: Alexei Starovoitov <ast@...mgrid.com>

--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists