qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/16] Block patches
@ 2015-01-16 15:36 Stefan Hajnoczi
  2015-01-16 15:36 ` [Qemu-devel] [PULL 01/16] block: add event when disk usage exceeds threshold Stefan Hajnoczi
                   ` (16 more replies)
  0 siblings, 17 replies; 29+ messages in thread
From: Stefan Hajnoczi @ 2015-01-16 15:36 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi

The following changes since commit df58887b20fab8fe8a6dcca4db30cd4e4077d53a:

  Merge remote-tracking branch 'remotes/mjt/tags/pull-trivial-patches-2015-01-15' into staging (2015-01-15 10:08:46 +0000)

are available in the git repository at:

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

for you to fetch changes up to d6e2630f17fa40342af80d20c04f279fa23ea189:

  qemu-iotests: Fix supported_oses check (2015-01-16 15:36:34 +0000)

----------------------------------------------------------------

----------------------------------------------------------------

Fam Zheng (1):
  qemu-iotests: Fix supported_oses check

Francesco Romani (1):
  block: add event when disk usage exceeds threshold

Peter Wu (12):
  block/dmg: properly detect the UDIF trailer
  block/dmg: extract mish block decoding functionality
  block/dmg: extract processing of resource forks
  block/dmg: process a buffer instead of reading ints
  block/dmg: validate chunk size to avoid overflow
  block/dmg: process XML plists
  block/dmg: set virtual size to a non-zero value
  block/dmg: fix sector data offset calculation
  block/dmg: use SectorNumber from BLKX header
  block/dmg: factor out block type check
  block/dmg: support bzip2 block entry types
  block/dmg: improve zeroes handling

Stefan Hajnoczi (2):
  qed: check for header size overflow
  qemu-iotests: add 116 invalid QED input file tests

 block/Makefile.objs             |   2 +
 block/dmg.c                     | 501 ++++++++++++++++++++++++++++++----------
 block/qapi.c                    |   3 +
 block/qed.c                     |   5 +
 block/write-threshold.c         | 125 ++++++++++
 configure                       |  31 +++
 include/block/block_int.h       |   4 +
 include/block/write-threshold.h |  64 +++++
 qapi/block-core.json            |  51 +++-
 qmp-commands.hx                 |  32 +++
 tests/Makefile                  |   3 +
 tests/qemu-iotests/067.out      |   5 +
 tests/qemu-iotests/116          |  96 ++++++++
 tests/qemu-iotests/116.out      |  37 +++
 tests/qemu-iotests/group        |   1 +
 tests/qemu-iotests/iotests.py   |   2 +-
 tests/test-write-threshold.c    | 119 ++++++++++
 17 files changed, 962 insertions(+), 119 deletions(-)
 create mode 100644 block/write-threshold.c
 create mode 100644 include/block/write-threshold.h
 create mode 100755 tests/qemu-iotests/116
 create mode 100644 tests/qemu-iotests/116.out
 create mode 100644 tests/test-write-threshold.c

-- 
2.1.0

^ permalink raw reply	[flat|nested] 29+ messages in thread
* [Qemu-devel] [PULL 00/16] Block patches
@ 2019-09-16 14:22 Max Reitz
  2019-09-16 15:34 ` no-reply
  2019-09-17  9:20 ` Peter Maydell
  0 siblings, 2 replies; 29+ messages in thread
From: Max Reitz @ 2019-09-16 14:22 UTC (permalink / raw)
  To: qemu-block; +Cc: Kevin Wolf, Peter Maydell, qemu-devel, Max Reitz

The following changes since commit dd25f97c66a75d1508f1d4c6478ed2c95bec428f:

  Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20190913' into staging (2019-09-16 10:15:15 +0100)

are available in the Git repository at:

  https://github.com/XanClic/qemu.git tags/pull-block-2019-09-16

for you to fetch changes up to 1825cc0783ccf0ec5d9f0b225a99b340bdd4c68f:

  qemu-iotests: Add test for bz #1745922 (2019-09-16 15:37:12 +0200)

----------------------------------------------------------------
Block patches:
- Fix for block jobs when used with I/O threads
- Fix for a corruption when using qcow2's LUKS encryption mode
- cURL fix
- check-block.sh cleanups (for make check)
- Refactoring

----------------------------------------------------------------
Max Reitz (7):
  curl: Keep pointer to the CURLState in CURLSocket
  curl: Keep *socket until the end of curl_sock_cb()
  curl: Check completion in curl_multi_do()
  curl: Pass CURLSocket to curl_multi_do()
  curl: Report only ready sockets
  curl: Handle success in multi_check_completion
  curl: Check curl_multi_add_handle()'s return code

Maxim Levitsky (3):
  block/qcow2: Fix corruption introduced by commit 8ac0f15f335
  block/qcow2: refactor encryption code
  qemu-iotests: Add test for bz #1745922

Nir Soffer (2):
  block: Use QEMU_IS_ALIGNED
  block: Remove unused masks

Sergio Lopez (1):
  blockjob: update nodes head while removing all bdrv

Thomas Huth (2):
  tests/qemu-iotests/check: Replace "tests" with "iotests" in final
    status text
  tests/Makefile: Do not print the name of the check-block.sh shell
    script

Vladimir Sementsov-Ogievskiy (1):
  tests/qemu-iotests: Fix qemu-io related output in 026.out.nocache

 tests/Makefile.include             |   2 +-
 block/qcow2.h                      |   8 +-
 include/block/block.h              |   2 -
 block/bochs.c                      |   4 +-
 block/cloop.c                      |   4 +-
 block/curl.c                       | 133 ++++++++++-------------
 block/dmg.c                        |   4 +-
 block/io.c                         |   8 +-
 block/qcow2-cluster.c              |  40 +++----
 block/qcow2-threads.c              |  63 ++++++++---
 block/qcow2.c                      |   9 +-
 block/vvfat.c                      |   8 +-
 blockjob.c                         |  17 ++-
 migration/block.c                  |   2 +-
 qemu-img.c                         |   2 +-
 tests/qemu-iotests/026.out.nocache | 168 ++++++++++++++---------------
 tests/qemu-iotests/263             |  91 ++++++++++++++++
 tests/qemu-iotests/263.out         |  40 +++++++
 tests/qemu-iotests/check           |   8 +-
 tests/qemu-iotests/group           |   1 +
 20 files changed, 380 insertions(+), 234 deletions(-)
 create mode 100755 tests/qemu-iotests/263
 create mode 100644 tests/qemu-iotests/263.out

-- 
2.21.0



^ permalink raw reply	[flat|nested] 29+ messages in thread
* [Qemu-devel] [PULL 00/16] Block patches
@ 2015-09-04 20:10 Kevin Wolf
  2015-09-07 12:18 ` Peter Maydell
  0 siblings, 1 reply; 29+ messages in thread
From: Kevin Wolf @ 2015-09-04 20:10 UTC (permalink / raw)
  To: qemu-block; +Cc: kwolf, qemu-devel, mreitz

The following changes since commit b597aa037dbd98014c8dec3d69a5e2240f432533:

  Merge remote-tracking branch 'remotes/armbru/tags/pull-monitor-2015-09-04' into staging (2015-09-04 17:37:50 +0100)

are available in the git repository at:


  git://repo.or.cz/qemu/kevin.git tags/for-upstream

for you to fetch changes up to c804b5791d51608c0e12e4cc2b40b3d763ce796c:

  Merge remote-tracking branch 'mreitz/tags/pull-block-for-kevin-2015-09-04' into queue-block (2015-09-04 21:43:55 +0200)

----------------------------------------------------------------

Block layer patches

----------------------------------------------------------------
Alberto Garcia (4):
      qcow2: mark the memory as no longer needed after qcow2_cache_empty()
      qcow2: add option to clean unused cache entries after some time
      docs: document how to configure the qcow2 L2/refcount caches
      qcow2: reorder fields in Qcow2CachedTable to reduce padding

Bo Tu (5):
      qemu-iotests: qemu machine type support
      qemu-iotests: disable default qemu devices for cross-platform compatibility
      qemu-iotests: s390x: fix test 041 and 055
      qemu-iotests: s390x: fix test 049, reject negative sizes in QemuOpts
      qemu-iotests: s390x: fix test 130

Kevin Wolf (1):
      Merge remote-tracking branch 'mreitz/tags/pull-block-for-kevin-2015-09-04' into queue-block

Max Reitz (6):
      block/raw-posix: Use raw_normalize_devicepath()
      qemu-img: Fix crash in amend invocation
      iotests: More options for VM.add_drive()
      iotests: Respect -nodefaults in tests 41 and 55
      iotests: Do not suppress segfaults in bash tests
      iotests: Warn if python subprocess is killed

Wen Congyang (1):
      quorum: validate vote threshold against num_children even if read-pattern is fifo

 block/qcow2-cache.c              |  63 +++++++++-
 block/qcow2.c                    |  64 ++++++++++
 block/qcow2.h                    |   4 +
 block/quorum.c                   |  12 +-
 block/raw-posix.c                |  22 +++-
 docs/qcow2-cache.txt             | 164 ++++++++++++++++++++++++
 qapi/block-core.json             |   7 +-
 qemu-img.c                       |   3 +-
 tests/qemu-iotests/039           |  19 +--
 tests/qemu-iotests/039.out       |   6 +-
 tests/qemu-iotests/041           |  18 ++-
 tests/qemu-iotests/049.out       |  10 +-
 tests/qemu-iotests/055           |  19 ++-
 tests/qemu-iotests/061           |   6 +-
 tests/qemu-iotests/061.out       |   2 +
 tests/qemu-iotests/067           |   8 +-
 tests/qemu-iotests/067.out       | 266 +--------------------------------------
 tests/qemu-iotests/071.out       |   4 -
 tests/qemu-iotests/081.out       |   2 -
 tests/qemu-iotests/087.out       |  12 --
 tests/qemu-iotests/130           |   8 +-
 tests/qemu-iotests/130.out       |   4 +-
 tests/qemu-iotests/check         |  13 +-
 tests/qemu-iotests/common        |   1 +
 tests/qemu-iotests/common.config |  38 +++++-
 tests/qemu-iotests/common.qemu   |   2 +-
 tests/qemu-iotests/common.rc     |  12 +-
 tests/qemu-iotests/iotests.py    |  52 ++++++--
 util/qemu-option.c               |   5 +
 29 files changed, 487 insertions(+), 359 deletions(-)
 create mode 100644 docs/qcow2-cache.txt

^ permalink raw reply	[flat|nested] 29+ messages in thread
* [Qemu-devel] [PULL 00/16] Block patches
@ 2010-11-30 17:58 Kevin Wolf
  2010-12-06 13:32 ` Anthony Liguori
  0 siblings, 1 reply; 29+ messages in thread
From: Kevin Wolf @ 2010-11-30 17:58 UTC (permalink / raw)
  To: anthony; +Cc: kwolf, qemu-devel

The following changes since commit f711df67d611e4762966a249742a5f7499e19f99:

  microblaze: target-ify target_ucontext (2010-11-23 10:04:30 +0100)

are available in the git repository at:
  git://repo.or.cz/qemu/kevin.git for-anthony

Avi Kivity (1):
      ide: convert bmdma address ioport to ioport_register()

Christoph Hellwig (1):
      raw-posix: raw_pwrite comment fixup

Hannes Reinecke (5):
      scsi: Increase the number of possible devices
      scsi: Return SAM status codes
      scsi: INQUIRY VPD fixes
      scsi: Move sense handling into the driver
      scsi-disk: Remove duplicate cdb parsing

Kevin Wolf (5):
      block: Remove unused s->hd in various drivers
      ide: Factor ide_dma_set_inactive out
      ide: Set bus master inactive on error
      ide: Ignore double DMA transfer starts/stops
      ide: Reset current_addr after stopping DMA

Marcelo Tosatti (1):
      block migration: do not submit multiple AIOs for same sector (v2)

Ryan Harper (1):
      Implement drive_del to decouple block removal from device removal

Stefan Hajnoczi (1):
      scsi-disk: Move active request asserts

Stefano Stabellini (1):
      qemu and qemu-xen: support empty write barriers in xen_disk

 block-migration.c |   14 ++----
 block/qcow.c      |    1 -
 block/qcow2.h     |    1 -
 block/raw-posix.c |    2 +-
 block/vdi.c       |    1 -
 block/vmdk.c      |    1 -
 block/vpc.c       |    2 -
 blockdev.c        |   39 +++++++++++++++
 blockdev.h        |    3 +-
 hmp-commands.hx   |   18 +++++++
 hw/ide/cmd646.c   |    8 +--
 hw/ide/core.c     |   31 ++++++------
 hw/ide/internal.h |    2 +
 hw/ide/pci.c      |  131 +++++++++++++++++++-------------------------------
 hw/ide/pci.h      |    7 +--
 hw/ide/piix.c     |    8 +--
 hw/ide/via.c      |    8 +--
 hw/scsi-bus.c     |   12 +----
 hw/scsi-defs.h    |   20 ++++----
 hw/scsi-disk.c    |  137 +++++++++++++++++++++++++---------------------------
 hw/scsi-generic.c |   10 ++--
 hw/scsi.h         |   11 +----
 hw/xen_disk.c     |   12 ++++-
 23 files changed, 234 insertions(+), 245 deletions(-)

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

end of thread, other threads:[~2019-09-17  9:22 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-16 15:36 [Qemu-devel] [PULL 00/16] Block patches Stefan Hajnoczi
2015-01-16 15:36 ` [Qemu-devel] [PULL 01/16] block: add event when disk usage exceeds threshold Stefan Hajnoczi
2015-01-16 15:36 ` [Qemu-devel] [PULL 02/16] block/dmg: properly detect the UDIF trailer Stefan Hajnoczi
2015-01-16 15:37 ` [Qemu-devel] [PULL 03/16] block/dmg: extract mish block decoding functionality Stefan Hajnoczi
2015-01-16 15:37 ` [Qemu-devel] [PULL 04/16] block/dmg: extract processing of resource forks Stefan Hajnoczi
2015-01-16 15:37 ` [Qemu-devel] [PULL 05/16] block/dmg: process a buffer instead of reading ints Stefan Hajnoczi
2015-01-16 15:37 ` [Qemu-devel] [PULL 06/16] block/dmg: validate chunk size to avoid overflow Stefan Hajnoczi
2015-01-16 15:37 ` [Qemu-devel] [PULL 07/16] block/dmg: process XML plists Stefan Hajnoczi
2015-01-16 15:37 ` [Qemu-devel] [PULL 08/16] block/dmg: set virtual size to a non-zero value Stefan Hajnoczi
2015-01-16 15:37 ` [Qemu-devel] [PULL 09/16] block/dmg: fix sector data offset calculation Stefan Hajnoczi
2015-01-16 15:37 ` [Qemu-devel] [PULL 10/16] block/dmg: use SectorNumber from BLKX header Stefan Hajnoczi
2015-01-16 15:37 ` [Qemu-devel] [PULL 11/16] block/dmg: factor out block type check Stefan Hajnoczi
2015-01-16 15:37 ` [Qemu-devel] [PULL 12/16] block/dmg: support bzip2 block entry types Stefan Hajnoczi
2015-01-16 15:37 ` [Qemu-devel] [PULL 13/16] block/dmg: improve zeroes handling Stefan Hajnoczi
2015-01-16 15:37 ` [Qemu-devel] [PULL 14/16] qed: check for header size overflow Stefan Hajnoczi
2015-01-16 15:37 ` [Qemu-devel] [PULL 15/16] qemu-iotests: add 116 invalid QED input file tests Stefan Hajnoczi
2015-01-16 15:37 ` [Qemu-devel] [PULL 16/16] qemu-iotests: Fix supported_oses check Stefan Hajnoczi
2015-01-16 16:46 ` [Qemu-devel] [PULL 00/16] Block patches Peter Maydell
2015-01-17 10:41   ` Peter Wu
2015-01-20 10:26     ` Stefan Hajnoczi
  -- strict thread matches above, loose matches on Subject: below --
2019-09-16 14:22 Max Reitz
2019-09-16 15:34 ` no-reply
2019-09-17  9:20 ` Peter Maydell
2015-09-04 20:10 Kevin Wolf
2015-09-07 12:18 ` Peter Maydell
2010-11-30 17:58 Kevin Wolf
2010-12-06 13:32 ` Anthony Liguori
2010-12-06 13:41   ` Kevin Wolf
2010-12-06 14:09     ` 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).