[PULL v2 00/21] NBD and miscellaneous patches for 2023-06-01

Eric Blake posted 21 patches 10 months, 3 weeks ago
Only 2 patches received!
docs/interop/qcow2.txt           |    1 +
include/qemu/cutils.h            |    5 +-
audio/audio_legacy.c             |    4 +-
block/gluster.c                  |    4 +-
block/nfs.c                      |    4 +-
blockdev.c                       |    4 +-
contrib/ivshmem-server/main.c    |    4 +-
hw/core/numa.c                   |   11 +-
qapi/opts-visitor.c              |   12 +-
tests/unit/test-cutils.c         | 2469 ++++++++++++++++++++++++++++----------
ui/vnc.c                         |    4 +-
util/cutils.c                    |  263 ++--
util/guest-random.c              |    4 +-
util/qemu-sockets.c              |   10 +-
tests/qemu-iotests/common.filter |    4 +-
tests/qemu-iotests/common.rc     |    3 +-
tests/qemu-iotests/049.out       |    7 +-
tests/qemu-iotests/178.out.qcow2 |    3 +-
tests/qemu-iotests/178.out.raw   |    3 +-
19 files changed, 2036 insertions(+), 783 deletions(-)
[PULL v2 00/21] NBD and miscellaneous patches for 2023-06-01
Posted by Eric Blake 10 months, 3 weeks ago
The following changes since commit a86d7b9ec0adb2f1efce8ab30d9ed2b72db0236e:

  Merge tag 'migration-20230601-pull-request' of https://gitlab.com/juan.quintela/qemu into staging (2023-06-01 20:59:28 -0700)

are available in the Git repository at:

  https://repo.or.cz/qemu/ericb.git tags/pull-nbd-2023-06-01-v2

for you to fetch changes up to 42cc08d13ab8e68f76882b216da0b28d06f29e11:

  cutils: Improve qemu_strtosz handling of fractions (2023-06-02 12:29:27 -0500)

In v2:
- fix build failure on mingw [CI, via Richard]
- drop dead comparisons to UINT64_MAX [Markus]

only the changed patches are re-posted

----------------------------------------------------------------
nbd and misc patches for 2023-06-01

- Eric Blake: Fix iotest 104 for NBD
- Eric Blake: Improve qcow2 spec on padding bytes
- Eric Blake: Fix read-beyond-bounds bug in qemu_strtosz

----------------------------------------------------------------
Eric Blake (21):
      iotests: Fix test 104 under NBD
      qcow2: Explicit mention of padding bytes
      test-cutils: Avoid g_assert in unit tests
      test-cutils: Use g_assert_cmpuint where appropriate
      test-cutils: Test integral qemu_strto* value on failures
      test-cutils: Test more integer corner cases
      cutils: Fix wraparound parsing in qemu_strtoui
      cutils: Document differences between parse_uint and qemu_strtou64
      cutils: Adjust signature of parse_uint[_full]
      cutils: Allow NULL endptr in parse_uint()
      test-cutils: Add coverage of qemu_strtod
      test-cutils: Prepare for upcoming semantic change in qemu_strtosz
      test-cutils: Refactor qemu_strtosz tests for less boilerplate
      cutils: Allow NULL str in qemu_strtosz
      numa: Check for qemu_strtosz_MiB error
      test-cutils: Add more coverage to qemu_strtosz
      cutils: Set value in all qemu_strtosz* error paths
      cutils: Set value in all integral qemu_strto* error paths
      cutils: Use parse_uint in qemu_strtosz for negative rejection
      cutils: Improve qemu_strtod* error paths
      cutils: Improve qemu_strtosz handling of fractions

 docs/interop/qcow2.txt           |    1 +
 include/qemu/cutils.h            |    5 +-
 audio/audio_legacy.c             |    4 +-
 block/gluster.c                  |    4 +-
 block/nfs.c                      |    4 +-
 blockdev.c                       |    4 +-
 contrib/ivshmem-server/main.c    |    4 +-
 hw/core/numa.c                   |   11 +-
 qapi/opts-visitor.c              |   12 +-
 tests/unit/test-cutils.c         | 2469 ++++++++++++++++++++++++++++----------
 ui/vnc.c                         |    4 +-
 util/cutils.c                    |  263 ++--
 util/guest-random.c              |    4 +-
 util/qemu-sockets.c              |   10 +-
 tests/qemu-iotests/common.filter |    4 +-
 tests/qemu-iotests/common.rc     |    3 +-
 tests/qemu-iotests/049.out       |    7 +-
 tests/qemu-iotests/178.out.qcow2 |    3 +-
 tests/qemu-iotests/178.out.raw   |    3 +-
 19 files changed, 2036 insertions(+), 783 deletions(-)

-- 
2.40.1
Re: [PULL v2 00/21] NBD and miscellaneous patches for 2023-06-01
Posted by Richard Henderson 10 months, 3 weeks ago
On 6/2/23 10:33, Eric Blake wrote:
> The following changes since commit a86d7b9ec0adb2f1efce8ab30d9ed2b72db0236e:
> 
>    Merge tag 'migration-20230601-pull-request' ofhttps://gitlab.com/juan.quintela/qemu  into staging (2023-06-01 20:59:28 -0700)
> 
> are available in the Git repository at:
> 
>    https://repo.or.cz/qemu/ericb.git  tags/pull-nbd-2023-06-01-v2
> 
> for you to fetch changes up to 42cc08d13ab8e68f76882b216da0b28d06f29e11:
> 
>    cutils: Improve qemu_strtosz handling of fractions (2023-06-02 12:29:27 -0500)
> 
> In v2:
> - fix build failure on mingw [CI, via Richard]
> - drop dead comparisons to UINT64_MAX [Markus]
> 
> only the changed patches are re-posted
> 
> ----------------------------------------------------------------
> nbd and misc patches for 2023-06-01
> 
> - Eric Blake: Fix iotest 104 for NBD
> - Eric Blake: Improve qcow2 spec on padding bytes
> - Eric Blake: Fix read-beyond-bounds bug in qemu_strtosz

Applied, thanks.  Please update https://wiki.qemu.org/ChangeLog/8.1 as appropriate.


r~