mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-09 18:44:58 -06:00
accel/kvm: Fix two lines with hard-coded tabs
In kvm-all.c, two lines have been accidentally indented with hard-coded tabs rather than spaces. Normalise to match the rest of the file. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Zhao Liu <zhao1.liu@intel.com> Message-ID: <20240531170952.505323-1-peter.maydell@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
This commit is contained in:
parent
eeb6198ee8
commit
a128c309c9
1 changed files with 2 additions and 2 deletions
|
@ -2893,7 +2893,7 @@ int kvm_convert_memory(hwaddr start, hwaddr size, bool to_private)
|
||||||
!memory_region_is_ram_device(mr) &&
|
!memory_region_is_ram_device(mr) &&
|
||||||
!memory_region_is_rom(mr) &&
|
!memory_region_is_rom(mr) &&
|
||||||
!memory_region_is_romd(mr)) {
|
!memory_region_is_romd(mr)) {
|
||||||
ret = 0;
|
ret = 0;
|
||||||
} else {
|
} else {
|
||||||
error_report("Convert non guest_memfd backed memory region "
|
error_report("Convert non guest_memfd backed memory region "
|
||||||
"(0x%"HWADDR_PRIx" ,+ 0x%"HWADDR_PRIx") to %s",
|
"(0x%"HWADDR_PRIx" ,+ 0x%"HWADDR_PRIx") to %s",
|
||||||
|
@ -2964,7 +2964,7 @@ int kvm_cpu_exec(CPUState *cpu)
|
||||||
|
|
||||||
kvm_arch_pre_run(cpu, run);
|
kvm_arch_pre_run(cpu, run);
|
||||||
if (qatomic_read(&cpu->exit_request)) {
|
if (qatomic_read(&cpu->exit_request)) {
|
||||||
trace_kvm_interrupt_exit_request();
|
trace_kvm_interrupt_exit_request();
|
||||||
/*
|
/*
|
||||||
* KVM requires us to reenter the kernel after IO exits to complete
|
* KVM requires us to reenter the kernel after IO exits to complete
|
||||||
* instruction emulation. This self-signal will ensure that we
|
* instruction emulation. This self-signal will ensure that we
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue