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:	Thu, 27 Mar 2014 09:04:24 -0700
From:	Eric Dumazet <eric.dumazet@...il.com>
To:	Daniel Borkmann <dborkman@...hat.com>
Cc:	davem@...emloft.net, netdev@...r.kernel.org,
	Jesper Dangaard Brouer <brouer@...hat.com>
Subject: Re: [PATCH net-next] packet: respect devices with LLTX flag in
 direct xmit

On Thu, 2014-03-27 at 09:01 -0700, Eric Dumazet wrote:

> > +	HARD_TX_LOCK(dev, txq, smp_processor_id());
> > +	if (!netif_xmit_frozen_or_stopped(txq)) {
> > +		ret = ops->ndo_start_xmit(skb, dev);
> > +		if (ret == NETDEV_TX_OK)
> > +			txq_trans_update(txq);


> I think this is problematic.
> 
> If you have concurrent traffic going through txq, and a flood
> going through packet_direct_xmit(), the timeout will trigger on txq
> because we do no longer update txq->trans_start
> 
> So I think you should force the update
> 
> 	txq->trans_start = jiffies;

Oh well, scratch that, I missed that you did the update.



--
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

Powered by Openwall GNU/*/Linux Powered by OpenVZ