[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 00/18] Block patches
From: |
Kevin Wolf |
Subject: |
[Qemu-devel] [PULL 00/18] Block patches |
Date: |
Sun, 9 Feb 2014 09:46:12 +0100 |
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
- [Qemu-devel] [PULL 00/18] Block patches,
Kevin Wolf <=
- [Qemu-devel] [PULL 02/18] block: add native support for NFS, Kevin Wolf, 2014/02/09
- [Qemu-devel] [PULL 01/18] qemu-iotest: Make 077 raw-only, Kevin Wolf, 2014/02/09
- [Qemu-devel] [PULL 03/18] qemu-iotests: change _supported_proto to file for various tests, Kevin Wolf, 2014/02/09
- [Qemu-devel] [PULL 04/18] qemu-iotests: blacklist test 020 for NFS protocol, Kevin Wolf, 2014/02/09
- [Qemu-devel] [PULL 05/18] qemu-iotests: enable test 016 and 025 to work with NFS protocol, Kevin Wolf, 2014/02/09
- [Qemu-devel] [PULL 06/18] qemu-iotests: enable support for NFS protocol, Kevin Wolf, 2014/02/09
- [Qemu-devel] [PULL 08/18] block/iscsi: always fill bs->bl.opt_transfer_length, Kevin Wolf, 2014/02/09
- [Qemu-devel] [PULL 09/18] qcow2: remove n_start and n_end of qcow2_alloc_cluster_offset(), Kevin Wolf, 2014/02/09
- [Qemu-devel] [PULL 07/18] block: Fail gracefully with missing filename, Kevin Wolf, 2014/02/09
- [Qemu-devel] [PULL 10/18] qcow2: fix offset overflow in qcow2_alloc_clusters_at(), Kevin Wolf, 2014/02/09