From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52225) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WLutt-0003NZ-Di for qemu-devel@nongnu.org; Fri, 07 Mar 2014 08:33:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WLuto-0001gL-CW for qemu-devel@nongnu.org; Fri, 07 Mar 2014 08:33:21 -0500 Received: from mx1.redhat.com ([209.132.183.28]:28040) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WLuto-0001g8-3a for qemu-devel@nongnu.org; Fri, 07 Mar 2014 08:33:16 -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 s27DXFfS019253 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Fri, 7 Mar 2014 08:33:15 -0500 From: Kevin Wolf Date: Fri, 7 Mar 2014 14:32:48 +0100 Message-Id: <1394199187-9576-1-git-send-email-kwolf@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PULL 00/19] Block patches List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com The following changes since commit f55ea6297cc0224fe4934b90ff5343b620b146= 69: block/gluster: Add missing argument to qemu_gluster_init() call (2014-0= 3-04 20:20:57 +0000) are available in the git repository at: git://repo.or.cz/qemu/kevin.git tags/for-upstream for you to fetch changes up to 4089f7c6a0d91020ca60ce8300784c93dd9ddcbe: block: qemu-iotests 085 - live snapshots tests (2014-03-07 11:36:12 +01= 00) ---------------------------------------------------------------- Block patches ---------------------------------------------------------------- Beno=C3=AEt Canet (1): block: make bdrv_swap rebuild the bs graph node list field. Bharata B Rao (2): gluster: Change licence to GPLv2+ gluster: Remove unused defines and header include Jeff Cody (2): block: mirror - remove code cruft that has no function block: qemu-iotests 085 - live snapshots tests Kevin Wolf (8): qemu-img convert: Fix progress output qemu-iotests: Test progress output for conversion iscsi: Use bs->sg for everything else than disks block: Fix bs->request_alignment assertion for bs->sg=3D1 blockdev: Fail blockdev-add with encrypted images blockdev: Fix NULL pointer dereference in blockdev-add qemu-iotests: Test a few blockdev-add error cases block: Fix error path segfault in bdrv_open() Max Reitz (5): block: Keep "filename" option after parsing block/raw-posix: Implement bdrv_parse_filename() block/raw-posix: Strip "file:" prefix on creation block/raw-win32: Implement bdrv_parse_filename() block/raw-win32: Strip "file:" prefix on creation Peter Maydell (1): hw/ide/ahci.h: Avoid shifting left into sign bit block.c | 34 ++++++-- block/gluster.c | 16 +--- block/iscsi.c | 9 +-- block/mirror.c | 3 - block/raw-posix.c | 14 ++++ block/raw-win32.c | 14 ++++ blockdev.c | 15 +++- hw/ide/ahci.h | 10 +-- qemu-img.c | 20 ++--- tests/qemu-iotests/051 | 9 +++ tests/qemu-iotests/051.out | 15 ++++ tests/qemu-iotests/085 | 192 +++++++++++++++++++++++++++++++++++++++= ++++++ tests/qemu-iotests/085.out | 55 +++++++++++++ tests/qemu-iotests/086 | 65 +++++++++++++++ tests/qemu-iotests/086.out | 18 +++++ tests/qemu-iotests/087 | 122 ++++++++++++++++++++++++++++ tests/qemu-iotests/087.out | 40 ++++++++++ tests/qemu-iotests/group | 3 + 18 files changed, 608 insertions(+), 46 deletions(-) create mode 100755 tests/qemu-iotests/085 create mode 100644 tests/qemu-iotests/085.out create mode 100755 tests/qemu-iotests/086 create mode 100644 tests/qemu-iotests/086.out create mode 100755 tests/qemu-iotests/087 create mode 100644 tests/qemu-iotests/087.out