I use local APIC timer interrupts to preempt usermode tasks (ISR 123). However, I noticed that when switching to a usermode task, the CPU core that catches it deadlocks and the local APIC IRR line remains at 123. I quickly figured out that this was because RFLAGS did not have the IF bit set after switching tasks, but I'm not sure what's wrong with my code.
The local APIC interrupt handler does the EOI for the local APIC first, then jumps to the IRQ handler. If the request came from usermode, a reschedule test is performed, and if the process is out of its timeslice it is preempted.
However, this usermode process gets preempted multiple times on BSP, but not when any other core catches it. I'm confused on why it's working on BSP but not other cores.
Any help is appreciated. Codebase link: https://github.com/sasdallas/Hexahedron (feel free to rip into me
