Re: [PATCH net-next 04/10] ice: Process TSYN IRQ in a separate function
From: Jakub Kicinski <kuba@kernel.org> Date: 2025-02-12 03:47:28
On Mon, 10 Feb 2025 11:23:42 -0800 Tony Nguyen wrote:
Simplify TSYN IRQ processing by moving it to a separate function and
having appropriate behavior per PHY model, instead of multiple
conditions not related to HW, but to specific timestamping modes.
When PTP is not enabled in the kernel, don't process timestamps and
return IRQ_HANDLED.
You also switched from spin_lock_irqsave() to bare spin_lock().
Looks safe but you should have mentioned why.