mbox

[PULL,0/8] chardev fixes for 6.1

Message ID 20210805125331.826741-1-marcandre.lureau@redhat.com (mailing list archive)
State New, archived
Headers show

Pull-request

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

Message

Marc-André Lureau Aug. 5, 2021, 12:53 p.m. UTC
From: Marc-André Lureau <marcandre.lureau@redhat.com>

The following changes since commit bccabb3a5d60182645c7749e89f21a9ff307a9eb:

  Update version for v6.1.0-rc2 release (2021-08-04 16:56:14 +0100)

are available in the Git repository at:

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

for you to fetch changes up to a68403b0a6843f106e381b0bbeaacb29f6d27255:

  chardev: report a simpler error about duplicated id (2021-08-05 16:15:33 +0400)

----------------------------------------------------------------
Chardev-related fixes

Hi

Here are some bug fixes worthy for 6.1.

thanks

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

Marc-André Lureau (8):
  util: fix abstract socket path copy
  chardev/socket: print a more correct command-line address
  chardev: mark explicitly first argument as poisoned
  chardev: fix fd_chr_add_watch() when in != out
  chardev: fix qemu_chr_open_fd() being called with fd=-1
  chardev: fix qemu_chr_open_fd() with fd_in==fd_out
  chardev: give some context on chardev-add error
  chardev: report a simpler error about duplicated id

 include/chardev/char-fe.h |   8 ++-
 chardev/char-fd.c         | 119 ++++++++++++++++++++++++++++++++++----
 chardev/char-fe.c         |   2 +-
 chardev/char-socket.c     |   4 +-
 chardev/char.c            |  20 +++++--
 hw/char/cadence_uart.c    |   2 +-
 hw/char/cmsdk-apb-uart.c  |   2 +-
 hw/char/ibex_uart.c       |   2 +-
 hw/char/nrf51_uart.c      |   2 +-
 hw/char/serial.c          |   2 +-
 hw/char/virtio-console.c  |   2 +-
 hw/usb/redirect.c         |   2 +-
 hw/virtio/vhost-user.c    |   2 +-
 monitor/monitor.c         |   2 +-
 net/vhost-user.c          |   4 +-
 util/qemu-sockets.c       |   5 +-
 16 files changed, 146 insertions(+), 34 deletions(-)

Comments

Peter Maydell Aug. 5, 2021, 5:47 p.m. UTC | #1
On Thu, 5 Aug 2021 at 13:53, <marcandre.lureau@redhat.com> wrote:
>
> From: Marc-André Lureau <marcandre.lureau@redhat.com>
>
> The following changes since commit bccabb3a5d60182645c7749e89f21a9ff307a9eb:
>
>   Update version for v6.1.0-rc2 release (2021-08-04 16:56:14 +0100)
>
> are available in the Git repository at:
>
>   git@gitlab.com:marcandre.lureau/qemu.git tags/chr-fix-pull-request
>
> for you to fetch changes up to a68403b0a6843f106e381b0bbeaacb29f6d27255:
>
>   chardev: report a simpler error about duplicated id (2021-08-05 16:15:33 +0400)
>
> ----------------------------------------------------------------
> Chardev-related fixes
>
> Hi
>
> Here are some bug fixes worthy for 6.1.
>
> thanks



Applied, thanks.

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

-- PMM