From nobody Tue Oct 7 02:01:56 2025 Received: from mblankhorst.nl (lankhorst.se [141.105.120.124]) (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 E807C27E052 for ; Tue, 15 Jul 2025 17:06:08 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=141.105.120.124 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1752599171; cv=none; b=U/XPRgWWTVk5rsc/mqqumWF/TqGUcmpJ4pxieox2W4egjM479EaPRX3q7Lv4Jg68YCnBP7Axl5ISPhWQJMWBPW1YZLAw3dmVlkgEF1BbumgOZqTwqhM5Td7H8x5YiprzYjYf8ujQr97cMi+LatvPFIoL1WfckP/QbZXuoW9CyH0= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1752599171; c=relaxed/simple; bh=3bn2wHNalDwZ/lSyGnuadMAEP0yF+VwohFcFdSElLQE=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=bNZgyj9zbma0nGRpld56RimozXq15fHtWk3opzs1KTobonXTYLqcMjcDNg3pTjB1WRldhjEXMzv5tKDKS/YIVN11KNnaH9ff+f4VwyEOuS1myb2ndCGucDnijyLu+U4VKmpHyMY5mJbi72BILCirb6MvoApXAoLVw7MeZznTTJU= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=lankhorst.se; spf=none smtp.mailfrom=mblankhorst.nl; arc=none smtp.client-ip=141.105.120.124 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=lankhorst.se Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=mblankhorst.nl From: Maarten Lankhorst To: Jacek Lawrynowicz , Maciej Falkowski , Oded Gabbay , Sebastian Andrzej Siewior , Clark Williams , Steven Rostedt Cc: dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org, linux-rt-devel@lists.linux.dev, Maarten Lankhorst Subject: [PATCH] accel/ivpu: Remove lockdep_assert_irqs_disabled() Date: Tue, 15 Jul 2025 18:59:19 +0200 Message-ID: <20250715165919.33754-1-dev@lankhorst.se> X-Mailer: git-send-email 2.45.2 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" This breaks on PREEMPT_RT, and should be unneeded since lockdep can track irq disabled status itself. Signed-off-by: Maarten Lankhorst Reviewed-by: Jacek Lawrynowicz --- drivers/accel/ivpu/ivpu_ipc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/accel/ivpu/ivpu_ipc.c b/drivers/accel/ivpu/ivpu_ipc.c index 39f83225c1815..5f00809d448af 100644 --- a/drivers/accel/ivpu/ivpu_ipc.c +++ b/drivers/accel/ivpu/ivpu_ipc.c @@ -141,7 +141,6 @@ ivpu_ipc_rx_msg_add(struct ivpu_device *vdev, struct iv= pu_ipc_consumer *cons, struct ivpu_ipc_rx_msg *rx_msg; =20 lockdep_assert_held(&ipc->cons_lock); - lockdep_assert_irqs_disabled(); =20 rx_msg =3D kzalloc(sizeof(*rx_msg), GFP_ATOMIC); if (!rx_msg) { --=20 2.45.2