diff options
author | Maarten Lankhorst <dev@lankhorst.se> | 2025-07-16 12:56:36 +0200 |
---|---|---|
committer | Maarten Lankhorst <dev@lankhorst.se> | 2025-07-22 10:26:37 +0200 |
commit | ac6e050e69811c5c2057d519362c7b173a915542 (patch) | |
tree | 103e27623df398830b5759eee451409c3c5e1837 | |
parent | 9b3700b15cb581d748c3d46e7eb30ffced1642e8 (diff) |
accel/ivpu: Remove lockdep_assert_irqs_disabled()
This breaks on PREEMPT_RT, and should be unneeded since
lockdep can track irq disabled status itself.
Link: https://lore.kernel.org/r/20250715165919.33754-1-dev@lankhorst.se
Reviewed-by: Jacek Lawrynowicz <jacek.lawrynowicz@linux.intel.com>
Signed-off-by: Maarten Lankhorst <dev@lankhorst.se>
-rw-r--r-- | drivers/accel/ivpu/ivpu_ipc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/accel/ivpu/ivpu_ipc.c b/drivers/accel/ivpu/ivpu_ipc.c index 39f83225c181..5f00809d448a 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 ivpu_ipc_consumer *cons, struct ivpu_ipc_rx_msg *rx_msg; lockdep_assert_held(&ipc->cons_lock); - lockdep_assert_irqs_disabled(); rx_msg = kzalloc(sizeof(*rx_msg), GFP_ATOMIC); if (!rx_msg) { |