From: Kevin Wolf <kwolf@redhat.com>
To: anthony@codemonkey.ws
Cc: kwolf@redhat.com, qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 00/17] Block patches
Date: Tue, 29 Oct 2013 17:30:52 +0100 [thread overview]
Message-ID: <1383064269-27720-1-git-send-email-kwolf@redhat.com> (raw)
The following changes since commit fc8ead74674b7129e8f31c2595c76658e5622197:
Merge remote-tracking branch 'qemu-kvm/uq/master' into staging (2013-10-18 10:03:24 -0700)
are available in the git repository at:
git://repo.or.cz/qemu/kevin.git tags/for-anthony
for you to fetch changes up to a7cf03d4e150abec88f5837461242dc8a0eee189:
qemu-iotests: Fix 051 reference output (2013-10-29 17:05:35 +0100)
----------------------------------------------------------------
Block patches for 1.7.0-rc0
----------------------------------------------------------------
Alexander Graf (1):
ahci: fix win7 hang on boot
Eric Blake (1):
qapi: fix documentation example
Kevin Wolf (5):
exec: Fix bounce buffer allocation in address_space_map()
ide-test: Check what happens with bus mastering disabled
tests: Multiboot mmap test case
block: Avoid unecessary drv->bdrv_getlength() calls
qemu-iotests: Fix 051 reference output
Liu Yuan (2):
sheepdog: explicitly set copies as type uint8_t
sheepdog: pass copy_policy in the request
Max Reitz (5):
qcow2: Restore total_sectors value in save_vmstate
qcow2: Unset zero_beyond_eof in save_vmstate
qemu-iotests: Test for loading VM state from qcow2
qcow2: Flush image after creation
block: Don't copy backing file name on error
Peter Lieven (2):
qemu-img: add special exit code if bdrv_check is not supported
block/vpc: check that the image has not been truncated
Thibaut LAURENT (1):
block: Disable BDRV_O_COPY_ON_READ for the backing file
block.c | 14 +++--
block/qcow2.c | 19 ++++++
block/raw-posix.c | 9 ++-
block/raw-win32.c | 4 +-
block/raw_bsd.c | 1 +
block/sheepdog.c | 30 ++++++----
block/vpc.c | 7 +++
docs/qapi-code-gen.txt | 2 +-
exec.c | 4 +-
hw/ide/ahci.c | 3 +-
include/block/block_int.h | 3 +
qemu-img.c | 2 +-
tests/ide-test.c | 26 +++++++++
tests/multiboot/Makefile | 18 ++++++
tests/multiboot/libc.c | 139 ++++++++++++++++++++++++++++++++++++++++++++
tests/multiboot/libc.h | 61 +++++++++++++++++++
tests/multiboot/link.ld | 19 ++++++
tests/multiboot/mmap.c | 56 ++++++++++++++++++
tests/multiboot/mmap.out | 93 +++++++++++++++++++++++++++++
tests/multiboot/multiboot.h | 66 +++++++++++++++++++++
tests/multiboot/run_test.sh | 81 ++++++++++++++++++++++++++
tests/multiboot/start.S | 51 ++++++++++++++++
tests/qemu-iotests/051.out | 2 +-
tests/qemu-iotests/068 | 65 +++++++++++++++++++++
tests/qemu-iotests/068.out | 11 ++++
tests/qemu-iotests/group | 1 +
26 files changed, 761 insertions(+), 26 deletions(-)
create mode 100644 tests/multiboot/Makefile
create mode 100644 tests/multiboot/libc.c
create mode 100644 tests/multiboot/libc.h
create mode 100644 tests/multiboot/link.ld
create mode 100644 tests/multiboot/mmap.c
create mode 100644 tests/multiboot/mmap.out
create mode 100644 tests/multiboot/multiboot.h
create mode 100755 tests/multiboot/run_test.sh
create mode 100644 tests/multiboot/start.S
create mode 100755 tests/qemu-iotests/068
create mode 100644 tests/qemu-iotests/068.out
next reply other threads:[~2013-10-29 16:31 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-10-29 16:30 Kevin Wolf [this message]
2013-10-29 16:30 ` [Qemu-devel] [PULL 01/17] qapi: fix documentation example Kevin Wolf
2013-10-29 16:30 ` [Qemu-devel] [PULL 02/17] qcow2: Restore total_sectors value in save_vmstate Kevin Wolf
2013-10-29 16:30 ` [Qemu-devel] [PULL 03/17] qcow2: Unset zero_beyond_eof " Kevin Wolf
2013-10-29 16:30 ` [Qemu-devel] [PULL 04/17] qemu-img: add special exit code if bdrv_check is not supported Kevin Wolf
2013-10-29 16:30 ` [Qemu-devel] [PULL 05/17] block/vpc: check that the image has not been truncated Kevin Wolf
2013-10-29 16:30 ` [Qemu-devel] [PULL 06/17] qemu-iotests: Test for loading VM state from qcow2 Kevin Wolf
2013-10-29 16:30 ` [Qemu-devel] [PULL 07/17] qcow2: Flush image after creation Kevin Wolf
2013-10-29 16:31 ` [Qemu-devel] [PULL 08/17] exec: Fix bounce buffer allocation in address_space_map() Kevin Wolf
2013-10-29 16:31 ` [Qemu-devel] [PULL 09/17] ide-test: Check what happens with bus mastering disabled Kevin Wolf
2013-10-29 16:31 ` [Qemu-devel] [PULL 10/17] tests: Multiboot mmap test case Kevin Wolf
2013-10-29 16:31 ` [Qemu-devel] [PULL 11/17] block: Don't copy backing file name on error Kevin Wolf
2013-10-29 16:31 ` [Qemu-devel] [PULL 12/17] sheepdog: explicitly set copies as type uint8_t Kevin Wolf
2013-10-29 16:31 ` [Qemu-devel] [PULL 13/17] sheepdog: pass copy_policy in the request Kevin Wolf
2013-10-29 16:31 ` [Qemu-devel] [PULL 14/17] ahci: fix win7 hang on boot Kevin Wolf
2013-10-29 16:31 ` [Qemu-devel] [PULL 15/17] block: Disable BDRV_O_COPY_ON_READ for the backing file Kevin Wolf
2013-10-29 16:31 ` [Qemu-devel] [PULL 16/17] block: Avoid unecessary drv->bdrv_getlength() calls Kevin Wolf
2013-10-29 16:31 ` [Qemu-devel] [PULL 17/17] qemu-iotests: Fix 051 reference output Kevin Wolf
-- strict thread matches above, loose matches on Subject: below --
2019-08-19 16:17 [Qemu-devel] [PULL 00/17] Block patches Max Reitz
2019-08-20 12:40 ` Peter Maydell
2016-09-12 14:08 Stefan Hajnoczi
2016-09-12 15:12 ` Peter Maydell
2016-09-12 15:56 ` Peter Maydell
2016-09-13 1:11 ` Fam Zheng
2016-09-13 8:34 ` Stefan Hajnoczi
2016-09-13 8:53 ` Stefan Hajnoczi
2016-01-20 16:24 Kevin Wolf
2016-01-21 13:42 ` Peter Maydell
2015-07-02 9:19 Stefan Hajnoczi
2015-07-02 12:46 ` Peter Maydell
2015-07-07 13:47 ` Peter Maydell
2015-07-08 13:52 ` Stefan Hajnoczi
2015-06-05 11:57 Stefan Hajnoczi
2015-06-05 13:53 ` Peter Maydell
2014-06-02 13:56 Kevin Wolf
2014-06-02 14:46 ` Peter Maydell
2014-05-09 19:03 Stefan Hajnoczi
2014-05-13 10:32 ` Peter Maydell
2010-07-06 15:33 Kevin Wolf
2010-07-06 19:07 ` Anthony Liguori
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1383064269-27720-1-git-send-email-kwolf@redhat.com \
--to=kwolf@redhat.com \
--cc=anthony@codemonkey.ws \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).