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; 37+ 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] 37+ messages in thread
* [Qemu-devel] [PULL 00/34] Block layer patches
@ 2017-04-28 20:33 Kevin Wolf
  0 siblings, 0 replies; 37+ messages in thread
From: Kevin Wolf @ 2017-04-28 20:33 UTC (permalink / raw)
  To: qemu-block; +Cc: kwolf, qemu-devel

The following changes since commit 81b2d5ceb0cfb4cdc2163492e3169ed714b0cda9:

  Merge remote-tracking branch 'remotes/rth/tags/pull-tcg-20170426' into staging (2017-04-26 20:50:49 +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 5fc0fe383fff318b38291dcdf2cf38e329ec232a:

  Merge remote-tracking branch 'mreitz/tags/pull-block-2017-04-28' into queue-block (2017-04-28 20:52:17 +0200)

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

Block layer patches

----------------------------------------------------------------
Denis V. Lunev (2):
      block: fix alignment calculations in bdrv_co_do_zero_pwritev
      block: assert no image modification under BDRV_O_INACTIVE

Eric Blake (2):
      iotests: Fix typo in 026
      qcow2: Allow discard of final unaligned cluster

Fam Zheng (2):
      block: Remove NULL check in bdrv_co_flush
      iotests: 109: Filter out "len" of failed jobs

John Snow (2):
      iotests: clarify help text
      iotests: fix exclusion option

Kevin Wolf (8):
      file-posix: Remove unnecessary includes
      file-win32: Remove unnecessary include
      migration: Call blk_resume_after_migration() for postcopy
      qemu-iotests: Filter HMP readline escape characters
      qemu-iotests: Test postcopy migration
      qemu-iotests: Remove PERL_PROG and BC_PROG
      qemu_iotests: Remove _readlink()
      Merge remote-tracking branch 'mreitz/tags/pull-block-2017-04-28' into queue-block

Klim Kireev (1):
      block: fix obvious coding style mistakes in block_int.h

Krzysztof Kozlowski (1):
      block: Constify data passed by pointer to blk_name

Lidong Chen (1):
      qemu-img: use blk_co_pwrite_zeroes for zero sectors when compressed

Max Reitz (13):
      Revert "block/io: Comment out permission assertions"
      block: An empty filename counts as no filename
      iotests/051: Add test for empty filename
      iotests: Launch qemu-nbd with -e 42
      block: Do not unref bs->file on error in BD's open
      qemu-img/convert: Use @opts for one thing only
      qemu-img/convert: Move bs_n > 1 && -B check down
      qemu-img: Document backing options
      block/vhdx: Make vhdx_create() always set errp
      block: Add errp to b{lk,drv}_truncate()
      block: Add errp to BD.bdrv_truncate()
      block: Add .bdrv_truncate() error messages
      progress: Show current progress on SIGINFO

Peter Lieven (1):
      qemu-img: simplify img_convert

Thomas Huth (1):
      Issue a deprecation warning if the user specifies the "-hdachs" option.

Vladimir Sementsov-Ogievskiy (1):
      qemu-img: improve convert_iteration_sectors()

 block.c                            |  26 +--
 block/blkdebug.c                   |   8 +-
 block/blkreplay.c                  |   3 -
 block/blkverify.c                  |   3 -
 block/block-backend.c              |   7 +-
 block/commit.c                     |   5 +-
 block/crypto.c                     |   5 +-
 block/file-posix.c                 |  21 ++-
 block/file-win32.c                 |   7 +-
 block/gluster.c                    |   7 +-
 block/io.c                         |  16 +-
 block/iscsi.c                      |   6 +-
 block/mirror.c                     |   2 +-
 block/nfs.c                        |  12 +-
 block/parallels.c                  |  13 +-
 block/qcow.c                       |   6 +-
 block/qcow2-refcount.c             |   5 +-
 block/qcow2.c                      |  31 ++--
 block/qed.c                        |   8 +-
 block/raw-format.c                 |   6 +-
 block/rbd.c                        |   3 +-
 block/sheepdog.c                   |  14 +-
 block/vdi.c                        |   4 +-
 block/vhdx-log.c                   |   2 +-
 block/vhdx.c                       |  25 ++-
 block/vmdk.c                       |  13 +-
 block/vpc.c                        |  13 +-
 blockdev.c                         |  21 +--
 include/block/block.h              |   2 +-
 include/block/block_int.h          |   8 +-
 include/sysemu/block-backend.h     |   4 +-
 migration/savevm.c                 |   8 +
 qemu-img-cmds.hx                   |   8 +-
 qemu-img.c                         | 313 ++++++++++++++-----------------------
 qemu-img.texi                      |   7 +-
 qemu-io-cmds.c                     |   5 +-
 qemu-options.hx                    |   4 +-
 tests/qemu-iotests/026             |   2 +-
 tests/qemu-iotests/026.out         |   2 +-
 tests/qemu-iotests/026.out.nocache |   2 +-
 tests/qemu-iotests/028.out         |   2 +-
 tests/qemu-iotests/051             |   4 +-
 tests/qemu-iotests/051.out         | 109 ++++++-------
 tests/qemu-iotests/051.pc.out      | 135 ++++++++--------
 tests/qemu-iotests/066             |  12 +-
 tests/qemu-iotests/066.out         |  12 +-
 tests/qemu-iotests/068             |   4 +-
 tests/qemu-iotests/068.out         |   6 +-
 tests/qemu-iotests/109             |   6 +-
 tests/qemu-iotests/109.out         |  20 +--
 tests/qemu-iotests/122.out         |   4 +-
 tests/qemu-iotests/130.out         |   4 +-
 tests/qemu-iotests/142             |   2 +-
 tests/qemu-iotests/142.out         |  10 +-
 tests/qemu-iotests/145             |   3 +-
 tests/qemu-iotests/145.out         |   2 +-
 tests/qemu-iotests/181             | 119 ++++++++++++++
 tests/qemu-iotests/181.out         |  38 +++++
 tests/qemu-iotests/common          |  11 +-
 tests/qemu-iotests/common.config   |  24 ---
 tests/qemu-iotests/common.filter   |  13 ++
 tests/qemu-iotests/common.qemu     |   4 +-
 tests/qemu-iotests/common.rc       |   4 +-
 tests/qemu-iotests/group           |   1 +
 util/qemu-progress.c               |   3 +
 vl.c                               |   2 +
 66 files changed, 669 insertions(+), 542 deletions(-)
 create mode 100755 tests/qemu-iotests/181
 create mode 100644 tests/qemu-iotests/181.out

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

end of thread, other threads:[~2017-04-28 20:33 UTC | newest]

Thread overview: 37+ 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
  -- strict thread matches above, loose matches on Subject: below --
2017-04-28 20:33 Kevin Wolf

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