Commit 1143637f authored by Changbin Du's avatar Changbin Du Committed by Greg Kroah-Hartman

tty: replace in_irq() with in_hardirq()

Replace the obsolete and ambiguos macro in_irq() with new
macro in_hardirq().
Reviewed-by: default avatarJiri Slaby <jirislaby@kernel.org>
Signed-off-by: default avatarChangbin Du <changbin.du@gmail.com>
Link: https://lore.kernel.org/r/20210814005033.2381-1-changbin.du@gmail.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 87b8061b
...@@ -258,7 +258,7 @@ static void sysrq_handle_showallcpus(int key) ...@@ -258,7 +258,7 @@ static void sysrq_handle_showallcpus(int key)
if (!trigger_all_cpu_backtrace()) { if (!trigger_all_cpu_backtrace()) {
struct pt_regs *regs = NULL; struct pt_regs *regs = NULL;
if (in_irq()) if (in_hardirq())
regs = get_irq_regs(); regs = get_irq_regs();
if (regs) { if (regs) {
pr_info("CPU%d:\n", smp_processor_id()); pr_info("CPU%d:\n", smp_processor_id());
...@@ -280,7 +280,7 @@ static void sysrq_handle_showregs(int key) ...@@ -280,7 +280,7 @@ static void sysrq_handle_showregs(int key)
{ {
struct pt_regs *regs = NULL; struct pt_regs *regs = NULL;
if (in_irq()) if (in_hardirq())
regs = get_irq_regs(); regs = get_irq_regs();
if (regs) if (regs)
show_regs(regs); show_regs(regs);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment