summaryrefslogtreecommitdiff
path: root/drivers/md
diff options
context:
space:
mode:
authorMatthew Wilcox (Oracle) <willy@infradead.org>2025-10-24 19:06:51 +0100
committerThomas Gleixner <tglx@linutronix.de>2025-10-24 21:39:27 +0200
commit70e0a80a1f3580ccf5bc1f34dbb433c67d9d8d00 (patch)
treed5c79d700af727e1dca0859e5931ec48df370e0d /drivers/md
parent211ddde0823f1442e4ad052a2f30f050145ccada (diff)
downloadlinux-next-70e0a80a1f3580ccf5bc1f34dbb433c67d9d8d00.tar.gz
linux-next-70e0a80a1f3580ccf5bc1f34dbb433c67d9d8d00.zip
treewide: Remove in_irq()
This old alias for in_hardirq() has been marked as deprecated since 2020; remove the stragglers. Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Link: https://patch.msgid.link/20251024180654.1691095-1-willy@infradead.org
Diffstat (limited to 'drivers/md')
-rw-r--r--drivers/md/dm-vdo/logger.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm-vdo/logger.c b/drivers/md/dm-vdo/logger.c
index 3f7dc2cb6b98..76a987ccf926 100644
--- a/drivers/md/dm-vdo/logger.c
+++ b/drivers/md/dm-vdo/logger.c
@@ -34,7 +34,7 @@ static const char *get_current_interrupt_type(void)
if (in_nmi())
return "NMI";
- if (in_irq())
+ if (in_hardirq())
return "HI";
if (in_softirq())