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]
Message-ID: <20250331142557.3e454470@kernel.org>
Date: Mon, 31 Mar 2025 14:25:57 -0700
From: Jakub Kicinski <kuba@...nel.org>
To: Moon Yeounsu <yyyynoom@...il.com>
Cc: Andrew Lunn <andrew+netdev@...n.ch>, "David S. Miller"
 <davem@...emloft.net>, Eric Dumazet <edumazet@...gle.com>, Paolo Abeni
 <pabeni@...hat.com>, netdev@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH net-next v5] net: dlink: add support for reporting stats
 via `ethtool -S` and `ip -s -s link show`

On Tue, 1 Apr 2025 01:40:19 +0900 Moon Yeounsu wrote:
> On Tue, Dec 10, 2024 at 07:15:19PM -0800, Jakub Kicinski wrote:
> > On Mon,  9 Dec 2024 18:28:27 +0900 Moon Yeounsu wrote:  
> > > +	unsigned long flags;
> > > +
> > > +	spin_lock_irqsave(&np->stats_lock, flags);  
> > 
> > I believe spin_lock_bh() is sufficient here, no need to save IRQ flags.
> >  
> 
> Anyway, base on what I have learned, I believe `spin_lock_irq()`
> should be used in this context instead of `spin_lock_bh()`.
> 
> The reason is that the `get_stats()` function can be called from
> an interrupt context (in the top-half).
> 
> If my understanding is correct, calling `spin_lock_bh()` in the
> top-half may lead to a deadlock.
> 
> The calling sequence is as follows:
> 	1. `rio_interrupt()` (registered via `request_irq()`)
> 	2. `rio_error()`
> 	3. `get_stats()`

Makes sense, please document this in the commit message for v6.

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ