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:   Tue, 15 Dec 2020 17:53:33 -0800
From:   Jakub Kicinski <kuba@...nel.org>
To:     Wei Wang <weiwan@...gle.com>
Cc:     David Miller <davem@...emloft.net>, netdev@...r.kernel.org,
        Paolo Abeni <pabeni@...hat.com>,
        Hannes Frederic Sowa <hannes@...essinduktion.org>,
        Felix Fietkau <nbd@....name>,
        Eric Dumazet <edumazet@...gle.com>
Subject: Re: [PATCH net-next v5 2/3] net: implement threaded-able napi poll
 loop support

On Tue, 15 Dec 2020 17:25:14 -0800 Wei Wang wrote:
> +void napi_enable(struct napi_struct *n)
> +{
> +	bool locked = rtnl_is_locked();

Maybe you'll prove me wrong but I think this is never a correct
construct.

> +	BUG_ON(!test_bit(NAPI_STATE_SCHED, &n->state));
> +	smp_mb__before_atomic();
> +	clear_bit(NAPI_STATE_SCHED, &n->state);
> +	clear_bit(NAPI_STATE_NPSVC, &n->state);
> +	if (!locked)
> +		rtnl_lock();

Why do we need the lock? Can't we assume the caller of napi_enable()
has the sole ownership of the napi instance? Surely clearing the other
flags would be pretty broken as well, so the napi must had been
disabled when this is called by the driver.

> +	WARN_ON(napi_set_threaded(n, n->dev->threaded));
> +	if (!locked)
> +		rtnl_unlock();
> +}
> +EXPORT_SYMBOL(napi_enable);

Let's switch to RFC postings and get it in for 5.12 :(

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ