Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9cfecbba authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "ARM: gic-v3: Log the IRQs in RTB before handling an IRQ"

parents 823dd616 ae871193
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -380,6 +380,7 @@ static asmlinkage void __exception_irq_entry gic_handle_irq(struct pt_regs *regs

		if (likely(irqnr > 15 && irqnr < 1020)) {
			int err;
			uncached_logk(LOGK_IRQ, (void *)(uintptr_t)irqnr);
			err = handle_domain_irq(gic_data.domain, irqnr, regs);
			if (err) {
				WARN_ONCE(true, "Unexpected SPI received!\n");
@@ -388,6 +389,7 @@ static asmlinkage void __exception_irq_entry gic_handle_irq(struct pt_regs *regs
			continue;
		}
		if (irqnr < 16) {
			uncached_logk(LOGK_IRQ, (void *)(uintptr_t)irqnr);
			gic_write_eoir(irqnr);
#ifdef CONFIG_SMP
			handle_IPI(irqnr, regs);