From nobody Sat Feb 7 15:10:48 2026 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 292A6258CED for ; Sun, 18 Jan 2026 09:40:49 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768729250; cv=none; b=TNx0H5uPjdJPje9F5tFRFfCpgysXM/qvJj2fq0jQQZCyt/OvH2MW4RhbmTqjVftY/VOMxIWjf6OvKxbVZZdWjBGzUeNpy8p0Tvp2RURU/RkbfVF7Y68cK1gGegDtV9sn2Lw6KWM2YPH/zLo9A/i/jSmM/skAmjUS1t/i0Bb6Xw8= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768729250; c=relaxed/simple; bh=bwiruXHSLfcG6Uiq/MFm7nucP99fLUNFDPbnvYAzhq0=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=sCpIvyt6kb0RXwexOjr2RQqfLAzaU1n/80xgYoctgozWiaaNxXKUy5BSGAb78Q5X5Eyw99D9GyEPmZMDogXtad/6BFN18PnZ2n6xzvpPu5f1LRgG8XSqUxM5NOHnEa1dQ+bAyECj5LB0fd+yqIayFXPn9JVOm44j3oAsBaxYYlo= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=NH6nLMRi; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="NH6nLMRi" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9F4D0C116D0; Sun, 18 Jan 2026 09:40:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1768729249; bh=bwiruXHSLfcG6Uiq/MFm7nucP99fLUNFDPbnvYAzhq0=; h=Date:From:To:Cc:Subject:From; b=NH6nLMRi2pu3DLWIBUN2DlqjiICPmfZpTlyDzaXF7MypyOy62NrxIzRrsBR8CL/be Mv+mKwaL9fuwPQ6hShujYUga6jq7XKtk1BX9UVOHiHfVV5YDhX7sOj4RhJIE694nQg YiUzYMdBu45Byr6G8yFs1QuMu/bksSu/XqTojunr0ZdTqOsLJETH1MCIzm+Qm/jnGD GrSNuj/faKLiuEtaWIps+XPnuSQEVgwy2LpvHHI5i/eI0JM5K10wZPBbPQAyKEyoDP lsOCmXbrY8nDv9nvUXovD4HAFfYL+jg/JuQ8r7vSTNNffLkgJfwSgKyQCWyTCxxnvp mrrvCn2pL5vhw== Date: Sun, 18 Jan 2026 10:40:45 +0100 From: Ingo Molnar To: Linus Torvalds Cc: linux-kernel@vger.kernel.org, Thomas Gleixner , Peter Zijlstra Subject: [GIT PULL] IRQ fix Message-ID: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Linus, Please pull the latest irq/urgent Git tree from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq-urgent-202= 6-01-18 # HEAD: f2edf797dab185cce439e5bc5185fe20dd536300 irqchip/riscv-imsic: Re= vert "Remove redundant irq_data lookups" Fix a riscv-imsic irqchip driver regression. Thanks, Ingo ------------------> Luo Haiyang (1): irqchip/riscv-imsic: Revert "Remove redundant irq_data lookups" drivers/irqchip/irq-riscv-imsic-platform.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/irqchip/irq-riscv-imsic-platform.c b/drivers/irqchip/i= rq-riscv-imsic-platform.c index 7228a33f6c37..643c8e459611 100644 --- a/drivers/irqchip/irq-riscv-imsic-platform.c +++ b/drivers/irqchip/irq-riscv-imsic-platform.c @@ -158,11 +158,11 @@ static int imsic_irq_set_affinity(struct irq_data *d,= const struct cpumask *mask tmp_vec.local_id =3D new_vec->local_id; =20 /* Point device to the temporary vector */ - imsic_msi_update_msg(d, &tmp_vec); + imsic_msi_update_msg(irq_get_irq_data(d->irq), &tmp_vec); } =20 /* Point device to the new vector */ - imsic_msi_update_msg(d, new_vec); + imsic_msi_update_msg(irq_get_irq_data(d->irq), new_vec); =20 /* Update irq descriptors with the new vector */ d->chip_data =3D new_vec;