| Submitter | Juan Quintela |
|---|---|
| Date | Feb. 1, 2013, 8:12 a.m. |
| Message ID | <1359706331-10575-1-git-send-email-quintela@redhat.com> |
| Download | mbox |
| Permalink | /patch/217377/ |
| State | New |
| Headers | show
Return-Path: <qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org> X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 18EC12C0295 for <incoming@patchwork.ozlabs.org>; Fri, 1 Feb 2013 19:12:25 +1100 (EST) Received: from localhost ([::1]:36431 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from <qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org>) id 1U1BjT-0001ZV-7p for incoming@patchwork.ozlabs.org; Fri, 01 Feb 2013 03:12:23 -0500 Received: from eggs.gnu.org ([208.118.235.92]:59592) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from <quintela@redhat.com>) 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 <quintela@redhat.com>) 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 <quintela@redhat.com>) id 1U1BjK-0003pO-Ed for qemu-devel@nongnu.org; Fri, 01 Feb 2013 03:12:14 -0500 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r118CDA1018122 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 1 Feb 2013 03:12:13 -0500 Received: from trasno.mitica (ovpn-113-123.phx2.redhat.com [10.3.113.123]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r118CCUe008666; Fri, 1 Feb 2013 03:12:12 -0500 From: Juan Quintela <quintela@redhat.com> To: Qemu Devel <qemu-devel@nongnu.org> Date: Fri, 1 Feb 2013 09:12:11 +0100 Message-Id: <1359706331-10575-1-git-send-email-quintela@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: Anthony Liguori <aliguori@us.ibm.com> Subject: [Qemu-devel] [PULL 0/5] migration queue X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: <qemu-devel.nongnu.org> List-Unsubscribe: <https://lists.nongnu.org/mailman/options/qemu-devel>, <mailto:qemu-devel-request@nongnu.org?subject=unsubscribe> List-Archive: <http://lists.nongnu.org/archive/html/qemu-devel> List-Post: <mailto:qemu-devel@nongnu.org> List-Help: <mailto:qemu-devel-request@nongnu.org?subject=help> List-Subscribe: <https://lists.nongnu.org/mailman/listinfo/qemu-devel>, <mailto:qemu-devel-request@nongnu.org?subject=subscribe> Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org |
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