[PULL 00/35] Kraxel 20220304 patches

Gerd Hoffmann posted 35 patches 2 years, 1 month ago
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20220304142123.956171-1-kraxel@redhat.com
Maintainers: Gerd Hoffmann <kraxel@redhat.com>, Christian Schoenebeck <qemu_oss@crudebyte.com>, Akihiko Odaki <akihiko.odaki@gmail.com>, Thomas Huth <huth@tuxfamily.org>, "Philippe Mathieu-Daudé" <f4bug@amsat.org>, "Michael S. Tsirkin" <mst@redhat.com>, Marcel Apfelbaum <marcel.apfelbaum@gmail.com>, Paolo Bonzini <pbonzini@redhat.com>, Richard Henderson <richard.henderson@linaro.org>, Eduardo Habkost <eduardo@habkost.net>, "Daniel P. Berrangé" <berrange@redhat.com>, Peter Maydell <peter.maydell@linaro.org>
audio/audio_int.h                 |  20 +-
audio/alsaaudio.c                 |   1 +
audio/audio.c                     | 200 +++++++++++---------
audio/coreaudio.c                 |  15 +-
audio/dsoundaudio.c               |  30 +--
audio/jackaudio.c                 |   5 +-
audio/noaudio.c                   |   1 +
audio/ossaudio.c                  |  17 +-
audio/paaudio.c                   |  63 +++---
audio/sdlaudio.c                  |  21 +-
audio/wavaudio.c                  |   1 +
hw/display/edid-generate.c        |  66 ++++---
hw/display/vmware_vga.c           |  30 +--
hw/i386/pc_sysfw_ovmf.c           |  18 +-
hw/usb/dev-mtp.c                  |   4 +-
hw/usb/hcd-ohci.c                 | 305 +++++++++++++++---------------
hw/usb/hcd-xhci.c                 |   2 +-
hw/usb/redirect.c                 |  17 +-
softmmu/qdev-monitor.c            |   2 +
ui/clipboard.c                    |   6 +-
ui/console-gl.c                   |   4 +
ui/console.c                      |  29 +--
docs/specs/index.rst              |   1 +
docs/specs/sev-guest-firmware.rst | 125 ++++++++++++
hw/display/trace-events           |   3 +
hw/usb/trace-events               |   2 +-
ui/cocoa.m                        |   4 +
27 files changed, 614 insertions(+), 378 deletions(-)
create mode 100644 docs/specs/sev-guest-firmware.rst
[PULL 00/35] Kraxel 20220304 patches
Posted by Gerd Hoffmann 2 years, 1 month ago
The following changes since commit 6629bf78aac7e53f83fd0bcbdbe322e2302dfd1f:

  Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20220302' into staging (2022-03-03 14:46:48 +0000)

are available in the Git repository at:

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

for you to fetch changes up to 02218aedb1c851340207db89b8eeb96843fed241:

  hw/display/vmware_vga: replace fprintf calls with trace events (2022-03-04 11:38:07 +0100)

----------------------------------------------------------------
usb: fixes for ohci, xhci, mtp and redirect
audio: latency fixes
ui: opengl and cocoa fixes
firmware: ovmf tabel aprser fixes

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

Akihiko Odaki (4):
  coreaudio: Notify error in coreaudio_init_out
  ui/cocoa: Add Services menu
  softmmu/qdev-monitor: Add virtio-gpu-gl aliases
  edid: Fix clock of Detailed Timing Descriptor

BALATON Zoltan (5):
  usb/ohci: Move trace point and log ep number to help debugging
  usb/ohci: Move cancelling async packet to ohci_stop_endpoints()
  usb/ohci: Move USBPortOps related functions together
  usb/ohci: Merge ohci_async_cancel_device() into ohci_child_detach()
  usb/ohci: Don't use packet from OHCIState for isochronous transfers

Carwyn Ellis (1):
  hw/display/vmware_vga: replace fprintf calls with trace events

Denis V. Lunev (1):
  hw/usb: pacify xhciwmi.exe warning

Dov Murik (3):
  hw/i386: Improve bounds checking in OVMF table parsing
  hw/i386: Replace magic number with field length calculation
  docs: Add spec of OVMF GUIDed table for SEV guests

Marc-André Lureau (4):
  ui/console: fix crash when using gl context with non-gl listeners
  ui/console: fix texture leak when calling surface_gl_create_texture()
  ui: do not create a surface when resizing a GL scanout
  ui/clipboard: fix use-after-free regression

Peter Maydell (1):
  hw/usb/redirect.c: Stop using qemu_oom_check()

Volker Rümelin (16):
  hw/usb/dev-mtp: create directories with a+x mode mask
  audio: replace open-coded buffer arithmetic
  audio: move function audio_pcm_hw_clip_out()
  audio: add function audio_pcm_hw_conv_in()
  audio: inline function audio_pcm_sw_get_rpos_in()
  paaudio: increase default latency to 46ms
  jackaudio: use more jack audio buffers
  audio: copy playback stream in sequential order
  audio: add pcm_ops function table for capture backend
  Revert "audio: fix wavcapture segfault"
  audio: restore mixing-engine playback buffer size
  paaudio: reduce effective playback buffer size
  dsoundaudio: reduce effective playback buffer size
  ossaudio: reduce effective playback buffer size
  paaudio: fix samples vs. frames mix-up
  sdlaudio: fix samples vs. frames mix-up

 audio/audio_int.h                 |  20 +-
 audio/alsaaudio.c                 |   1 +
 audio/audio.c                     | 200 +++++++++++---------
 audio/coreaudio.c                 |  15 +-
 audio/dsoundaudio.c               |  30 +--
 audio/jackaudio.c                 |   5 +-
 audio/noaudio.c                   |   1 +
 audio/ossaudio.c                  |  17 +-
 audio/paaudio.c                   |  63 +++---
 audio/sdlaudio.c                  |  21 +-
 audio/wavaudio.c                  |   1 +
 hw/display/edid-generate.c        |  66 ++++---
 hw/display/vmware_vga.c           |  30 +--
 hw/i386/pc_sysfw_ovmf.c           |  18 +-
 hw/usb/dev-mtp.c                  |   4 +-
 hw/usb/hcd-ohci.c                 | 305 +++++++++++++++---------------
 hw/usb/hcd-xhci.c                 |   2 +-
 hw/usb/redirect.c                 |  17 +-
 softmmu/qdev-monitor.c            |   2 +
 ui/clipboard.c                    |   6 +-
 ui/console-gl.c                   |   4 +
 ui/console.c                      |  29 +--
 docs/specs/index.rst              |   1 +
 docs/specs/sev-guest-firmware.rst | 125 ++++++++++++
 hw/display/trace-events           |   3 +
 hw/usb/trace-events               |   2 +-
 ui/cocoa.m                        |   4 +
 27 files changed, 614 insertions(+), 378 deletions(-)
 create mode 100644 docs/specs/sev-guest-firmware.rst

-- 
2.35.1

Re: [PULL 00/35] Kraxel 20220304 patches
Posted by Peter Maydell 2 years, 1 month ago
On Fri, 4 Mar 2022 at 14:21, Gerd Hoffmann <kraxel@redhat.com> wrote:
>
> The following changes since commit 6629bf78aac7e53f83fd0bcbdbe322e2302dfd1f:
>
>   Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20220302' into staging (2022-03-03 14:46:48 +0000)
>
> are available in the Git repository at:
>
>   git://git.kraxel.org/qemu tags/kraxel-20220304-pull-request
>
> for you to fetch changes up to 02218aedb1c851340207db89b8eeb96843fed241:
>
>   hw/display/vmware_vga: replace fprintf calls with trace events (2022-03-04 11:38:07 +0100)
>
> ----------------------------------------------------------------
> usb: fixes for ohci, xhci, mtp and redirect
> audio: latency fixes
> ui: opengl and cocoa fixes
> firmware: ovmf tabel aprser fixes
>
> ----------------------------------------------------------------


Applied, thanks.

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

-- PMM