[PULL 0/4] chardev patches & a small audio fix

marcandre.lureau@redhat.com posted 4 patches 3 years, 5 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20220902131412.3125752-1-marcandre.lureau@redhat.com
Maintainers: Gerd Hoffmann <kraxel@redhat.com>, "Marc-André Lureau" <marcandre.lureau@redhat.com>, Paolo Bonzini <pbonzini@redhat.com>, Stefan Weil <sw@weilnetz.de>, "Daniel P. Berrangé" <berrange@redhat.com>
meson.build                         |  3 +++
audio/audio.h                       |  2 +-
include/sysemu/os-win32.h           | 17 +++++++++++++
tests/unit/socket-helpers.h         |  9 +++++++
audio/audio.c                       | 14 ++++++++---
chardev/char-socket.c               |  4 ++--
softmmu/vl.c                        |  4 +++-
tests/unit/socket-helpers.c         | 16 +++++++++++++
tests/unit/test-io-channel-socket.c | 37 ++++++++++++++++++-----------
util/qemu-sockets.c                 | 25 -------------------
10 files changed, 85 insertions(+), 46 deletions(-)
[PULL 0/4] chardev patches & a small audio fix
Posted by marcandre.lureau@redhat.com 3 years, 5 months ago
From: Marc-André Lureau <marcandre.lureau@redhat.com>

The following changes since commit 93fac696d241dccb04ebb9d23da55fc1e9d8ee36:

  Open 7.2 development tree (2022-08-30 09:40:41 -0700)

are available in the Git repository at:

  git@gitlab.com:marcandre.lureau/qemu.git tags/char-pull-request

for you to fetch changes up to 0f957c53c84d655f2e99677d407cf2bbe1832de4:

  audio: exit(1) if audio backend failed to be found or initialized (2022-09-02 15:54:47 +0400)

----------------------------------------------------------------
chardev patches & small audio fix

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

Bin Meng (3):
  util/qemu-sockets: Enable unix socket support on Windows
  chardev/char-socket: Update AF_UNIX for Windows
  tests/unit: Update test-io-channel-socket.c for Windows

Marc-André Lureau (1):
  audio: exit(1) if audio backend failed to be found or initialized

 meson.build                         |  3 +++
 audio/audio.h                       |  2 +-
 include/sysemu/os-win32.h           | 17 +++++++++++++
 tests/unit/socket-helpers.h         |  9 +++++++
 audio/audio.c                       | 14 ++++++++---
 chardev/char-socket.c               |  4 ++--
 softmmu/vl.c                        |  4 +++-
 tests/unit/socket-helpers.c         | 16 +++++++++++++
 tests/unit/test-io-channel-socket.c | 37 ++++++++++++++++++-----------
 util/qemu-sockets.c                 | 25 -------------------
 10 files changed, 85 insertions(+), 46 deletions(-)

-- 
2.37.2


Re: [PULL 0/4] chardev patches & a small audio fix
Posted by Stefan Hajnoczi 3 years, 5 months ago
On Fri, 2 Sept 2022 at 09:24, <marcandre.lureau@redhat.com> wrote:
>
> From: Marc-André Lureau <marcandre.lureau@redhat.com>
>
> The following changes since commit 93fac696d241dccb04ebb9d23da55fc1e9d8ee36:
>
>   Open 7.2 development tree (2022-08-30 09:40:41 -0700)
>
> are available in the Git repository at:
>
>   git@gitlab.com:marcandre.lureau/qemu.git tags/char-pull-request

Hi Marc-André,
Please update .git/config to separate the push URL from the fetch URL:

[remote "gitlab"]
        url = https://gitlab.com/marcandre.lureau/qemu.git
        pushUrl = git@gitlab.com:marcandre.lureau/qemu.git

That way future pull requests will include an https URL that allows
fetches without ssh or a GitLab account. Thanks!

Stefan