qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/22] -Werror=maybe-uninitialized fixes
@ 2024-10-02  8:36 marcandre.lureau
  2024-10-02  8:36 ` [PULL 01/22] util/coroutine: fix -Werror=maybe-uninitialized false-positive marcandre.lureau
                   ` (22 more replies)
  0 siblings, 23 replies; 27+ messages in thread
From: marcandre.lureau @ 2024-10-02  8:36 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell, Marc-André Lureau

From: Marc-André Lureau <marcandre.lureau@redhat.com>

The following changes since commit 718780d20470c66a3a36d036b29148d5809dc855:

  Merge tag 'pull-nvme-20241001' of https://gitlab.com/birkelund/qemu into staging (2024-10-01 11:34:07 +0100)

are available in the Git repository at:

  https://gitlab.com/marcandre.lureau/qemu.git tags/warn-pull-request

for you to fetch changes up to baad82ecfb27474f17f4318502725622ab7170fc:

  qom/object: fix -Werror=maybe-uninitialized (2024-10-02 11:36:12 +0400)

----------------------------------------------------------------
-Werror=maybe-uninitialized fixes

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

Marc-André Lureau (22):
  util/coroutine: fix -Werror=maybe-uninitialized false-positive
  util/timer: fix -Werror=maybe-uninitialized false-positive
  hw/qxl: fix -Werror=maybe-uninitialized false-positives
  nbd: fix -Werror=maybe-uninitialized false-positive
  block/mirror: fix -Werror=maybe-uninitialized false-positive
  block/mirror: fix -Werror=maybe-uninitialized false-positive
  block/stream: fix -Werror=maybe-uninitialized false-positives
  hw/ahci: fix -Werror=maybe-uninitialized false-positive
  hw/vhost-scsi: fix -Werror=maybe-uninitialized
  hw/sdhci: fix -Werror=maybe-uninitialized false-positive
  block/block-copy: fix -Werror=maybe-uninitialized false-positive
  migration: fix -Werror=maybe-uninitialized false-positives
  hw/virtio-blk: fix -Werror=maybe-uninitialized false-positive
  migration: fix -Werror=maybe-uninitialized false-positive
  linux-user/hppa: fix -Werror=maybe-uninitialized false-positive
  target/loongarch: fix -Werror=maybe-uninitialized false-positive
  tests: fix -Werror=maybe-uninitialized false-positive
  hw/virtio: fix -Werror=maybe-uninitialized
  hw/virtio: freeing leaked memory from vhost_svq_get_buf in
    vhost_svq_poll
  block: fix -Werror=maybe-uninitialized false-positive
  fsdep/9p: fix -Werror=maybe-uninitialized false-positive
  qom/object: fix -Werror=maybe-uninitialized

 block/block-copy.c                 |  2 +-
 block/file-posix.c                 |  2 +-
 block/mirror.c                     |  8 ++++----
 block/stream.c                     |  6 +++---
 fsdev/9p-iov-marshal.c             | 15 ++++++++++++---
 hw/block/virtio-blk.c              |  2 +-
 hw/display/qxl.c                   |  4 ++--
 hw/ide/ahci.c                      |  3 ++-
 hw/scsi/vhost-scsi.c               |  2 +-
 hw/sd/sdhci.c                      |  2 +-
 hw/virtio/vhost-shadow-virtqueue.c |  6 ++++--
 linux-user/hppa/cpu_loop.c         |  2 ++
 migration/dirtyrate.c              |  4 ++--
 migration/migration.c              |  2 +-
 migration/ram.c                    |  2 +-
 nbd/client-connection.c            |  2 +-
 qom/object.c                       |  2 +-
 target/loongarch/gdbstub.c         | 26 ++++++++++++++------------
 tests/unit/test-bdrv-drain.c       |  2 +-
 tests/unit/test-block-iothread.c   |  2 +-
 util/qemu-coroutine.c              |  2 +-
 util/qemu-timer.c                  |  6 +++---
 roms/openbios                      |  2 +-
 23 files changed, 61 insertions(+), 45 deletions(-)

-- 
2.45.2.827.g557ae147e6



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

end of thread, other threads:[~2024-10-02 12:12 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-02  8:36 [PULL 00/22] -Werror=maybe-uninitialized fixes marcandre.lureau
2024-10-02  8:36 ` [PULL 01/22] util/coroutine: fix -Werror=maybe-uninitialized false-positive marcandre.lureau
2024-10-02  8:36 ` [PULL 02/22] util/timer: " marcandre.lureau
2024-10-02  8:36 ` [PULL 03/22] hw/qxl: fix -Werror=maybe-uninitialized false-positives marcandre.lureau
2024-10-02  8:40   ` Thomas Huth
2024-10-02  8:36 ` [PULL 04/22] nbd: fix -Werror=maybe-uninitialized false-positive marcandre.lureau
2024-10-02  8:36 ` [PULL 05/22] block/mirror: " marcandre.lureau
2024-10-02  8:36 ` [PULL 06/22] " marcandre.lureau
2024-10-02  8:36 ` [PULL 07/22] block/stream: fix -Werror=maybe-uninitialized false-positives marcandre.lureau
2024-10-02  8:36 ` [PULL 08/22] hw/ahci: fix -Werror=maybe-uninitialized false-positive marcandre.lureau
2024-10-02  8:36 ` [PULL 09/22] hw/vhost-scsi: fix -Werror=maybe-uninitialized marcandre.lureau
2024-10-02  8:36 ` [PULL 10/22] hw/sdhci: fix -Werror=maybe-uninitialized false-positive marcandre.lureau
2024-10-02  8:36 ` [PULL 11/22] block/block-copy: " marcandre.lureau
2024-10-02  8:36 ` [PULL 12/22] migration: fix -Werror=maybe-uninitialized false-positives marcandre.lureau
2024-10-02  8:36 ` [PULL 13/22] hw/virtio-blk: fix -Werror=maybe-uninitialized false-positive marcandre.lureau
2024-10-02  8:36 ` [PULL 14/22] migration: " marcandre.lureau
2024-10-02  8:36 ` [PULL 15/22] linux-user/hppa: " marcandre.lureau
2024-10-02  8:36 ` [PULL 16/22] target/loongarch: " marcandre.lureau
2024-10-02  8:36 ` [PULL 17/22] tests: " marcandre.lureau
2024-10-02  8:36 ` [PULL 18/22] hw/virtio: fix -Werror=maybe-uninitialized marcandre.lureau
2024-10-02  8:36 ` [PULL 19/22] hw/virtio: freeing leaked memory from vhost_svq_get_buf in vhost_svq_poll marcandre.lureau
2024-10-02  8:36 ` [PULL 20/22] block: fix -Werror=maybe-uninitialized false-positive marcandre.lureau
2024-10-02  8:36 ` [PULL 21/22] fsdep/9p: " marcandre.lureau
2024-10-02  8:36 ` [PULL 22/22] qom/object: fix -Werror=maybe-uninitialized marcandre.lureau
2024-10-02  8:42 ` [PULL 00/22] -Werror=maybe-uninitialized fixes Thomas Huth
2024-10-02  8:45   ` Marc-André Lureau
2024-10-02 12:11     ` 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).