From nobody Mon Feb 9 14:38:38 2026 Received: from galois.linutronix.de (Galois.linutronix.de [193.142.43.55]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 3E5D434D4E4 for ; Wed, 28 Jan 2026 09:55:48 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=193.142.43.55 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1769594150; cv=none; b=OXKZ64iv0JClPLGNf5X5n4Fg6gDzmDvF6Lfg85NIjAZm+ahdhK8A4NjRF7wI4+60Qht6vNwKXVHh1MSDHsfB/H69Q3jluoeFRzVw78Gj6HKfbE8a0kcJ5QQQtH3lmU8jZ3K5JX4oGBxkYSMWRmMYbhMsGVWJ7xjYgBMti2ILfik= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1769594150; c=relaxed/simple; bh=0T9YK4QomM3Dxh1mFq3uLRSslv3jN/qUBwVPAGAXrcQ=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=ScxI5zloOWJGQ+Bvsmaj41VSIhbQwm1PhFQ7fHOsULombLPfUVRFppLVLpiApKu36fK5Jy0UrxKVXAY10c3MBivzm9GJgbI3qXesupIfKfmsUjnQxKv4hmLC5cyzJaKyynSGoh1CSI8RHLyPTMZGrT4DshAu/DbvAKwASGRckSY= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linutronix.de; spf=pass smtp.mailfrom=linutronix.de; dkim=pass (2048-bit key) header.d=linutronix.de header.i=@linutronix.de header.b=LBPelqJ2; dkim=permerror (0-bit key) header.d=linutronix.de header.i=@linutronix.de header.b=qAjwIFS3; arc=none smtp.client-ip=193.142.43.55 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linutronix.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linutronix.de Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=linutronix.de header.i=@linutronix.de header.b="LBPelqJ2"; dkim=permerror (0-bit key) header.d=linutronix.de header.i=@linutronix.de header.b="qAjwIFS3" From: Sebastian Andrzej Siewior DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1769594147; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=5CblLaGRlYRdZTje1I1cOH83wRmRSkpl00w4rAJW+2c=; b=LBPelqJ2GAJ4BzYpe5PwQ4Kf17R10YbImjpGF21o/5uqJEolVK2aDU1nhnqrZBRK74VL2q Z4ao9hOG6MIxFk9a3AGd6MxZRWTstEwgybEkZyEEO8QtnUqxf1tq/Z5RZz8RHM/BdxRrh/ IfM23H7ZhWDgwZ9zYWMxm0o9nGuPGM7/r8petr7vKtXiQf1Tusex6eZx2s73DFYq2Y0hgh VTrpLr81/JXSBkxb0aTGQjNqZSoAekSLl4vwYuwNyk7OLsCbngx1J3iLPiH5JxDLZo6DVW nv/MPWVbZe1EyPl2I0u+b9054TS3TXv7gj+tXXA62jsSAoat18zA6bychf16HA== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1769594147; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=5CblLaGRlYRdZTje1I1cOH83wRmRSkpl00w4rAJW+2c=; b=qAjwIFS33z0XPrRbGB4HzRLlCS32vZVmWt6qL3MKLu+IQ2gyfTqTB30xqcnggq74vpWW0O qo361zBfNW8HxKBQ== To: linux-kernel@vger.kernel.org Cc: "Thomas Gleixner" , Sebastian Andrzej Siewior Subject: [PATCH v2 01/20] genirq: Set IRQF_COND_ONESHOT in devm_request_irq(). Date: Wed, 28 Jan 2026 10:55:21 +0100 Message-ID: <20260128095540.863589-2-bigeasy@linutronix.de> In-Reply-To: <20260128095540.863589-1-bigeasy@linutronix.de> References: <20260128095540.863589-1-bigeasy@linutronix.de> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" The flag IRQF_COND_ONESHOT was already force-added to request_irq() because the ACPI SCI interrupt handler is using the ONESHOT and it breaks all shared handler. devm_request_irq() needs the same change since some users, such as int0002_vgpio, are using this function instead. Add IRQF_COND_ONESHOT to flags passed to devm_request_irq(). Fixes: c37927a203fa2 ("genirq: Set IRQF_COND_ONESHOT in request_irq()") Signed-off-by: Sebastian Andrzej Siewior --- include/linux/interrupt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h index 266f2b39213a0..b2bb878abd113 100644 --- a/include/linux/interrupt.h +++ b/include/linux/interrupt.h @@ -228,7 +228,7 @@ static inline int __must_check devm_request_irq(struct device *dev, unsigned int irq, irq_handler_t handl= er, unsigned long irqflags, const char *devname, void *dev_id) { - return devm_request_threaded_irq(dev, irq, handler, NULL, irqflags, + return devm_request_threaded_irq(dev, irq, handler, NULL, irqflags | IRQF= _COND_ONESHOT, devname, dev_id); } =20 --=20 2.51.0