From: Christian Schoenebeck <qemu_oss@crudebyte.com>
To: qemu-devel@nongnu.org, Stefan Hajnoczi <stefanha@redhat.com>
Cc: Greg Kurz <groug@kaod.org>, Linus Heckemann <git@sphalerite.org>,
Bin Meng <bin.meng@windriver.com>
Subject: Re: [PULL 00/23] 9p queue 2022-10-24
Date: Mon, 24 Oct 2022 13:33:29 +0200 [thread overview]
Message-ID: <2910072.zbdAXGa3oE@silver> (raw)
In-Reply-To: <cover.1666608862.git.qemu_oss@crudebyte.com>
On Monday, October 24, 2022 12:54:23 PM CEST Christian Schoenebeck wrote:
> The following changes since commit 0529245488865038344d64fff7ee05864d3d17f6:
>
> Merge tag 'pull-target-arm-20221020' of https://git.linaro.org/people/pmaydell/qemu-arm into staging (2022-10-20 14:36:12 -0400)
>
> are available in the Git repository at:
>
> https://github.com/cschoenebeck/qemu.git tags/pull-9p-20221024
>
> for you to fetch changes up to 3ce77865bf813f313cf79c00fd951bfc95a50165:
>
> tests/9p: remove unnecessary g_strdup() calls (2022-10-24 12:24:32 +0200)
>
> ----------------------------------------------------------------
> 9pfs: performance, Windows host prep, tests restructure
>
> * Highlight of this PR is Linus Heckemann's GHashTable patch which
> brings massive general performance improvements of 9p server
> somewhere between factor 6 .. 12.
>
> * Bin Meng's g_mkdir patch is a preparatory patch for upcoming
> Windows host support of 9p server.
>
> * The rest of the patches in this PR are 9p test code restructuring
> and refactoring changes to improve readability and to ease
> maintenance of 9p test code on the long-term.
Unfortunately I haven't found any reviewer of my patches 04 .. 23. :/
I decided to queue them anyway, as they are just restructuring and refactoring
of 9p test code:
https://lore.kernel.org/all/cover.1664917004.git.qemu_oss@crudebyte.com
If anybody finds some time at least for a glimpse on them, very much
appreciated!
Best regards,
Christian Schoenebeck
> ----------------------------------------------------------------
> Bin Meng (1):
> fsdev/virtfs-proxy-helper: Use g_mkdir()
>
> Christian Schoenebeck (21):
> tests/9p: split virtio-9p-test.c into tests and 9p client part
> tests/9p: merge *walk*() functions
> tests/9p: simplify callers of twalk()
> tests/9p: merge v9fs_tversion() and do_version()
> tests/9p: merge v9fs_tattach(), do_attach(), do_attach_rqid()
> tests/9p: simplify callers of tattach()
> tests/9p: convert v9fs_tgetattr() to declarative arguments
> tests/9p: simplify callers of tgetattr()
> tests/9p: convert v9fs_treaddir() to declarative arguments
> tests/9p: simplify callers of treaddir()
> tests/9p: convert v9fs_tlopen() to declarative arguments
> tests/9p: simplify callers of tlopen()
> tests/9p: convert v9fs_twrite() to declarative arguments
> tests/9p: simplify callers of twrite()
> tests/9p: convert v9fs_tflush() to declarative arguments
> tests/9p: merge v9fs_tmkdir() and do_mkdir()
> tests/9p: merge v9fs_tlcreate() and do_lcreate()
> tests/9p: merge v9fs_tsymlink() and do_symlink()
> tests/9p: merge v9fs_tlink() and do_hardlink()
> tests/9p: merge v9fs_tunlinkat() and do_unlinkat()
> tests/9p: remove unnecessary g_strdup() calls
>
> Linus Heckemann (1):
> 9pfs: use GHashTable for fid table
>
> fsdev/virtfs-proxy-helper.c | 3 +-
> hw/9pfs/9p.c | 196 ++---
> hw/9pfs/9p.h | 2 +-
> tests/qtest/libqos/meson.build | 1 +
> tests/qtest/libqos/virtio-9p-client.c | 1049 ++++++++++++++++++++++++++
> tests/qtest/libqos/virtio-9p-client.h | 494 +++++++++++++
> tests/qtest/virtio-9p-test.c | 1299 ++++++---------------------------
> 7 files changed, 1867 insertions(+), 1177 deletions(-)
> create mode 100644 tests/qtest/libqos/virtio-9p-client.c
> create mode 100644 tests/qtest/libqos/virtio-9p-client.h
>
>
next prev parent reply other threads:[~2022-10-24 11:37 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-24 10:54 [PULL 00/23] 9p queue 2022-10-24 Christian Schoenebeck
2022-10-24 10:54 ` [PULL 02/23] tests/9p: split virtio-9p-test.c into tests and 9p client part Christian Schoenebeck
2022-10-24 10:54 ` [PULL 08/23] tests/9p: simplify callers of tattach() Christian Schoenebeck
2022-10-24 10:54 ` [PULL 15/23] tests/9p: convert v9fs_twrite() to declarative arguments Christian Schoenebeck
2022-10-24 10:54 ` [PULL 18/23] tests/9p: merge v9fs_tmkdir() and do_mkdir() Christian Schoenebeck
2022-10-24 10:54 ` [PULL 11/23] tests/9p: convert v9fs_treaddir() to declarative arguments Christian Schoenebeck
2022-10-24 10:54 ` [PULL 05/23] tests/9p: simplify callers of twalk() Christian Schoenebeck
2022-10-24 10:54 ` [PULL 09/23] tests/9p: convert v9fs_tgetattr() to declarative arguments Christian Schoenebeck
2022-10-24 10:54 ` [PULL 14/23] tests/9p: simplify callers of tlopen() Christian Schoenebeck
2022-10-24 10:54 ` [PULL 21/23] tests/9p: merge v9fs_tlink() and do_hardlink() Christian Schoenebeck
2022-10-24 10:54 ` [PULL 10/23] tests/9p: simplify callers of tgetattr() Christian Schoenebeck
2022-10-24 10:54 ` [PULL 13/23] tests/9p: convert v9fs_tlopen() to declarative arguments Christian Schoenebeck
2022-10-24 10:54 ` [PULL 04/23] tests/9p: merge *walk*() functions Christian Schoenebeck
2022-10-24 10:54 ` [PULL 19/23] tests/9p: merge v9fs_tlcreate() and do_lcreate() Christian Schoenebeck
2022-10-24 10:54 ` [PULL 20/23] tests/9p: merge v9fs_tsymlink() and do_symlink() Christian Schoenebeck
2022-10-24 10:54 ` [PULL 17/23] tests/9p: convert v9fs_tflush() to declarative arguments Christian Schoenebeck
2022-10-24 10:54 ` [PULL 16/23] tests/9p: simplify callers of twrite() Christian Schoenebeck
2022-10-24 10:54 ` [PULL 03/23] 9pfs: use GHashTable for fid table Christian Schoenebeck
2022-10-24 10:54 ` [PULL 12/23] tests/9p: simplify callers of treaddir() Christian Schoenebeck
2022-10-24 10:54 ` [PULL 23/23] tests/9p: remove unnecessary g_strdup() calls Christian Schoenebeck
2022-10-24 10:54 ` [PULL 01/23] fsdev/virtfs-proxy-helper: Use g_mkdir() Christian Schoenebeck
2022-10-24 10:54 ` [PULL 06/23] tests/9p: merge v9fs_tversion() and do_version() Christian Schoenebeck
2022-10-24 10:54 ` [PULL 07/23] tests/9p: merge v9fs_tattach(), do_attach(), do_attach_rqid() Christian Schoenebeck
2022-10-24 10:54 ` [PULL 22/23] tests/9p: merge v9fs_tunlinkat() and do_unlinkat() Christian Schoenebeck
2022-10-24 11:33 ` Christian Schoenebeck [this message]
2022-10-24 21:07 ` [PULL 00/23] 9p queue 2022-10-24 Stefan Hajnoczi
2022-10-27 15:53 ` Thomas Huth
2022-10-27 16:37 ` Christian Schoenebeck
2022-10-27 17:37 ` Stefan Hajnoczi
2022-10-27 20:42 ` Christian Schoenebeck
2022-10-27 20:53 ` Warner Losh
2022-10-28 7:07 ` Thomas Huth
2022-10-28 10:40 ` Christian Schoenebeck
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=2910072.zbdAXGa3oE@silver \
--to=qemu_oss@crudebyte.com \
--cc=bin.meng@windriver.com \
--cc=git@sphalerite.org \
--cc=groug@kaod.org \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).