mbox

[PULL,00/23] Trivial patches for 2024-10-04

Message ID 20241004160331.1282441-1-mjt@tls.msk.ru
State New
Headers show

Pull-request

https://gitlab.com/mjt0k/qemu.git tags/pull-trivial-patches

Message

Michael Tokarev Oct. 4, 2024, 4:03 p.m. UTC
The following changes since commit 423be09ab9492735924e73a2d36069784441ebc6:

  Merge tag 'warn-pull-request' of https://gitlab.com/marcandre.lureau/qemu into staging (2024-10-03 10:32:54 +0100)

are available in the Git repository at:

  https://gitlab.com/mjt0k/qemu.git tags/pull-trivial-patches

for you to fetch changes up to 6b7d2f6e1896fb675e8518ed61c792d4dd92e034:

  MAINTAINERS: Add myself as maintainer of e500 machines (2024-10-04 18:57:38 +0300)

----------------------------------------------------------------
trivial patches for 2024-10-04

- many dead code removals by Dr. David Alan Gilbert
- forgotten minor bugfixes (vnc, resource freeing in qemu-keymap)
- some more..

----------------------------------------------------------------
Akihiko Odaki (1):
      qemu-keymap: Release local allocation references

Bernhard Beschow (1):
      MAINTAINERS: Add myself as maintainer of e500 machines

Dr. David Alan Gilbert (14):
      hw/xen: Remove deadcode
      q35: Remove unused mch_mcfg_base
      net: Remove deadcode
      hw/net/net_rx_pkt: Remove deadcode
      hw/char: Remove unused serial_set_frequency
      linux-user: Remove unused handle_vm86_fault
      hw: Remove unused fw_cfg_init_io
      ui/cursor: remove cursor_get_mono_image
      vhost: Remove unused vhost_dev_{load|save}_inflight
      remote: Remove unused remote_iohub_finalize
      replay: Remove unused replay_disable_events
      hw/pci: Remove unused pcie_chassis_find_slot
      hw/net/rocker: Remove unused rocker_fp_ports
      block-backend: Remove deadcode

Laurent Vivier (1):
      MAINTAINERS: remove gensyscalls.sh from the linux-user section

Marc-André Lureau (1):
      vnc: fix crash when no console attached

Peter Maydell (1):
      docs/devel: Mention post_load hook restrictions where we document the hook

Philippe Mathieu-Daudé (2):
      hw/audio/virtio-snd: Remove unnecessary "exec/tswap.h" header
      hw/mips: Build fw_cfg.c once

Thomas Huth (2):
      tests/tcg/plugins: Remove remainder of the cris target
      tests/functional: Fix hash validation

 MAINTAINERS                                 |   7 +-
 block/block-backend.c                       |  73 ---------------
 docs/devel/migration/main.rst               |   6 ++
 docs/devel/replay.rst                       |   3 +
 hw/audio/virtio-snd.c                       |   1 -
 hw/char/serial.c                            |   7 --
 hw/mips/meson.build                         |   2 +-
 hw/net/net_rx_pkt.c                         |  13 ---
 hw/net/net_rx_pkt.h                         |  17 ----
 hw/net/rocker/rocker.c                      |   5 -
 hw/net/rocker/rocker.h                      |   1 -
 hw/nvram/fw_cfg.c                           |   5 -
 hw/pci-host/q35.c                           |  10 --
 hw/pci/pcie_port.c                          |  10 --
 hw/remote/iohub.c                           |  13 ---
 hw/virtio/vhost.c                           |  56 ------------
 hw/xen/xen-legacy-backend.c                 |  18 ----
 hw/xen/xen_devconfig.c                      |   8 --
 include/hw/char/serial.h                    |   2 -
 include/hw/nvram/fw_cfg.h                   |   1 -
 include/hw/pci-host/q35.h                   |   2 -
 include/hw/pci/pcie_port.h                  |   1 -
 include/hw/remote/iohub.h                   |   1 -
 include/hw/virtio/vhost.h                   |   2 -
 include/hw/xen/xen-legacy-backend.h         |   5 -
 include/net/net.h                           |   4 -
 include/net/queue.h                         |   4 -
 include/sysemu/block-backend-global-state.h |   8 --
 include/sysemu/replay.h                     |   2 -
 include/ui/console.h                        |   1 -
 linux-user/user-internals.h                 |   1 -
 linux-user/vm86.c                           | 136 ----------------------------
 net/hub.c                                   |  25 -----
 net/net.c                                   |  10 --
 net/queue.c                                 |  11 ---
 qemu-keymap.c                               |   9 +-
 replay/replay-events.c                      |   9 --
 tests/functional/qemu_test/asset.py         |   2 +-
 tests/tcg/plugins/syscall.c                 |   1 -
 ui/cursor.c                                 |  24 -----
 ui/vnc.c                                    |   2 +-
 41 files changed, 22 insertions(+), 496 deletions(-)

Comments

Peter Maydell Oct. 4, 2024, 6:26 p.m. UTC | #1
On Fri, 4 Oct 2024 at 17:07, Michael Tokarev <mjt@tls.msk.ru> wrote:
>
> The following changes since commit 423be09ab9492735924e73a2d36069784441ebc6:
>
>   Merge tag 'warn-pull-request' of https://gitlab.com/marcandre.lureau/qemu into staging (2024-10-03 10:32:54 +0100)
>
> are available in the Git repository at:
>
>   https://gitlab.com/mjt0k/qemu.git tags/pull-trivial-patches
>
> for you to fetch changes up to 6b7d2f6e1896fb675e8518ed61c792d4dd92e034:
>
>   MAINTAINERS: Add myself as maintainer of e500 machines (2024-10-04 18:57:38 +0300)
>
> ----------------------------------------------------------------
> trivial patches for 2024-10-04
>
> - many dead code removals by Dr. David Alan Gilbert
> - forgotten minor bugfixes (vnc, resource freeing in qemu-keymap)
> - some more..


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/9.2
for any user-visible changes.

-- PMM