mbox

[PULL,0/5] 9p patches 2020-01-14

Message ID 20200114160235.308040-1-groug@kaod.org
State New
Headers show

Pull-request

https://github.com/gkurz/qemu.git tags/9p-next-2020-01-14

Message

Greg Kurz Jan. 14, 2020, 4:02 p.m. UTC
The following changes since commit 3c8a6575985b1652b45bfa670b5e1907d642cfa0:

  Merge remote-tracking branch 'remotes/kraxel/tags/usb-20200113-pull-request' into staging (2020-01-13 14:19:57 +0000)

are available in the Git repository at:

  https://github.com/gkurz/qemu.git tags/9p-next-2020-01-14

for you to fetch changes up to fa0f22026747fe0ea6ef4b86c4e73e2e0965f05b:

  9pfs/9p.c: remove unneeded labels (2020-01-14 07:59:47 +0100)

----------------------------------------------------------------
Assorted fixes and cleanups.

----------------------------------------------------------------
Daniel Henrique Barboza (3):
      9p: local: always return -1 on error in local_unlinkat_common
      virtfs-proxy-helper.c: remove 'err_out' label in setugid()
      9pfs/9p.c: remove unneeded labels

Jiajun Chen (1):
      9pfs: local: Fix possible memory leak in local_link()

Stefano Stabellini (1):
      9p: init_in_iov_from_pdu can truncate the size

 fsdev/virtfs-proxy-helper.c |  4 +---
 hw/9pfs/9p-local.c          | 16 +++++++---------
 hw/9pfs/9p.c                | 35 ++++++++++++++++++++++-------------
 hw/9pfs/9p.h                |  2 +-
 hw/9pfs/virtio-9p-device.c  | 11 +++++++----
 hw/9pfs/xen-9p-backend.c    | 13 ++++++++-----
 6 files changed, 46 insertions(+), 35 deletions(-)

Comments

Peter Maydell Jan. 17, 2020, 12:12 p.m. UTC | #1
On Tue, 14 Jan 2020 at 16:02, Greg Kurz <groug@kaod.org> wrote:
>
> The following changes since commit 3c8a6575985b1652b45bfa670b5e1907d642cfa0:
>
>   Merge remote-tracking branch 'remotes/kraxel/tags/usb-20200113-pull-request' into staging (2020-01-13 14:19:57 +0000)
>
> are available in the Git repository at:
>
>   https://github.com/gkurz/qemu.git tags/9p-next-2020-01-14
>
> for you to fetch changes up to fa0f22026747fe0ea6ef4b86c4e73e2e0965f05b:
>
>   9pfs/9p.c: remove unneeded labels (2020-01-14 07:59:47 +0100)
>
> ----------------------------------------------------------------
> Assorted fixes and cleanups.
>
> ----------------------------------------------------------------

Compile failure on 32-bit:

/home/peter.maydell/qemu/hw/9pfs/9p.c: In function 'v9fs_xattr_read':
/home/peter.maydell/qemu/hw/9pfs/9p.c:2140:54: error: passing argument
4 of 'v9fs_init_qiov_from_pdu' from incompatible pointer type
[-Werror=incompatible-pointer-types]
     v9fs_init_qiov_from_pdu(&qiov_full, pdu, offset, &read_count, false);
                                                      ^
/home/peter.maydell/qemu/hw/9pfs/9p.c:2092:13: note: expected 'size_t
* {aka unsigned int *}' but argument is of type 'uint64_t * {aka long
long unsigned int *}'
 static void v9fs_init_qiov_from_pdu(QEMUIOVector *qiov, V9fsPDU *pdu,
             ^~~~~~~~~~~~~~~~~~~~~~~

thanks
-- PMM