Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: qemu/qemu
base: 276d72ca1b90
Choose a base ref
...
head repository: qemu/qemu
compare: 9e7ce9ebce07
Choose a head ref
  • 11 commits
  • 12 files changed
  • 8 contributors

Commits on Jul 8, 2023

  1. hw/riscv/virt.c: fix typo in 'aia' description

    Cc: qemu-trivial@nongnu.org
    Signed-off-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com>
    Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
    Reviewed-by: Weiwei Li <liweiwei@iscas.ac.cn>
    Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
    danielhb authored and Michael Tokarev committed Jul 8, 2023
    Copy the full SHA
    c92ac07 View commit details
    Browse the repository at this point in the history
  2. target/avr: Fix handling of interrupts above 33.

    This commit addresses a bug in the AVR interrupt handling code.
    The modification involves replacing the usage of the ctz32 function
    with ctz64 to ensure proper handling of interrupts above 33 in the AVR
    target.
    
    Previously, timers 3, 4, and 5 interrupts were not functioning correctly
    because most of their interrupt vectors are numbered above 33.
    
    Signed-off-by: Lucas Dietrich <ld.adecy@gmail.com>
    Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
    Reviewed-by: Michael Rolnik <mrolnik@gmail.com>
    Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
    (Mjt: updated subject line to have subsytem prefix)
    lucasdietrich authored and Michael Tokarev committed Jul 8, 2023
    Copy the full SHA
    fc97167 View commit details
    Browse the repository at this point in the history
  3. trivial: man page: document display::gtk::zoom-to-fit

    Document display::gtk::zoom-to-fit.
    
    info from: https://superuser.com/questions/1752209/qemu-zoom-to-fit-shortcut-or-cli-switch
    
    Signed-off-by: Jan Kratochvil <jan@jankratochvil.net>
    Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
    jankratochvil authored and Michael Tokarev committed Jul 8, 2023
    Copy the full SHA
    c35d937 View commit details
    Browse the repository at this point in the history
  4. hw: Simplify calls to pci_nic_init_nofail()

    pci_nic_init_nofail() calls qemu_find_nic_model(), and this function
    sets nd->model = g_strdup(default_model) if it has not been initialized
    yet. So we don't have to set nd->model to the default_nic in the
    calling sites.
    
    Signed-off-by: Thomas Huth <thuth@redhat.com>
    Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
    Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
    huth authored and Michael Tokarev committed Jul 8, 2023
    Copy the full SHA
    b697a48 View commit details
    Browse the repository at this point in the history
  5. vdpa: Delete duplicated VIRTIO_NET_F_RSS in vdpa_feature_bits

    This entry was duplicated on referenced commit. Removing it.
    
    Fixes: 4023784 ("vhost-vdpa: multiqueue support")
    Signed-off-by: Hawkins Jiawei <yin31149@gmail.com>
    Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
    Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
    JiaweiHawk authored and Michael Tokarev committed Jul 8, 2023
    Copy the full SHA
    aee9701 View commit details
    Browse the repository at this point in the history
  6. vdpa: Sort vdpa_feature_bits array alphabetically

    This patch sorts the vdpa_feature_bits array
    alphabetically in ascending order to avoid future duplicates.
    
    Signed-off-by: Hawkins Jiawei <yin31149@gmail.com>
    Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
    JiaweiHawk authored and Michael Tokarev committed Jul 8, 2023
    Copy the full SHA
    2875a0c View commit details
    Browse the repository at this point in the history
  7. qemu-options.hx: Fix indentation of some option descriptions

    The description of the options starts at column 16, so fix
    this in some runaway lines for a more uniform output.
    
    While we're at it, replace the capital "NOTE" with "Note"
    since this seems to be the more common capitalization in
    qemu-options.hx.
    
    Signed-off-by: Thomas Huth <thuth@redhat.com>
    Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
    huth authored and Michael Tokarev committed Jul 8, 2023
    Copy the full SHA
    a635bcf View commit details
    Browse the repository at this point in the history
  8. migration: factor out "resume_requested" in qmp_migrate()

    It cuts back on those awkward, duplicated !(has_resume && resume)
    expressions.
    
    Cc: Juan Quintela <quintela@redhat.com> (maintainer:Migration)
    Cc: Leonardo Bras <leobras@redhat.com> (reviewer:Migration)
    Cc: Peter Xu <peterx@redhat.com> (reviewer:Migration)
    Cc: qemu-trivial@nongnu.org
    Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2018404
    Signed-off-by: Laszlo Ersek <lersek@redhat.com>
    Reviewed-by: Juan Quintela <quintela@redhat.com>
    Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
    Reviewed-by: Peter Xu <peterx@redhat.com>
    Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
    Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
    lersek authored and Michael Tokarev committed Jul 8, 2023
    Copy the full SHA
    8c69ae9 View commit details
    Browse the repository at this point in the history
  9. migration: unexport migrate_fd_error()

    The only migrate_fd_error() call sites are in "migration/migration.c",
    which is also where we define migrate_fd_error(). Make the function
    static, and remove its declaration from "migration/migration.h".
    
    Cc: Juan Quintela <quintela@redhat.com> (maintainer:Migration)
    Cc: Leonardo Bras <leobras@redhat.com> (reviewer:Migration)
    Cc: Peter Xu <peterx@redhat.com> (reviewer:Migration)
    Cc: qemu-trivial@nongnu.org
    Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2018404
    Signed-off-by: Laszlo Ersek <lersek@redhat.com>
    Reviewed-by: Juan Quintela <quintela@redhat.com>
    Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
    Reviewed-by: Peter Xu <peterx@redhat.com>
    Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
    Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
    lersek authored and Michael Tokarev committed Jul 8, 2023
    Copy the full SHA
    aaf26bd View commit details
    Browse the repository at this point in the history
  10. hw/arm/virt-acpi-build.c: Add missing header

    virt-acpi-build.c uses warn_report. However, it doesn't include
    qemu/error-report.h directly, it include qemu/error-report.h via trace.h
    if we enable log trace backend. But if we disable the log trace backend
    (e.g., --enable-trace-backends=nop), then virt-acpi-build.c will not
    include qemu/error-report.h any more and it will lead to build errors.
    Include qemu/error-report.h directly in virt-acpi-build.c to avoid the
    errors.
    
    Fixes: 451b157 ("acpi: Align the size to 128k")
    Signed-off-by: Peng Liang <tcx4c70@gmail.com>
    Reviewed-by: Ani Sinha <anisinha@redhat.com>
    Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
    Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
    (mjt: move the #include higher as suggested by Ani Sinha)
    tcx4c70 authored and Michael Tokarev committed Jul 8, 2023
    Copy the full SHA
    13a6374 View commit details
    Browse the repository at this point in the history
  11. Merge tag 'trivial-patches-20230708' of https://gitlab.com/mjt0k/qemu

    …into staging
    
    qemu trivial patches for 2023-07-08
    
    # -----BEGIN PGP SIGNATURE-----
    #
    # iQFDBAABCAAtFiEEe3O61ovnosKJMUsicBtPaxppPlkFAmSo5UsPHG1qdEB0bHMu
    # bXNrLnJ1AAoJEHAbT2saaT5ZIygH/0z5heVC4CnU5sNuv8GRbXZL7sOXxvoOQf9K
    # dEBD0/Lzu8QL7mJBpqPuzK4FN/CNnY2nUaGGn3k7U44MrsU6g2P5ksD4Y0hUebkZ
    # sw+bsaqDeG0J+kZ9IN4V1iLoyGGQ53GDynisZMWY8w/hDmCkoRe5Xy2LZrXS7fgw
    # LVT04wlxTYG/EwXqMukBYd/S/lap8pUnzgc+VngHmX5gBF4O7qIAZV1j5WobIW6S
    # /OOOOBZ4YJU9Ha18H4DWrE5+ptfE2sfWAO0z+c/v3bpNTUb9bCyNIE3R3mUwg7z6
    # i/96za3R9XH0ChoBWrKHtFn5wygUMGHt63JwIph0bwr73ENVlrE=
    # =4nBR
    # -----END PGP SIGNATURE-----
    # gpg: Signature made Sat 08 Jul 2023 05:25:47 AM BST
    # gpg:                using RSA key 7B73BAD68BE7A2C289314B22701B4F6B1A693E59
    # gpg:                issuer "mjt@tls.msk.ru"
    # gpg: Good signature from "Michael Tokarev <mjt@tls.msk.ru>" [undefined]
    # gpg:                 aka "Michael Tokarev <mjt@debian.org>" [undefined]
    # gpg:                 aka "Michael Tokarev <mjt@corpit.ru>" [undefined]
    # gpg: WARNING: This key is not certified with a trusted signature!
    # gpg:          There is no indication that the signature belongs to the owner.
    # Primary key fingerprint: 6EE1 95D1 886E 8FFB 810D  4324 457C E0A0 8044 65C5
    #      Subkey fingerprint: 7B73 BAD6 8BE7 A2C2 8931  4B22 701B 4F6B 1A69 3E59
    
    * tag 'trivial-patches-20230708' of https://gitlab.com/mjt0k/qemu:
      hw/arm/virt-acpi-build.c: Add missing header
      migration: unexport migrate_fd_error()
      migration: factor out "resume_requested" in qmp_migrate()
      qemu-options.hx: Fix indentation of some option descriptions
      vdpa: Sort vdpa_feature_bits array alphabetically
      vdpa: Delete duplicated VIRTIO_NET_F_RSS in vdpa_feature_bits
      hw: Simplify calls to pci_nic_init_nofail()
      trivial: man page: document display::gtk::zoom-to-fit
      target/avr: Fix handling of interrupts above 33.
      hw/riscv/virt.c: fix typo in 'aia' description
    
    Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
    rth7680 committed Jul 8, 2023
    Copy the full SHA
    9e7ce9e View commit details
    Browse the repository at this point in the history