qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL v2 00/19] 9p queue 2022-03-07 (previous 2022-03-04)
@ 2022-03-07 11:15 Christian Schoenebeck
  2022-03-07 11:15 ` [PULL v2 03/19] 9p: darwin: Handle struct stat(fs) differences Christian Schoenebeck
                   ` (19 more replies)
  0 siblings, 20 replies; 21+ messages in thread
From: Christian Schoenebeck @ 2022-03-07 11:15 UTC (permalink / raw)
  To: qemu-devel, Peter Maydell
  Cc: Greg Kurz, Will Cohen, Keno Fischer, Michael Roitzsch,
	Fabian Franz, Paolo Bonzini

The following changes since commit 9d662a6b22a0838a85c5432385f35db2488a33a5:

  Merge remote-tracking branch 'remotes/legoater/tags/pull-ppc-20220305' into staging (2022-03-05 18:03:15 +0000)

are available in the Git repository at:

  https://github.com/cschoenebeck/qemu.git tags/pull-9p-20220307

for you to fetch changes up to 35b6466459f9234b9cb30296f243a70b6f1b44b7:

  fsdev/p9array.h: convert Doxygen -> kerneldoc format (2022-03-07 11:49:31 +0100)

----------------------------------------------------------------
9pfs: introduce macOS host support and cleanup

* Add support for Darwin (a.k.a. macOS) hosts.

* Code cleanup (move qemu_dirent_dup() from osdep -> 9p-util).

* API doc cleanup (convert Doxygen -> kerneldoc format).

----------------------------------------------------------------
v1 -> v2:
  - Fix compiler warning "unused label 'again'" [patch 5].

Christian Schoenebeck (8):
      9pfs: move qemu_dirent_dup() from osdep -> 9p-util
      9pfs: drop Doxygen format from qemu_dirent_dup() API comment
      9pfs/9p.h: convert Doxygen -> kerneldoc format
      9pfs/codir.c: convert Doxygen -> kerneldoc format
      9pfs/9p.c: convert Doxygen -> kerneldoc format
      9pfs/9p-util.h: convert Doxygen -> kerneldoc format
      9pfs/coth.h: drop Doxygen format on v9fs_co_run_in_worker()
      fsdev/p9array.h: convert Doxygen -> kerneldoc format

Keno Fischer (10):
      9p: linux: Fix a couple Linux assumptions
      9p: Rename 9p-util -> 9p-util-linux
      9p: darwin: Handle struct stat(fs) differences
      9p: darwin: Handle struct dirent differences
      9p: darwin: Ignore O_{NOATIME, DIRECT}
      9p: darwin: Move XATTR_SIZE_MAX->P9_XATTR_SIZE_MAX
      9p: darwin: *xattr_nofollow implementations
      9p: darwin: Compatibility for f/l*xattr
      9p: darwin: Implement compatibility for mknodat
      9p: darwin: meson: Allow VirtFS on Darwin

Will Cohen (1):
      9p: darwin: Adjust assumption on virtio-9p-test

 fsdev/file-op-9p.h                     |   9 ++-
 fsdev/meson.build                      |   1 +
 fsdev/p9array.h                        |  38 ++++++------
 hw/9pfs/9p-local.c                     |  27 +++++++--
 hw/9pfs/9p-proxy.c                     |  38 +++++++++++-
 hw/9pfs/9p-synth.c                     |   6 ++
 hw/9pfs/9p-util-darwin.c               |  97 ++++++++++++++++++++++++++++++
 hw/9pfs/{9p-util.c => 9p-util-linux.c} |   8 ++-
 hw/9pfs/9p-util.h                      |  78 +++++++++++++++++++++++++
 hw/9pfs/9p.c                           | 104 ++++++++++++++++++++++-----------
 hw/9pfs/9p.h                           |  30 ++++++++--
 hw/9pfs/codir.c                        |  34 ++++++-----
 hw/9pfs/coth.h                         |   4 +-
 hw/9pfs/meson.build                    |   3 +-
 include/qemu/osdep.h                   |  13 -----
 include/qemu/xattr.h                   |   4 +-
 meson.build                            |  13 +++--
 tests/qtest/virtio-9p-test.c           |   2 +-
 util/osdep.c                           |  21 -------
 19 files changed, 403 insertions(+), 127 deletions(-)
 create mode 100644 hw/9pfs/9p-util-darwin.c
 rename hw/9pfs/{9p-util.c => 9p-util-linux.c} (90%)


^ permalink raw reply	[flat|nested] 21+ messages in thread

end of thread, other threads:[~2022-03-08 12:50 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-07 11:15 [PULL v2 00/19] 9p queue 2022-03-07 (previous 2022-03-04) Christian Schoenebeck
2022-03-07 11:15 ` [PULL v2 03/19] 9p: darwin: Handle struct stat(fs) differences Christian Schoenebeck
2022-03-07 11:15 ` [PULL v2 06/19] 9p: darwin: Move XATTR_SIZE_MAX->P9_XATTR_SIZE_MAX Christian Schoenebeck
2022-03-07 11:15 ` [PULL v2 05/19] 9p: darwin: Ignore O_{NOATIME, DIRECT} Christian Schoenebeck
2022-03-07 11:15 ` [PULL v2 18/19] 9pfs/coth.h: drop Doxygen format on v9fs_co_run_in_worker() Christian Schoenebeck
2022-03-07 11:15 ` [PULL v2 14/19] 9pfs/9p.h: convert Doxygen -> kerneldoc format Christian Schoenebeck
2022-03-07 11:15 ` [PULL v2 10/19] 9p: darwin: Adjust assumption on virtio-9p-test Christian Schoenebeck
2022-03-07 11:15 ` [PULL v2 09/19] 9p: darwin: Implement compatibility for mknodat Christian Schoenebeck
2022-03-07 11:15 ` [PULL v2 01/19] 9p: linux: Fix a couple Linux assumptions Christian Schoenebeck
2022-03-07 11:15 ` [PULL v2 07/19] 9p: darwin: *xattr_nofollow implementations Christian Schoenebeck
2022-03-07 11:15 ` [PULL v2 13/19] 9pfs: drop Doxygen format from qemu_dirent_dup() API comment Christian Schoenebeck
2022-03-07 11:15 ` [PULL v2 19/19] fsdev/p9array.h: convert Doxygen -> kerneldoc format Christian Schoenebeck
2022-03-07 11:15 ` [PULL v2 15/19] 9pfs/codir.c: " Christian Schoenebeck
2022-03-07 11:15 ` [PULL v2 17/19] 9pfs/9p-util.h: " Christian Schoenebeck
2022-03-07 11:15 ` [PULL v2 04/19] 9p: darwin: Handle struct dirent differences Christian Schoenebeck
2022-03-07 11:15 ` [PULL v2 02/19] 9p: Rename 9p-util -> 9p-util-linux Christian Schoenebeck
2022-03-07 11:15 ` [PULL v2 12/19] 9pfs: move qemu_dirent_dup() from osdep -> 9p-util Christian Schoenebeck
2022-03-07 11:15 ` [PULL v2 11/19] 9p: darwin: meson: Allow VirtFS on Darwin Christian Schoenebeck
2022-03-07 11:15 ` [PULL v2 08/19] 9p: darwin: Compatibility for f/l*xattr Christian Schoenebeck
2022-03-07 11:15 ` [PULL v2 16/19] 9pfs/9p.c: convert Doxygen -> kerneldoc format Christian Schoenebeck
2022-03-08 12:37 ` [PULL v2 00/19] 9p queue 2022-03-07 (previous 2022-03-04) Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).