qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/34] Block layer patches
@ 2016-02-22 16:32 Kevin Wolf
  2016-02-22 16:32 ` [Qemu-devel] [PULL 01/34] qemu-img: initialize MapEntry object Kevin Wolf
                   ` (34 more replies)
  0 siblings, 35 replies; 36+ messages in thread
From: Kevin Wolf @ 2016-02-22 16:32 UTC (permalink / raw)
  To: qemu-block; +Cc: kwolf, qemu-devel

The following changes since commit c3bce9d5f986bc22b0692a8fa9d26ce6d304375c:

  etraxfs_dma: Dont forward zero-length payload to clients (2016-02-20 00:17:48 +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 fe243e4881bc9e09767dba05f15acb016cfa7a52:

  Merge remote-tracking branch 'mreitz/tags/pull-block-for-kevin-2016-02-22' into queue-block (2016-02-22 16:57:50 +0100)

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

Block layer patches

----------------------------------------------------------------
Alberto Garcia (17):
      throttle: Make throttle_compute_timer() static
      throttle: Make throttle_conflicting() set errp
      throttle: Make throttle_max_is_missing_limit() set errp
      throttle: Make throttle_is_valid() set errp
      throttle: Set always an average value when setting a maximum value
      throttle: Merge all functions that check the configuration into one
      throttle: Use throttle_config_init() to initialize ThrottleConfig
      throttle: Add support for burst periods
      throttle: Add command-line settings to define the burst periods
      qapi: Add burst length parameters to block_set_io_throttle
      qapi: Add burst length fields to BlockDeviceInfo
      throttle: Check that burst_level leaks correctly
      throttle: Test throttle_compute_wait() during bursts
      qemu-iotests: Extend iotest 093 to test bursts
      qapi: Correct the name of the iops_rd parameter
      docs: Document the throttling infrastructure
      MAINTAINERS: Add myself as maintainer of the throttling code

Alyssa Milburn (1):
      blockdev: unset inappropriate flags when changing medium

Changlong Xie (1):
      quorum: fix segfault when read fails in fifo mode

Daniel P. Berrange (8):
      qemu-io: add support for --object command line arg
      qemu-img: add support for --object command line arg
      qemu-io: allow specifying image as a set of options args
      qemu-nbd: allow specifying image as a set of options args
      qemu-img: allow specifying image as a set of options args
      qemu-nbd: don't overlap long option values with short options
      qemu-nbd: use no_argument/required_argument constants
      qemu-io: use no_argument/required_argument constants

John Snow (1):
      qemu-img: initialize MapEntry object

Kevin Wolf (3):
      block: Fix -incoming with snapshot=on
      block migration: Activate image on destination before writing to it
      Merge remote-tracking branch 'mreitz/tags/pull-block-for-kevin-2016-02-22' into queue-block

Sascha Silbe (3):
      qemu-iotests: 067: ignore QMP events
      qemu-iotests: 140: don't use IDE device
      qemu-iotests: 140: make description slightly more verbose

Vladimir Sementsov-Ogievskiy (1):
      spec: add qcow2 bitmaps extension specification

 MAINTAINERS                |   9 +
 block.c                    |   4 -
 block/qapi.c               |  20 ++
 block/quorum.c             |   3 +-
 blockdev.c                 | 109 +++++++---
 docs/specs/qcow2.txt       | 221 +++++++++++++++++++-
 docs/throttle.txt          | 252 +++++++++++++++++++++++
 hmp.c                      |  12 ++
 include/qemu/throttle.h    |  55 +++--
 migration/block.c          |   7 +
 qapi/block-core.json       |  92 +++++++--
 qemu-img-cmds.hx           |  44 ++--
 qemu-img.c                 | 491 +++++++++++++++++++++++++++++++++++++++------
 qemu-img.texi              |  14 ++
 qemu-io.c                  | 115 +++++++++--
 qemu-nbd.c                 | 104 ++++++----
 qemu-nbd.texi              |   7 +-
 qmp-commands.hx            |  25 ++-
 tests/qemu-iotests/067     |  11 +-
 tests/qemu-iotests/067.out | 144 -------------
 tests/qemu-iotests/093     |  65 ++++--
 tests/qemu-iotests/093.out |   4 +-
 tests/qemu-iotests/140     |   8 +-
 tests/qemu-iotests/140.out |   1 -
 tests/qemu-iotests/145     |  52 +++++
 tests/qemu-iotests/145.out |   5 +
 tests/qemu-iotests/group   |   1 +
 tests/test-throttle.c      |  88 ++++++--
 util/throttle.c            | 132 ++++++++----
 29 files changed, 1663 insertions(+), 432 deletions(-)
 create mode 100644 docs/throttle.txt
 create mode 100755 tests/qemu-iotests/145
 create mode 100644 tests/qemu-iotests/145.out

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

end of thread, other threads:[~2016-02-22 17:47 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-22 16:32 [Qemu-devel] [PULL 00/34] Block layer patches Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 01/34] qemu-img: initialize MapEntry object Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 02/34] quorum: fix segfault when read fails in fifo mode Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 03/34] spec: add qcow2 bitmaps extension specification Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 04/34] block: Fix -incoming with snapshot=on Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 05/34] qemu-io: add support for --object command line arg Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 06/34] qemu-img: " Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 07/34] qemu-io: allow specifying image as a set of options args Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 08/34] qemu-nbd: " Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 09/34] qemu-img: " Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 10/34] qemu-nbd: don't overlap long option values with short options Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 11/34] qemu-nbd: use no_argument/required_argument constants Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 12/34] qemu-io: " Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 13/34] block migration: Activate image on destination before writing to it Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 14/34] throttle: Make throttle_compute_timer() static Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 15/34] throttle: Make throttle_conflicting() set errp Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 16/34] throttle: Make throttle_max_is_missing_limit() " Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 17/34] throttle: Make throttle_is_valid() " Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 18/34] throttle: Set always an average value when setting a maximum value Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 19/34] throttle: Merge all functions that check the configuration into one Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 20/34] throttle: Use throttle_config_init() to initialize ThrottleConfig Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 21/34] throttle: Add support for burst periods Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 22/34] throttle: Add command-line settings to define the " Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 23/34] qapi: Add burst length parameters to block_set_io_throttle Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 24/34] qapi: Add burst length fields to BlockDeviceInfo Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 25/34] throttle: Check that burst_level leaks correctly Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 26/34] throttle: Test throttle_compute_wait() during bursts Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 27/34] qemu-iotests: Extend iotest 093 to test bursts Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 28/34] qapi: Correct the name of the iops_rd parameter Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 29/34] docs: Document the throttling infrastructure Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 30/34] MAINTAINERS: Add myself as maintainer of the throttling code Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 31/34] blockdev: unset inappropriate flags when changing medium Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 32/34] qemu-iotests: 067: ignore QMP events Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 33/34] qemu-iotests: 140: don't use IDE device Kevin Wolf
2016-02-22 16:32 ` [Qemu-devel] [PULL 34/34] qemu-iotests: 140: make description slightly more verbose Kevin Wolf
2016-02-22 17:46 ` [Qemu-devel] [PULL 00/34] Block layer patches Peter Maydell

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