This series adds some testing to the XBZRLE compression, disables it from migration to file (exec) to eliminate errors during load from file.
Orit Wasserman (5): Move XBZRLE encoding code to a separate file to allow testing Add XBZRLE testing Fix example for query-migrate-capabilities Disable XBZRLE during migrate to file if it is active Fix error message in migrate_set_capability HMP command Makefile.objs | 2 +- hmp.c | 2 +- include/migration/migration.h | 1 + migration-exec.c | 6 ++ migration.c | 9 ++ qmp-commands.hx | 6 +- savevm.c | 159 ------------------------------------ tests/Makefile | 2 + tests/test-xbzrle.c | 185 ++++++++++++++++++++++++++++++++++++++++++ xbzrle.c | 173 +++++++++++++++++++++++++++++++++++++++ 10 files changed, 380 insertions(+), 165 deletions(-) create mode 100644 tests/test-xbzrle.c create mode 100644 xbzrle.c -- 1.7.11.7