mbox

[PULL,00/15] Kraxel 20220614 patches

Message ID 20220614121610.508356-1-kraxel@redhat.com (mailing list archive)
State New, archived
Headers show

Pull-request

git://git.kraxel.org/qemu tags/kraxel-20220614-pull-request

Message

Gerd Hoffmann June 14, 2022, 12:15 p.m. UTC
The following changes since commit debd0753663bc89c86f5462a53268f2e3f680f60:

  Merge tag 'pull-testing-next-140622-1' of https://github.com/stsquad/qemu into staging (2022-06-13 21:10:57 -0700)

are available in the Git repository at:

  git://git.kraxel.org/qemu tags/kraxel-20220614-pull-request

for you to fetch changes up to b95b56311a0890da0c9f7fc624529c3d7f8dbce0:

  virtio-gpu: Respect UI refresh rate for EDID (2022-06-14 10:34:37 +0200)

----------------------------------------------------------------
usb: add CanoKey device, fixes for ehci + redir
ui: fixes for gtk and cocoa, rework refresh rate
virtio-gpu: scanout flush fix

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

Akihiko Odaki (4):
  ui/cocoa: Fix poweroff request code
  ui/console: Do not return a value with ui_info
  ui: Deliver refresh rate via QemuUIInfo
  virtio-gpu: Respect UI refresh rate for EDID

Arnout Engelen (1):
  hw/usb/hcd-ehci: fix writeback order

Dongwon Kim (1):
  virtio-gpu: update done only on the scanout associated with rect

Hongren (Zenithal) Zheng (6):
  hw/usb: Add CanoKey Implementation
  hw/usb/canokey: Add trace events
  meson: Add CanoKey
  docs: Add CanoKey documentation
  docs/system/devices/usb: Add CanoKey to USB devices examples
  MAINTAINERS: add myself as CanoKey maintainer

Joelle van Dyne (1):
  usbredir: avoid queuing hello packet on snapshot restore

Volker RĂ¼melin (2):
  ui/gtk-gl-area: implement GL context destruction
  ui/gtk-gl-area: create the requested GL context version

 meson_options.txt                |   2 +
 hw/usb/canokey.h                 |  69 +++++++
 include/hw/virtio/virtio-gpu.h   |   1 +
 include/ui/console.h             |   4 +-
 include/ui/gtk.h                 |   2 +-
 hw/display/virtio-gpu-base.c     |   7 +-
 hw/display/virtio-gpu.c          |   4 +
 hw/display/virtio-vga.c          |   5 +-
 hw/display/xenfb.c               |  14 +-
 hw/usb/canokey.c                 | 313 +++++++++++++++++++++++++++++++
 hw/usb/hcd-ehci.c                |   5 +-
 hw/usb/redirect.c                |   3 +-
 hw/vfio/display.c                |   8 +-
 ui/console.c                     |   6 -
 ui/gtk-egl.c                     |   4 +-
 ui/gtk-gl-area.c                 |  42 ++++-
 ui/gtk.c                         |  45 +++--
 MAINTAINERS                      |   8 +
 docs/system/device-emulation.rst |   1 +
 docs/system/devices/canokey.rst  | 168 +++++++++++++++++
 docs/system/devices/usb.rst      |   4 +
 hw/usb/Kconfig                   |   5 +
 hw/usb/meson.build               |   5 +
 hw/usb/trace-events              |  16 ++
 meson.build                      |   6 +
 scripts/meson-buildoptions.sh    |   3 +
 ui/cocoa.m                       |   6 +-
 ui/trace-events                  |   2 +
 28 files changed, 707 insertions(+), 51 deletions(-)
 create mode 100644 hw/usb/canokey.h
 create mode 100644 hw/usb/canokey.c
 create mode 100644 docs/system/devices/canokey.rst

Comments

Richard Henderson June 14, 2022, 3:11 p.m. UTC | #1
On 6/14/22 05:15, Gerd Hoffmann wrote:
> The following changes since commit debd0753663bc89c86f5462a53268f2e3f680f60:
> 
>    Merge tag 'pull-testing-next-140622-1' of https://github.com/stsquad/qemu into staging (2022-06-13 21:10:57 -0700)
> 
> are available in the Git repository at:
> 
>    git://git.kraxel.org/qemu tags/kraxel-20220614-pull-request
> 
> for you to fetch changes up to b95b56311a0890da0c9f7fc624529c3d7f8dbce0:
> 
>    virtio-gpu: Respect UI refresh rate for EDID (2022-06-14 10:34:37 +0200)
> 
> ----------------------------------------------------------------
> usb: add CanoKey device, fixes for ehci + redir
> ui: fixes for gtk and cocoa, rework refresh rate
> virtio-gpu: scanout flush fix

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


r~


> 
> ----------------------------------------------------------------
> 
> Akihiko Odaki (4):
>    ui/cocoa: Fix poweroff request code
>    ui/console: Do not return a value with ui_info
>    ui: Deliver refresh rate via QemuUIInfo
>    virtio-gpu: Respect UI refresh rate for EDID
> 
> Arnout Engelen (1):
>    hw/usb/hcd-ehci: fix writeback order
> 
> Dongwon Kim (1):
>    virtio-gpu: update done only on the scanout associated with rect
> 
> Hongren (Zenithal) Zheng (6):
>    hw/usb: Add CanoKey Implementation
>    hw/usb/canokey: Add trace events
>    meson: Add CanoKey
>    docs: Add CanoKey documentation
>    docs/system/devices/usb: Add CanoKey to USB devices examples
>    MAINTAINERS: add myself as CanoKey maintainer
> 
> Joelle van Dyne (1):
>    usbredir: avoid queuing hello packet on snapshot restore
> 
> Volker RĂ¼melin (2):
>    ui/gtk-gl-area: implement GL context destruction
>    ui/gtk-gl-area: create the requested GL context version
> 
>   meson_options.txt                |   2 +
>   hw/usb/canokey.h                 |  69 +++++++
>   include/hw/virtio/virtio-gpu.h   |   1 +
>   include/ui/console.h             |   4 +-
>   include/ui/gtk.h                 |   2 +-
>   hw/display/virtio-gpu-base.c     |   7 +-
>   hw/display/virtio-gpu.c          |   4 +
>   hw/display/virtio-vga.c          |   5 +-
>   hw/display/xenfb.c               |  14 +-
>   hw/usb/canokey.c                 | 313 +++++++++++++++++++++++++++++++
>   hw/usb/hcd-ehci.c                |   5 +-
>   hw/usb/redirect.c                |   3 +-
>   hw/vfio/display.c                |   8 +-
>   ui/console.c                     |   6 -
>   ui/gtk-egl.c                     |   4 +-
>   ui/gtk-gl-area.c                 |  42 ++++-
>   ui/gtk.c                         |  45 +++--
>   MAINTAINERS                      |   8 +
>   docs/system/device-emulation.rst |   1 +
>   docs/system/devices/canokey.rst  | 168 +++++++++++++++++
>   docs/system/devices/usb.rst      |   4 +
>   hw/usb/Kconfig                   |   5 +
>   hw/usb/meson.build               |   5 +
>   hw/usb/trace-events              |  16 ++
>   meson.build                      |   6 +
>   scripts/meson-buildoptions.sh    |   3 +
>   ui/cocoa.m                       |   6 +-
>   ui/trace-events                  |   2 +
>   28 files changed, 707 insertions(+), 51 deletions(-)
>   create mode 100644 hw/usb/canokey.h
>   create mode 100644 hw/usb/canokey.c
>   create mode 100644 docs/system/devices/canokey.rst
>