[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-ppc] [PULL 08/26] migration: ensure htab_save_first completes afte
From: |
David Gibson |
Subject: |
[Qemu-ppc] [PULL 08/26] migration: ensure htab_save_first completes after timeout |
Date: |
Thu, 18 Feb 2016 15:18:29 +1100 |
htab_save_first_pass could return without finishing its work due to
timeout. The patch checks if another invocation of it is necessary and
will call it in htab_save_complete if necessary.
Signed-off-by: Jianjun Duan <address@hidden>
Reviewed-by: Michael Roth <address@hidden>
[removed overlong line]
Signed-off-by: David Gibson <address@hidden>
---
hw/ppc/spapr.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c
index c85a125..276d6b4 100644
--- a/hw/ppc/spapr.c
+++ b/hw/ppc/spapr.c
@@ -1312,6 +1312,7 @@ static int htab_save_setup(QEMUFile *f, void *opaque)
static void htab_save_first_pass(QEMUFile *f, sPAPRMachineState *spapr,
int64_t max_ns)
{
+ bool has_timeout = max_ns != -1;
int htabslots = HTAB_SIZE(spapr) / HASH_PTE_SIZE_64;
int index = spapr->htab_save_index;
int64_t starttime = qemu_clock_get_ns(QEMU_CLOCK_REALTIME);
@@ -1345,7 +1346,8 @@ static void htab_save_first_pass(QEMUFile *f,
sPAPRMachineState *spapr,
qemu_put_buffer(f, HPTE(spapr->htab, chunkstart),
HASH_PTE_SIZE_64 * n_valid);
- if ((qemu_clock_get_ns(QEMU_CLOCK_REALTIME) - starttime) > max_ns)
{
+ if (has_timeout &&
+ (qemu_clock_get_ns(QEMU_CLOCK_REALTIME) - starttime) > max_ns)
{
break;
}
}
@@ -1498,6 +1500,9 @@ static int htab_save_complete(QEMUFile *f, void *opaque)
}
close_htab_fd(spapr);
} else {
+ if (spapr->htab_first_pass) {
+ htab_save_first_pass(f, spapr, -1);
+ }
htab_save_later_pass(f, spapr, -1);
}
--
2.5.0
- [Qemu-ppc] [PULL 00/26] ppc-for-2.6 queue 20160218, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 09/26] hw/ppc/spapr: Add h_set_sprg0 hypercall, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 07/26] target-ppc: Remove hack for ppc_hash64_load_hpte*() with HV KVM, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 08/26] migration: ensure htab_save_first completes after timeout,
David Gibson <=
- [Qemu-ppc] [PULL 13/26] cuda: move unknown commands reject out of switch, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 19/26] cuda: port FILE_SERVER_FLAG command to new framework, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 15/26] cuda: port SET_AUTO_RATE command to new framework, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 01/26] hw: fix some debug message format strings, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 05/26] pseries: Add helper to calculate recommended hash page table size, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 10/26] hw/ppc/spapr: Implement h_set_dabr, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 23/26] cuda: remove GET_6805_ADDR command, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 03/26] target-ppc: Include missing MMU models for SDR1 in info registers, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 17/26] cuda: port POWERDOWN command to new framework, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 16/26] cuda: port SET_DEVICE_LIST command to new framework, David Gibson, 2016/02/17