From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35675) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WCQ2L-0003HL-6p for qemu-devel@nongnu.org; Sun, 09 Feb 2014 03:46:54 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WCQ2D-0000qB-Rk for qemu-devel@nongnu.org; Sun, 09 Feb 2014 03:46:49 -0500 Received: from mx1.redhat.com ([209.132.183.28]:27804) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WCQ2D-0000q5-JE for qemu-devel@nongnu.org; Sun, 09 Feb 2014 03:46:41 -0500 From: Kevin Wolf Date: Sun, 9 Feb 2014 09:46:12 +0100 Message-Id: <1391935590-12264-1-git-send-email-kwolf@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PULL 00/18] Block patches List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: anthony@codemonkey.ws Cc: kwolf@redhat.com, qemu-devel@nongnu.org The following changes since commit 1f6b12f75f2c22f861d0202374033a7594c91707: Merge remote-tracking branch 'remotes/mwalle/tags/lm32-fixes/20140204' into staging (2014-02-08 15:57:51 +0000) are available in the git repository at: git://repo.or.cz/qemu/kevin.git tags/for-anthony for you to fetch changes up to e96126ffa53d36ec75a1ee900a6b7e7c82d9bb9c: block: Fix 32 bit truncation in mark_request_serialising() (2014-02-09 09:12:39 +0100) ---------------------------------------------------------------- Block patches ---------------------------------------------------------------- Hu Tao (4): qcow2: remove n_start and n_end of qcow2_alloc_cluster_offset() qcow2: fix offset overflow in qcow2_alloc_clusters_at() qcow2: check for NULL l2meta qemu-iotests: add test for qcow2 preallocation with different cluster sizes Kevin Wolf (8): qemu-iotest: Make 077 raw-only block: Fail gracefully with missing filename raw: Fix BlockLimits passthrough block: Fix memory leaks in bdrv_co_do_pwritev() block: bdrv_aligned_pwritev: Assert overlap range block: Don't call ROUND_UP with negative values blkdebug: Don't leak bs->file on failure block: Fix 32 bit truncation in mark_request_serialising() Peter Lieven (6): block: add native support for NFS qemu-iotests: change _supported_proto to file for various tests qemu-iotests: blacklist test 020 for NFS protocol qemu-iotests: enable test 016 and 025 to work with NFS protocol qemu-iotests: enable support for NFS protocol block/iscsi: always fill bs->bl.opt_transfer_length MAINTAINERS | 5 + block.c | 27 +-- block/Makefile.objs | 1 + block/blkdebug.c | 14 +- block/iscsi.c | 5 +- block/nfs.c | 439 +++++++++++++++++++++++++++++++++++++++++++ block/qcow2-cluster.c | 14 +- block/qcow2-refcount.c | 8 +- block/qcow2.c | 44 ++--- block/qcow2.h | 2 +- block/raw_bsd.c | 8 +- configure | 26 +++ qapi-schema.json | 1 + tests/qemu-iotests/013 | 2 +- tests/qemu-iotests/014 | 2 +- tests/qemu-iotests/016 | 2 +- tests/qemu-iotests/018 | 2 +- tests/qemu-iotests/019 | 2 +- tests/qemu-iotests/020 | 5 + tests/qemu-iotests/023 | 2 +- tests/qemu-iotests/024 | 2 +- tests/qemu-iotests/025 | 2 +- tests/qemu-iotests/026 | 2 +- tests/qemu-iotests/028 | 2 +- tests/qemu-iotests/031 | 2 +- tests/qemu-iotests/034 | 2 +- tests/qemu-iotests/036 | 2 +- tests/qemu-iotests/037 | 2 +- tests/qemu-iotests/038 | 2 +- tests/qemu-iotests/039 | 2 +- tests/qemu-iotests/043 | 2 +- tests/qemu-iotests/046 | 2 +- tests/qemu-iotests/051 | 12 ++ tests/qemu-iotests/051.out | 24 +++ tests/qemu-iotests/052 | 2 +- tests/qemu-iotests/054 | 2 +- tests/qemu-iotests/059 | 2 +- tests/qemu-iotests/060 | 2 +- tests/qemu-iotests/061 | 2 +- tests/qemu-iotests/063 | 2 +- tests/qemu-iotests/069 | 2 +- tests/qemu-iotests/071 | 2 +- tests/qemu-iotests/072 | 2 +- tests/qemu-iotests/077 | 2 +- tests/qemu-iotests/079 | 63 +++++++ tests/qemu-iotests/079.out | 32 ++++ tests/qemu-iotests/common | 22 ++- tests/qemu-iotests/common.rc | 3 + tests/qemu-iotests/group | 1 + trace-events | 2 +- 50 files changed, 730 insertions(+), 84 deletions(-) create mode 100644 block/nfs.c create mode 100755 tests/qemu-iotests/079 create mode 100644 tests/qemu-iotests/079.out