mbox

[PULL,00/16] Block patches

Message ID 1421422633-25536-1-git-send-email-stefanha@redhat.com
State New
Headers show

Pull-request

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

Message

Stefan Hajnoczi Jan. 16, 2015, 3:36 p.m. UTC
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

Comments

Peter Maydell Jan. 16, 2015, 4:46 p.m. UTC | #1
On 16 January 2015 at 15:36, Stefan Hajnoczi <stefanha@redhat.com> wrote:
> 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)

Hi. I'm afraid this doesn't build on all platforms, due to
dependencies on newer glib versions than our minimum
requirement.

OSX:

  CC    tests/test-write-threshold.o
/Users/pm215/src/qemu/tests/test-write-threshold.c:21:5: warning:
implicit declaration of function
      'g_assert_false' is invalid in C99 [-Wimplicit-function-declaration]
    g_assert_false(bdrv_write_threshold_is_set(&bs));
    ^
1 warning generated.
  LINK  tests/test-write-threshold
Undefined symbols for architecture x86_64:
  "_g_assert_false", referenced from:
      _test_threshold_not_set_on_init in test-write-threshold.o
ld: symbol(s) not found for architecture x86_64

CentOS5:

../block/dmg.o: In function `dmg_read_plist_xml':
/home/petmay01/linaro/qemu-for-merges/block/dmg.c:414: undefined
reference to `g_base64_decode_inplace'

-- PMM