From: Kevin Wolf <kwolf@redhat.com>
To: anthony@codemonkey.ws
Cc: kwolf@redhat.com, qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 00/41] Block patches
Date: Tue, 17 Jul 2012 17:59:57 +0200 [thread overview]
Message-ID: <1342540838-9027-1-git-send-email-kwolf@redhat.com> (raw)
The following changes since commit 83617103984eb4d81cf46c94435f3da2c6f33b55:
audio: Unbreak capturing in mixemu case (2012-07-16 18:08:36 +0400)
are available in the git repository at:
http://repo.or.cz/r/qemu/kevin.git for-anthony
Christoph Hellwig (1):
sheepdog: do not blindly memset all read buffers
Kevin Wolf (4):
qemu-io: Fix memory leaks
coroutine-ucontext: Help valgrind understand coroutines
qemu-iotests: Valgrind support
fdc-test: Clean up a bit
MORITA Kazutaka (1):
sheepdog: always use coroutine-based network functions
Markus Armbruster (33):
fdc: Move floppy geometry guessing back from block.c
vvfat: Fix partition table
vvfat: Do not clobber the user's geometry
qtest: Add hard disk geometry test
hd-geometry: Move disk geometry guessing back from block.c
hd-geometry: Add tracepoints
hd-geometry: Unnest conditional in hd_geometry_guess()
hd-geometry: Factor out guess_chs_for_size()
hd-geometry: Clean up gratuitous goto in hd_geometry_guess()
hd-geometry: Clean up confusing use of prior translation hint
hd-geometry: Cut out block layer translation middleman
ide pc: Cut out the block layer geometry middleman
blockdev: Save geometry in DriveInfo
qdev: Introduce block geometry properties
hd-geometry: Switch to uint32_t to match BlockConf
scsi-hd: qdev properties for disk geometry
virtio-blk: qdev properties for disk geometry
ide: qdev properties for disk geometry
qtest: Cover qdev properties for disk geometry
qdev: Collect private helpers in one place
qdev: New property type chs-translation
ide: qdev property for BIOS CHS translation
qtest: Cover qdev property for BIOS CHS translation
block: Geometry and translation hints are now useless, purge them
ide pc: Put hard disk info into CMOS only for hard disks
qtest: Test we don't put hard disk info into CMOS for a CD-ROM
hd-geometry: Compute BIOS CHS translation in one place
blockdev: Drop redundant CHS validation for if=ide
Relax IDE CHS limits from 16383,16,63 to 65535,16,255
hw/block-common: Move BlockConf & friends from block.h
hw/block-common: Factor out fall back to legacy -drive serial=...
blockdev: Don't limit DriveInfo serial to 20 characters
hw/block-common: Factor out fall back to legacy -drive cyls=...
Pavel Hrdina (2):
fdc: fix relative seek
fdc-test: introduce test_relative_seek
block.c | 254 -------------------------
block.h | 70 -------
block/sheepdog.c | 150 +++++++---------
block/vvfat.c | 58 +++---
block_int.h | 1 -
blockdev.c | 28 +--
blockdev.h | 5 +-
configure | 20 ++
coroutine-ucontext.c | 28 +++
hw/Makefile.objs | 2 +-
hw/block-common.c | 64 +++++++
hw/block-common.h | 79 ++++++++
hw/fdc.c | 132 ++++++++++++--
hw/fdc.h | 10 +-
hw/hd-geometry.c | 157 +++++++++++++++
hw/ide.h | 4 +-
hw/ide/core.c | 50 +++--
hw/ide/internal.h | 8 +-
hw/ide/qdev.c | 41 +++--
hw/pc.c | 78 +++-----
hw/qdev-properties.c | 160 +++++++++-------
hw/qdev.h | 3 +
hw/s390-virtio-bus.c | 1 +
hw/scsi-disk.c | 53 +++---
hw/scsi.h | 1 +
hw/usb.h | 1 -
hw/usb/dev-storage.c | 10 +-
hw/virtio-blk.c | 25 +--
hw/virtio-blk.h | 2 +-
hw/virtio-pci.c | 1 +
hw/virtio.h | 1 -
qemu-io.c | 4 +
tests/Makefile | 2 +
tests/fdc-test.c | 64 +++++--
tests/hd-geo-test.c | 428 ++++++++++++++++++++++++++++++++++++++++++
tests/qemu-iotests/common | 11 +
tests/qemu-iotests/common.rc | 10 +
trace-events | 4 +
vl.c | 2 +-
39 files changed, 1325 insertions(+), 697 deletions(-)
create mode 100644 hw/block-common.c
create mode 100644 hw/block-common.h
create mode 100644 hw/hd-geometry.c
create mode 100644 tests/hd-geo-test.c
next reply other threads:[~2012-07-17 16:00 UTC|newest]
Thread overview: 43+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-07-17 15:59 Kevin Wolf [this message]
2012-07-17 15:59 ` [Qemu-devel] [PATCH 01/41] sheepdog: always use coroutine-based network functions Kevin Wolf
2012-07-17 15:59 ` [Qemu-devel] [PATCH 02/41] sheepdog: do not blindly memset all read buffers Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 03/41] fdc: Move floppy geometry guessing back from block.c Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 04/41] vvfat: Fix partition table Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 05/41] vvfat: Do not clobber the user's geometry Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 06/41] qtest: Add hard disk geometry test Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 07/41] hd-geometry: Move disk geometry guessing back from block.c Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 08/41] hd-geometry: Add tracepoints Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 09/41] hd-geometry: Unnest conditional in hd_geometry_guess() Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 10/41] hd-geometry: Factor out guess_chs_for_size() Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 11/41] hd-geometry: Clean up gratuitous goto in hd_geometry_guess() Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 12/41] hd-geometry: Clean up confusing use of prior translation hint Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 13/41] hd-geometry: Cut out block layer translation middleman Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 14/41] ide pc: Cut out the block layer geometry middleman Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 15/41] blockdev: Save geometry in DriveInfo Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 16/41] qdev: Introduce block geometry properties Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 17/41] hd-geometry: Switch to uint32_t to match BlockConf Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 18/41] scsi-hd: qdev properties for disk geometry Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 19/41] virtio-blk: " Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 20/41] ide: " Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 21/41] qtest: Cover " Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 22/41] qdev: Collect private helpers in one place Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 23/41] qdev: New property type chs-translation Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 24/41] ide: qdev property for BIOS CHS translation Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 25/41] qtest: Cover " Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 26/41] block: Geometry and translation hints are now useless, purge them Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 27/41] ide pc: Put hard disk info into CMOS only for hard disks Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 28/41] qtest: Test we don't put hard disk info into CMOS for a CD-ROM Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 29/41] hd-geometry: Compute BIOS CHS translation in one place Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 30/41] blockdev: Drop redundant CHS validation for if=ide Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 31/41] Relax IDE CHS limits from 16383, 16, 63 to 65535, 16, 255 Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 32/41] hw/block-common: Move BlockConf & friends from block.h Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 33/41] hw/block-common: Factor out fall back to legacy -drive serial= Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 34/41] blockdev: Don't limit DriveInfo serial to 20 characters Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 35/41] hw/block-common: Factor out fall back to legacy -drive cyls= Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 36/41] qemu-io: Fix memory leaks Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 37/41] coroutine-ucontext: Help valgrind understand coroutines Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 38/41] qemu-iotests: Valgrind support Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 39/41] fdc: fix relative seek Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 40/41] fdc-test: introduce test_relative_seek Kevin Wolf
2012-07-17 16:00 ` [Qemu-devel] [PATCH 41/41] fdc-test: Clean up a bit Kevin Wolf
-- strict thread matches above, loose matches on Subject: below --
2011-12-05 14:20 [Qemu-devel] [PULL 00/41] Block patches Kevin Wolf
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=1342540838-9027-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).