On 18/02/2015 12:56, Pavel Dovgalyuk wrote: > if (interrupt_request & CPU_INTERRUPT_POLL) { > cs->interrupt_request &= ~CPU_INTERRUPT_POLL; > apic_poll_irq(cpu->apic_state); > + /* Process one interrupt for a single call. > + In record/replay mode each call to this function > + is coupled with an event in the log */ > + if (replay_mode != REPLAY_MODE_NONE) { > + return true; > + }
Is it okay to just return true always, even outside replay mode? If so, make it a separate patch. Paolo