[Qemu-devel] [PULL 0/7] 9p patches 2018-06-07

Greg Kurz posted 7 patches 5 years, 10 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20180607152119.3447-1-groug@kaod.org
Test checkpatch passed
Test docker-mingw@fedora passed
Test docker-quick@centos7 passed
Test s390x passed
hw/9pfs/9p-handle.c |  8 +-------
hw/9pfs/9p-local.c  | 40 ++++++++++++++++++++++++----------------
hw/9pfs/9p-proxy.c  |  5 ++---
hw/9pfs/9p-util.c   | 33 +++++++++++++++++++++++++++++++++
hw/9pfs/9p-util.h   |  4 ++++
hw/9pfs/9p-xattr.c  | 33 ---------------------------------
hw/9pfs/9p.c        | 34 ++++++++++++++++++++++++++++------
hw/9pfs/9p.h        |  4 ++++
8 files changed, 96 insertions(+), 65 deletions(-)
[Qemu-devel] [PULL 0/7] 9p patches 2018-06-07
Posted by Greg Kurz 5 years, 10 months ago
The following changes since commit 5d328d7d2f1fd4fb160bcfb6e4eb838720274438:

  Merge remote-tracking branch 'remotes/awilliam/tags/vfio-update-20180605.0' into staging (2018-06-07 08:59:28 +0100)

are available in the Git repository at:

  https://github.com/gkurz/qemu.git tags/for-upstream

for you to fetch changes up to aca6897fba149a2a650dcdf5a5e1ae828371f4aa:

  9p: xattr: Properly translate xattrcreate flags (2018-06-07 12:17:22 +0200)

----------------------------------------------------------------
Mostly bug fixes and code sanitization motivated by the upcoming
support for Darwin hosts. Thanks to Keno Fischer.

----------------------------------------------------------------
Keno Fischer (7):
      9p: proxy: Fix size passed to `connect`
      9p: local: Properly set errp in fstatfs error path
      9p: Move a couple xattr functions to 9p-util
      9p: xattr: Fix crashes due to free of uninitialized value
      9p: local: Avoid warning if FS_IOC_GETVERSION is not defined
      9p: Properly check/translate flags in unlinkat
      9p: xattr: Properly translate xattrcreate flags

 hw/9pfs/9p-handle.c |  8 +-------
 hw/9pfs/9p-local.c  | 40 ++++++++++++++++++++++++----------------
 hw/9pfs/9p-proxy.c  |  5 ++---
 hw/9pfs/9p-util.c   | 33 +++++++++++++++++++++++++++++++++
 hw/9pfs/9p-util.h   |  4 ++++
 hw/9pfs/9p-xattr.c  | 33 ---------------------------------
 hw/9pfs/9p.c        | 34 ++++++++++++++++++++++++++++------
 hw/9pfs/9p.h        |  4 ++++
 8 files changed, 96 insertions(+), 65 deletions(-)
-- 
2.14.4


Re: [Qemu-devel] [PULL 0/7] 9p patches 2018-06-07
Posted by Peter Maydell 5 years, 10 months ago
On 7 June 2018 at 16:21, Greg Kurz <groug@kaod.org> wrote:
> The following changes since commit 5d328d7d2f1fd4fb160bcfb6e4eb838720274438:
>
>   Merge remote-tracking branch 'remotes/awilliam/tags/vfio-update-20180605.0' into staging (2018-06-07 08:59:28 +0100)
>
> are available in the Git repository at:
>
>   https://github.com/gkurz/qemu.git tags/for-upstream
>
> for you to fetch changes up to aca6897fba149a2a650dcdf5a5e1ae828371f4aa:
>
>   9p: xattr: Properly translate xattrcreate flags (2018-06-07 12:17:22 +0200)
>
> ----------------------------------------------------------------
> Mostly bug fixes and code sanitization motivated by the upcoming
> support for Darwin hosts. Thanks to Keno Fischer.
>
> ----------------------------------------------------------------
> Keno Fischer (7):
>       9p: proxy: Fix size passed to `connect`
>       9p: local: Properly set errp in fstatfs error path
>       9p: Move a couple xattr functions to 9p-util
>       9p: xattr: Fix crashes due to free of uninitialized value
>       9p: local: Avoid warning if FS_IOC_GETVERSION is not defined
>       9p: Properly check/translate flags in unlinkat
>       9p: xattr: Properly translate xattrcreate flags

Applied, thanks.

-- PMM