say I have some code as follows:
local_irq_disable();... // some interrupts come during this timelocal_irq_enable();
after I called local_irq_enable(), all interrupts blocked(pending interrupts) are still there & cause the cpu to respond.Is there anything will clear pending interrupts?my code runs on an ARM aarch64 machine.