From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:59592) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U1BjL-0001Z7-SM for qemu-devel@nongnu.org; Fri, 01 Feb 2013 03:12:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U1BjK-0003pT-MS for qemu-devel@nongnu.org; Fri, 01 Feb 2013 03:12:15 -0500 Received: from mx1.redhat.com ([209.132.183.28]:25891) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U1BjK-0003pO-Ed for qemu-devel@nongnu.org; Fri, 01 Feb 2013 03:12:14 -0500 From: Juan Quintela Date: Fri, 1 Feb 2013 09:12:11 +0100 Message-Id: <1359706331-10575-1-git-send-email-quintela@redhat.com> Subject: [Qemu-devel] [PULL 0/5] migration queue List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Qemu Devel Cc: Anthony Liguori Hi This includes xbzrle fixes. They are just: - refactor xbzrle into its own file - tests for xbzrle !!!! - fix documentanion - bugfix - fix error message please pull The following changes since commit 8a55ebf01507ab73cc458cfcd5b9cb856aba0b9e: Merge remote-tracking branch 'afaerber/qom-cpu' into staging (2013-01-31 19:37:33 -0600) are available in the git repository at: git://repo.or.cz/qemu/quintela.git migration.next for you to fetch changes up to a31ca017aaf9074c1bb636b3ddaceb40f994375f: Fix error message in migrate_set_capability HMP command (2013-02-01 08:32:21 +0100) ---------------------------------------------------------------- Orit Wasserman (5): Move XBZRLE encoding code to a separate file to allow testing Add XBZRLE testing Fix example for query-migrate-capabilities Allow XBZRLE decoding without enabling the capability Fix error message in migrate_set_capability HMP command Makefile.objs | 2 +- arch_init.c | 3 - hmp.c | 2 +- qmp-commands.hx | 6 +- savevm.c | 159 ------------------------------------------ tests/Makefile | 3 + tests/test-xbzrle.c | 196 ++++++++++++++++++++++++++++++++++++++++++++++++++++ xbzrle.c | 173 ++++++++++++++++++++++++++++++++++++++++++++++ 8 files changed, 376 insertions(+), 168 deletions(-) create mode 100644 tests/test-xbzrle.c create mode 100644 xbzrle.c