Commit 624d84cf authored by Avi Kivity's avatar Avi Kivity
Browse files

KVM: cpu_relax() during spin waiting for reboot



It doesn't really matter, but if we spin, we should spin in a more relaxed
manner.  This way, if something goes wrong at least it won't contribute to
global warming.

Signed-off-by: default avatarAvi Kivity <avi@redhat.com>
Signed-off-by: default avatarMarcelo Tosatti <mtosatti@redhat.com>
parent 49e9d557
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2022,7 +2022,7 @@ asmlinkage void kvm_handle_fault_on_reboot(void)
		/* spin while reset goes on */
		local_irq_enable();
		while (true)
			;
			cpu_relax();
	}
	/* Fault while not rebooting.  We want the trace. */
	BUG();