[PULL v2 0/5] 9p queue (previous 2022-02-10)

Christian Schoenebeck posted 5 patches 2 years, 2 months ago
Test checkpatch failed
Failed in applying to current master (apply log)
hw/9pfs/9p-synth.c             | 18 +++++++--
hw/9pfs/9p-synth.h             |  5 +++
hw/9pfs/codir.c                |  3 +-
include/qemu/osdep.h           | 13 ++++++
tests/qtest/libqos/virtio-9p.c | 38 +++++++-----------
tests/qtest/virtio-9p-test.c   | 90 +++++++++++++-----------------------------
util/osdep.c                   | 21 ++++++++++
7 files changed, 96 insertions(+), 92 deletions(-)
[PULL v2 0/5] 9p queue (previous 2022-02-10)
Posted by Christian Schoenebeck 2 years, 2 months ago
The following changes since commit c13b8e9973635f34f3ce4356af27a311c993729c:

  Merge remote-tracking branch 'remotes/alistair/tags/pull-riscv-to-apply-20220216' into staging (2022-02-16 09:57:11 +0000)

are available in the Git repository at:

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

for you to fetch changes up to e64e27d5cb103b7764f1a05b6eda7e7fedd517c5:

  9pfs: Fix segfault in do_readdir_many caused by struct dirent overread (2022-02-17 16:57:58 +0100)

----------------------------------------------------------------
9pfs: fixes and cleanup

* Fifth patch fixes a 9pfs server crash that happened on some systems due
  to incorrect (system dependant) handling of struct dirent size.

* Tests: Second patch fixes a test error that happened on some systems due
  mkdir() being called twice for creating the test directory for the 9p
  'local' tests.

* Tests: Third patch fixes a memory leak.

* Tests: The remaining two patches are code cleanup.

----------------------------------------------------------------
Christian Schoenebeck (2):
      tests/9pfs: use g_autofree where possible
      tests/9pfs: fix mkdir() being called twice

Greg Kurz (2):
      tests/9pfs: Fix leak of local_test_path
      tests/9pfs: Use g_autofree and g_autoptr where possible

Vitaly Chikunov (1):
      9pfs: Fix segfault in do_readdir_many caused by struct dirent overread

 hw/9pfs/9p-synth.c             | 18 +++++++--
 hw/9pfs/9p-synth.h             |  5 +++
 hw/9pfs/codir.c                |  3 +-
 include/qemu/osdep.h           | 13 ++++++
 tests/qtest/libqos/virtio-9p.c | 38 +++++++-----------
 tests/qtest/virtio-9p-test.c   | 90 +++++++++++++-----------------------------
 util/osdep.c                   | 21 ++++++++++
 7 files changed, 96 insertions(+), 92 deletions(-)

Re: [PULL v2 0/5] 9p queue (previous 2022-02-10)
Posted by Peter Maydell 2 years, 2 months ago
On Thu, 17 Feb 2022 at 16:38, Christian Schoenebeck
<qemu_oss@crudebyte.com> wrote:
>
> The following changes since commit c13b8e9973635f34f3ce4356af27a311c993729c:
>
>   Merge remote-tracking branch 'remotes/alistair/tags/pull-riscv-to-apply-20220216' into staging (2022-02-16 09:57:11 +0000)
>
> are available in the Git repository at:
>
>   https://github.com/cschoenebeck/qemu.git tags/pull-9p-20220217
>
> for you to fetch changes up to e64e27d5cb103b7764f1a05b6eda7e7fedd517c5:
>
>   9pfs: Fix segfault in do_readdir_many caused by struct dirent overread (2022-02-17 16:57:58 +0100)
>
> ----------------------------------------------------------------
> 9pfs: fixes and cleanup
>
> * Fifth patch fixes a 9pfs server crash that happened on some systems due
>   to incorrect (system dependant) handling of struct dirent size.
>
> * Tests: Second patch fixes a test error that happened on some systems due
>   mkdir() being called twice for creating the test directory for the 9p
>   'local' tests.
>
> * Tests: Third patch fixes a memory leak.
>
> * Tests: The remaining two patches are code cleanup.
>
> ----------------------------------------------------------------


Applied, thanks.

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

-- PMM