mbox

[PULL,0/5] 9p patches 2020-05-26

Message ID 20200526114931.391049-1-groug@kaod.org (mailing list archive)
State New, archived
Headers show

Pull-request

https://github.com/gkurz/qemu.git tags/9p-next-2020-05-26

Message

Greg Kurz May 26, 2020, 11:49 a.m. UTC
The following changes since commit fea8f3ed739536fca027cf56af7f5576f37ef9cd:

  Merge remote-tracking branch 'remotes/philmd-gitlab/tags/pflash-next-20200522' into staging (2020-05-22 18:54:47 +0100)

are available in the Git repository at:

  https://github.com/gkurz/qemu.git tags/9p-next-2020-05-26

for you to fetch changes up to 84af75577cceb195b044e2d5ba6d940206b169ca:

  xen/9pfs: increase max ring order to 9 (2020-05-25 11:45:40 +0200)

----------------------------------------------------------------
- fix build with musl libc
- fix potential deadlock of QEMU main event loop (cannot be hit with linux
  client)
- revert 9pfs reply truncation (LP 1877688)
- xen backend waits for client to free space on the reply ring instead of
  truncating or disconnecting

----------------------------------------------------------------
Dan Robertson (1):
  9pfs: include linux/limits.h for XATTR_SIZE_MAX

Greg Kurz (1):
  9p: Lock directory streams with a CoMutex

Stefano Stabellini (3):
  Revert "9p: init_in_iov_from_pdu can truncate the size"
  xen/9pfs: yield when there isn't enough room on the ring
  xen/9pfs: increase max ring order to 9

 hw/9pfs/9p.c               | 34 ++++++++++++--------------------
 hw/9pfs/9p.h               | 10 +++++-----
 hw/9pfs/virtio-9p-device.c | 11 ++++-------
 hw/9pfs/xen-9p-backend.c   | 40 ++++++++++++++++++++++++++------------
 4 files changed, 49 insertions(+), 46 deletions(-)

Comments

Peter Maydell May 26, 2020, 7:24 p.m. UTC | #1
On Tue, 26 May 2020 at 12:50, Greg Kurz <groug@kaod.org> wrote:
>
> The following changes since commit fea8f3ed739536fca027cf56af7f5576f37ef9cd:
>
>   Merge remote-tracking branch 'remotes/philmd-gitlab/tags/pflash-next-20200522' into staging (2020-05-22 18:54:47 +0100)
>
> are available in the Git repository at:
>
>   https://github.com/gkurz/qemu.git tags/9p-next-2020-05-26
>
> for you to fetch changes up to 84af75577cceb195b044e2d5ba6d940206b169ca:
>
>   xen/9pfs: increase max ring order to 9 (2020-05-25 11:45:40 +0200)
>
> ----------------------------------------------------------------
> - fix build with musl libc
> - fix potential deadlock of QEMU main event loop (cannot be hit with linux
>   client)
> - revert 9pfs reply truncation (LP 1877688)
> - xen backend waits for client to free space on the reply ring instead of
>   truncating or disconnecting
>


Applied, thanks.

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

-- PMM