qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/55] Block patches
@ 2014-08-15 17:06 Stefan Hajnoczi
  2014-08-15 17:06 ` [Qemu-devel] [PULL 01/55] blkdebug: report errors on flush too Stefan Hajnoczi
                   ` (55 more replies)
  0 siblings, 56 replies; 59+ messages in thread
From: Stefan Hajnoczi @ 2014-08-15 17:06 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi

The following changes since commit 5c6b3c50cca2106e5fbcbc6efa94c2f8b9d29fd8:

  Merge remote-tracking branch 'remotes/stefanha/tags/tracing-pull-request' into staging (2014-08-15 16:37:17 +0100)

are available in the git repository at:


  git://github.com/stefanha/qemu.git tags/block-pull-request

for you to fetch changes up to 39ba3bf69c4ef4d8a8b683ee7282efd25b3f01ff:

  qcow2: fix new_blocks double-free in alloc_refcount_block() (2014-08-15 18:03:26 +0100)

----------------------------------------------------------------
Block pull request

----------------------------------------------------------------
Cornelia Huck (3):
      dataplane: print why starting failed
      dataplane: fail notifier setting gracefully
      dataplane: stop trying on notifier error

Denis V. Lunev (4):
      parallels: extend parallels format header with actual data values
      parallels: replace tabs with spaces in block/parallels.c
      parallels: split check for parallels format in parallels_open
      parallels: 2TB+ parallels images support

Gonglei (2):
      qemu-char: using qemu_set_nonblock() instead of fcntl(O_NONBLOCK)
      channel-posix: using qemu_set_nonblock() instead of fcntl(O_NONBLOCK)

John Snow (7):
      q35: Enable the ioapic device to be seen by qtest.
      qtest: Adding qtest_memset and qmemset.
      libqos: Correct memory leak
      libqtest: Correct small memory leak.
      libqos: Fixes a small memory leak.
      libqos: allow qpci_iomap to return BAR mapping size
      qtest/ide: Fix small memory leak

Kevin Wolf (1):
      ide: Fix segfault when flushing a device that doesn't exist

Marc Marí (4):
      libqtest: add QTEST_LOG for debugging qtest testcases
      libqos: Correct mask to align size to PAGE_SIZE in malloc-pc
      libqos: Change free function called in malloc
      virtio-blk: Correct bug in support for flexible descriptor layout

Maria Kustova (9):
      docs: Specification for the image fuzzer
      image-fuzzer: Tool for fuzz tests execution
      image-fuzzer: Fuzzing functions for qcow2 images
      image-fuzzer: Generator of fuzzed qcow2 images
      image-fuzzer: Public API for image-fuzzer/runner/runner.py
      docs: Expand the list of supported image elements with L1/L2 tables
      image-fuzzer: Add fuzzing functions for L1/L2 table entries
      image-fuzzer: Add generators of L1/L2 tables
      image-fuzzer: Reduce number of generator functions in __init__

Mark Cave-Ayland (5):
      cmd646: add constants for CNTRL register access
      cmd646: synchronise DMA interrupt status with UDMA interrupt status
      cmd646: switch cmd646_update_irq() to accept PCIDevice instead of PCIIDEState
      cmd646: allow MRDMODE interrupt status bits clearing from PCI config space
      cmd646: synchronise UDMA interrupt status with DMA interrupt status

Michael Tokarev (1):
      ide: only constrain read/write requests to drive size, not other types

Paolo Bonzini (17):
      blkdebug: report errors on flush too
      libqtest: add QTEST_LOG for debugging qtest testcases
      ide-test: add test for werror=stop
      ide: stash aiocb for flushes
      ide: simplify reset callbacks
      ide: simplify set_inactive callbacks
      ide: simplify async_cmd_done callbacks
      ide: simplify start_transfer callbacks
      ide: wrap start_dma callback
      ide: remove wrong setting of BM_STATUS_INT
      ide: fold add_status callback into set_inactive
      ide: move BM_STATUS bits to pci.[ch]
      ide: move retry constants out of BM_STATUS_* namespace
      ahci: remove duplicate PORT_IRQ_* constants
      ide: stop PIO transfer on errors
      ide: make all commands go through cmd_done
      ahci: construct PIO Setup FIS for PIO commands

Peter Lieven (1):
      qemu-options: add missing -drive discard option to cmdline help

Stefan Hajnoczi (1):
      qcow2: fix new_blocks double-free in alloc_refcount_block()

 block/blkdebug.c                     |  20 ++
 block/parallels.c                    |  52 ++--
 block/qcow2-refcount.c               |   1 +
 docs/image-fuzzer.txt                | 238 ++++++++++++++++++
 hw/block/dataplane/virtio-blk.c      |  39 ++-
 hw/block/virtio-blk.c                |  14 +-
 hw/i386/pc_q35.c                     |   2 +-
 hw/ide/ahci.c                        | 115 +++++----
 hw/ide/ahci.h                        |  21 --
 hw/ide/atapi.c                       |  11 +-
 hw/ide/cmd646.c                      |  94 ++++++-
 hw/ide/core.c                        | 101 ++++----
 hw/ide/internal.h                    |  38 ++-
 hw/ide/macio.c                       |   9 -
 hw/ide/pci.c                         |  45 ++--
 hw/ide/pci.h                         |   7 +
 qemu-char.c                          |   4 +-
 qemu-options.hx                      |   2 +-
 qga/channel-posix.c                  |   2 +-
 tests/ide-test.c                     |  99 +++++++-
 tests/image-fuzzer/qcow2/__init__.py |   1 +
 tests/image-fuzzer/qcow2/fuzz.py     | 355 ++++++++++++++++++++++++++
 tests/image-fuzzer/qcow2/layout.py   | 476 +++++++++++++++++++++++++++++++++++
 tests/image-fuzzer/runner.py         | 405 +++++++++++++++++++++++++++++
 tests/libqos/malloc-pc.c             |   5 +-
 tests/libqos/malloc.h                |   2 +-
 tests/libqos/pci-pc.c                |  12 +-
 tests/libqos/pci-pc.h                |   1 +
 tests/libqos/pci.c                   |   4 +-
 tests/libqos/pci.h                   |   4 +-
 tests/libqtest.c                     |  24 +-
 tests/libqtest.h                     |  24 ++
 tests/usb-hcd-ehci-test.c            |   2 +-
 33 files changed, 1991 insertions(+), 238 deletions(-)
 create mode 100644 docs/image-fuzzer.txt
 create mode 100644 tests/image-fuzzer/qcow2/__init__.py
 create mode 100644 tests/image-fuzzer/qcow2/fuzz.py
 create mode 100644 tests/image-fuzzer/qcow2/layout.py
 create mode 100755 tests/image-fuzzer/runner.py

-- 
1.9.3

^ permalink raw reply	[flat|nested] 59+ messages in thread
* [Qemu-devel] [PULL 00/55] Block patches
@ 2011-10-31 13:29 Kevin Wolf
  2011-10-31 16:52 ` Anthony Liguori
  0 siblings, 1 reply; 59+ messages in thread
From: Kevin Wolf @ 2011-10-31 13:29 UTC (permalink / raw)
  To: anthony; +Cc: kwolf, qemu-devel

The following changes since commit b5a12aa204f842c8010ac9d2e4b115114dbf09f0:

  Merge branch 'rth/vis2' of git://repo.or.cz/qemu/rth (2011-10-27 20:27:07 +0000)

are available in the git repository at:

  git://repo.or.cz/qemu/kevin.git for-anthony

Dong Xu Wang (1):
      block: fix qcow2_co_flush deadlock

Eric Sunshine (1):
      Teach block/vdi about "discarded" (no longer allocated) blocks

Kevin Wolf (7):
      block: Remove dead code
      block: Fix bdrv_open use after free
      qcow: Fix bdrv_write_compressed error handling
      ide: Fix off-by-one error in array index check
      vmdk: Fix use of uninitialised value
      vmdk: Improve error handling
      vmdk: Fix possible segfaults

Paolo Bonzini (38):
      scsi: pass correct sense code for ENOMEDIUM
      atapi/scsi: unify definitions for MMC
      atapi: move GESN definitions to scsi-defs.h
      atapi: cleanup/fix mode sense results
      scsi: notify the device when unit attention is reported
      scsi-disk: report media changed via unit attention sense codes
      scsi-disk: fix coding style issues (braces)
      scsi-disk: add stubs for more MMC commands
      scsi-disk: store valid mode pages in a table
      atapi/scsi-disk: make mode page values coherent between the two
      scsi-disk: support DVD profile in GET CONFIGURATION
      scsi-disk: support READ DVD STRUCTURE
      scsi-disk: report media changed via GET EVENT STATUS NOTIFICATION
      scsi: move tcq/ndev to SCSIBusOps (now SCSIBusInfo)
      qdev: switch children device list to QTAILQ
      scsi: remove devs array from SCSIBus
      scsi: implement REPORT LUNS for arbitrary LUNs
      scsi: allow arbitrary LUNs
      scsi: add channel to addressing
      scsi-disk: fail READ CAPACITY if LBA != 0 but PMI == 0
      scsi-disk: fix retrying a flush
      scsi-generic: drop SCSIGenericState
      scsi-generic: remove scsi_req_fixup
      scsi-generic: check ioctl statuses when SG_IO succeeds
      scsi-generic: look at host status
      scsi-generic: snoop READ CAPACITY commands to get block size
      scsi-disk: do not duplicate BlockDriverState member
      scsi-disk: remove cluster_size
      scsi-disk: small clean up to INQUIRY
      scsi: move max_lba to SCSIDevice
      scsi: make reqops const
      scsi: export scsi_generic_reqops
      scsi: pass cdb to alloc_req
      scsi: do not call transfer_data after canceling a request
      scsi-disk: bump SCSIRequest reference count until aio completion runs
      scsi-generic: bump SCSIRequest reference count until aio completion runs
      scsi: push request restart to SCSIDevice
      scsi-disk: add scsi-block for device passthrough

Ronnie Sahlberg (4):
      iSCSI block driver
      Documentation: Add iSCSI section
      Documentation: Describe NBD URL syntax
      Documentation: Add syntax for using sheepdog devices

Stefan Hajnoczi (3):
      qemu-io: delete bs instead of leaking it
      block: set bs->read_only before .bdrv_open()
      block: reinitialize across bdrv_close()/bdrv_open()

Zhi Yong Wu (1):
      qcow2: fix some errors and typo in qcow2.txt

 Makefile.objs        |    1 +
 block.c              |   18 +-
 block/iscsi.c        |  591 ++++++++++++++++++++++++++++++++++++
 block/qcow.c         |   30 ++-
 block/qcow2.c        |    2 +
 block/vdi.c          |   23 +-
 block/vmdk.c         |   30 ++-
 configure            |   31 ++
 docs/specs/qcow2.txt |    6 +-
 hw/acpi_piix4.c      |    4 +-
 hw/esp.c             |   16 +-
 hw/i2c.c             |    2 +-
 hw/ide/atapi.c       |  119 +++-----
 hw/ide/core.c        |    6 +-
 hw/ide/internal.h    |   71 +-----
 hw/ide/macio.c       |    2 +-
 hw/intel-hda.c       |    6 +-
 hw/lsi53c895a.c      |   30 +-
 hw/qdev.c            |   24 +-
 hw/qdev.h            |    4 +-
 hw/s390-virtio-bus.c |    4 +-
 hw/scsi-bus.c        |  279 +++++++++++++----
 hw/scsi-defs.h       |   90 ++++++
 hw/scsi-disk.c       |  824 +++++++++++++++++++++++++++++++++++++-------------
 hw/scsi-generic.c    |  201 ++++++-------
 hw/scsi.h            |   39 ++-
 hw/spapr_vio.c       |    6 +-
 hw/spapr_vscsi.c     |   54 +++-
 hw/ssi.c             |    6 +-
 hw/usb-msd.c         |    8 +-
 qemu-io.c            |    5 +-
 qemu-options.hx      |   90 ++++++
 trace-events         |    7 +
 33 files changed, 1979 insertions(+), 650 deletions(-)
 create mode 100644 block/iscsi.c

^ permalink raw reply	[flat|nested] 59+ messages in thread

end of thread, other threads:[~2014-08-18 11:54 UTC | newest]

Thread overview: 59+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-15 17:06 [Qemu-devel] [PULL 00/55] Block patches Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 01/55] blkdebug: report errors on flush too Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 02/55] libqtest: add QTEST_LOG for debugging qtest testcases Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 03/55] ide-test: add test for werror=stop Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 04/55] ide: stash aiocb for flushes Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 05/55] ide: simplify reset callbacks Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 06/55] ide: simplify set_inactive callbacks Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 07/55] ide: simplify async_cmd_done callbacks Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 08/55] ide: simplify start_transfer callbacks Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 09/55] ide: wrap start_dma callback Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 10/55] ide: remove wrong setting of BM_STATUS_INT Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 11/55] ide: fold add_status callback into set_inactive Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 12/55] ide: move BM_STATUS bits to pci.[ch] Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 13/55] ide: move retry constants out of BM_STATUS_* namespace Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 14/55] ahci: remove duplicate PORT_IRQ_* constants Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 15/55] ide: stop PIO transfer on errors Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 16/55] ide: make all commands go through cmd_done Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 17/55] ahci: construct PIO Setup FIS for PIO commands Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 18/55] q35: Enable the ioapic device to be seen by qtest Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 19/55] qtest: Adding qtest_memset and qmemset Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 20/55] libqos: Correct memory leak Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 21/55] libqtest: Correct small " Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 22/55] libqos: Fixes a " Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 23/55] libqos: allow qpci_iomap to return BAR mapping size Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 24/55] qtest/ide: Fix small memory leak Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 25/55] cmd646: add constants for CNTRL register access Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 26/55] cmd646: synchronise DMA interrupt status with UDMA interrupt status Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 27/55] cmd646: switch cmd646_update_irq() to accept PCIDevice instead of PCIIDEState Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 28/55] cmd646: allow MRDMODE interrupt status bits clearing from PCI config space Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 29/55] cmd646: synchronise UDMA interrupt status with DMA interrupt status Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 30/55] qemu-char: using qemu_set_nonblock() instead of fcntl(O_NONBLOCK) Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 31/55] channel-posix: " Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 32/55] dataplane: print why starting failed Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 33/55] dataplane: fail notifier setting gracefully Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 34/55] dataplane: stop trying on notifier error Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 35/55] parallels: extend parallels format header with actual data values Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 36/55] parallels: replace tabs with spaces in block/parallels.c Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 37/55] parallels: split check for parallels format in parallels_open Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 38/55] parallels: 2TB+ parallels images support Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 39/55] qemu-options: add missing -drive discard option to cmdline help Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 40/55] ide: Fix segfault when flushing a device that doesn't exist Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 41/55] libqtest: add QTEST_LOG for debugging qtest testcases Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 42/55] libqos: Correct mask to align size to PAGE_SIZE in malloc-pc Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 43/55] libqos: Change free function called in malloc Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 44/55] virtio-blk: Correct bug in support for flexible descriptor layout Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 45/55] ide: only constrain read/write requests to drive size, not other types Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 46/55] docs: Specification for the image fuzzer Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 47/55] image-fuzzer: Tool for fuzz tests execution Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 48/55] image-fuzzer: Fuzzing functions for qcow2 images Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 49/55] image-fuzzer: Generator of fuzzed " Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 50/55] image-fuzzer: Public API for image-fuzzer/runner/runner.py Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 51/55] docs: Expand the list of supported image elements with L1/L2 tables Stefan Hajnoczi
2014-08-15 17:06 ` [Qemu-devel] [PULL 52/55] image-fuzzer: Add fuzzing functions for L1/L2 table entries Stefan Hajnoczi
2014-08-15 17:07 ` [Qemu-devel] [PULL 53/55] image-fuzzer: Add generators of L1/L2 tables Stefan Hajnoczi
2014-08-15 17:07 ` [Qemu-devel] [PULL 54/55] image-fuzzer: Reduce number of generator functions in __init__ Stefan Hajnoczi
2014-08-15 17:07 ` [Qemu-devel] [PULL 55/55] qcow2: fix new_blocks double-free in alloc_refcount_block() Stefan Hajnoczi
2014-08-18 11:54 ` [Qemu-devel] [PULL 00/55] Block patches Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2011-10-31 13:29 Kevin Wolf
2011-10-31 16:52 ` Anthony Liguori

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).