qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] MAINTAINERS: Add 9p test client to section "virtio-9p"
@ 2022-11-28 17:12 Christian Schoenebeck
  2022-11-28 18:07 ` Philippe Mathieu-Daudé
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Christian Schoenebeck @ 2022-11-28 17:12 UTC (permalink / raw)
  To: qemu-devel; +Cc: Greg Kurz, Thomas Huth, Laurent Vivier, Paolo Bonzini

The 9p test cases use a dedicated, lite-weight 9p client implementation
(using virtio transport) under tests/qtest/libqos/ to communicate with
QEMU's 9p server.

It's already there for a long time. Let's officially assign it to 9p
maintainers.

Signed-off-by: Christian Schoenebeck <qemu_oss@crudebyte.com>
---
 MAINTAINERS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index cf24910249..4f156a99f1 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -2036,6 +2036,7 @@ X: hw/9pfs/xen-9p*
 F: fsdev/
 F: docs/tools/virtfs-proxy-helper.rst
 F: tests/qtest/virtio-9p-test.c
+F: tests/qtest/libqos/virtio-9p*
 T: git https://gitlab.com/gkurz/qemu.git 9p-next
 T: git https://github.com/cschoenebeck/qemu.git 9p.next
 
-- 
2.30.2



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

* Re: [PATCH] MAINTAINERS: Add 9p test client to section "virtio-9p"
  2022-11-28 17:12 [PATCH] MAINTAINERS: Add 9p test client to section "virtio-9p" Christian Schoenebeck
@ 2022-11-28 18:07 ` Philippe Mathieu-Daudé
  2022-11-29  6:35 ` Greg Kurz
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Philippe Mathieu-Daudé @ 2022-11-28 18:07 UTC (permalink / raw)
  To: Christian Schoenebeck, qemu-devel
  Cc: Greg Kurz, Thomas Huth, Laurent Vivier, Paolo Bonzini

On 28/11/22 18:12, Christian Schoenebeck wrote:
> The 9p test cases use a dedicated, lite-weight 9p client implementation
> (using virtio transport) under tests/qtest/libqos/ to communicate with
> QEMU's 9p server.
> 
> It's already there for a long time. Let's officially assign it to 9p
> maintainers.
> 
> Signed-off-by: Christian Schoenebeck <qemu_oss@crudebyte.com>
> ---
>   MAINTAINERS | 1 +
>   1 file changed, 1 insertion(+)

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>



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

* Re: [PATCH] MAINTAINERS: Add 9p test client to section "virtio-9p"
  2022-11-28 17:12 [PATCH] MAINTAINERS: Add 9p test client to section "virtio-9p" Christian Schoenebeck
  2022-11-28 18:07 ` Philippe Mathieu-Daudé
@ 2022-11-29  6:35 ` Greg Kurz
  2022-11-29  7:01 ` Wilfred Mallawa
  2022-11-30 18:12 ` Christian Schoenebeck
  3 siblings, 0 replies; 5+ messages in thread
From: Greg Kurz @ 2022-11-29  6:35 UTC (permalink / raw)
  To: Christian Schoenebeck
  Cc: qemu-devel, Thomas Huth, Laurent Vivier, Paolo Bonzini

On Mon, 28 Nov 2022 18:12:04 +0100
Christian Schoenebeck <qemu_oss@crudebyte.com> wrote:

> The 9p test cases use a dedicated, lite-weight 9p client implementation
> (using virtio transport) under tests/qtest/libqos/ to communicate with
> QEMU's 9p server.
> 
> It's already there for a long time. Let's officially assign it to 9p
> maintainers.
> 
> Signed-off-by: Christian Schoenebeck <qemu_oss@crudebyte.com>
> ---

Reviewed-by: Greg Kurz <groug@kaod.org>

>  MAINTAINERS | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index cf24910249..4f156a99f1 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -2036,6 +2036,7 @@ X: hw/9pfs/xen-9p*
>  F: fsdev/
>  F: docs/tools/virtfs-proxy-helper.rst
>  F: tests/qtest/virtio-9p-test.c
> +F: tests/qtest/libqos/virtio-9p*
>  T: git https://gitlab.com/gkurz/qemu.git 9p-next
>  T: git https://github.com/cschoenebeck/qemu.git 9p.next
>  



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

* Re: [PATCH] MAINTAINERS: Add 9p test client to section "virtio-9p"
  2022-11-28 17:12 [PATCH] MAINTAINERS: Add 9p test client to section "virtio-9p" Christian Schoenebeck
  2022-11-28 18:07 ` Philippe Mathieu-Daudé
  2022-11-29  6:35 ` Greg Kurz
@ 2022-11-29  7:01 ` Wilfred Mallawa
  2022-11-30 18:12 ` Christian Schoenebeck
  3 siblings, 0 replies; 5+ messages in thread
From: Wilfred Mallawa @ 2022-11-29  7:01 UTC (permalink / raw)
  To: qemu_oss@crudebyte.com, qemu-devel@nongnu.org
  Cc: pbonzini@redhat.com, groug@kaod.org, thuth@redhat.com,
	lvivier@redhat.com

On Mon, 2022-11-28 at 18:12 +0100, Christian Schoenebeck wrote:
> The 9p test cases use a dedicated, lite-weight 9p client
> implementation
> (using virtio transport) under tests/qtest/libqos/ to communicate
> with
> QEMU's 9p server.
> 
> It's already there for a long time. Let's officially assign it to 9p
> maintainers.
> 
> Signed-off-by: Christian Schoenebeck <qemu_oss@crudebyte.com>
> ---
>  MAINTAINERS | 1 +
>  1 file changed, 1 insertion(+)
> 
Reviewed-by: Wilfred Mallawa <wilfred.mallawa@wdc.com>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index cf24910249..4f156a99f1 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -2036,6 +2036,7 @@ X: hw/9pfs/xen-9p*
>  F: fsdev/
>  F: docs/tools/virtfs-proxy-helper.rst
>  F: tests/qtest/virtio-9p-test.c
> +F: tests/qtest/libqos/virtio-9p*
>  T: git https://gitlab.com/gkurz/qemu.git 9p-next
>  T: git https://github.com/cschoenebeck/qemu.git 9p.next
>  


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

* Re: [PATCH] MAINTAINERS: Add 9p test client to section "virtio-9p"
  2022-11-28 17:12 [PATCH] MAINTAINERS: Add 9p test client to section "virtio-9p" Christian Schoenebeck
                   ` (2 preceding siblings ...)
  2022-11-29  7:01 ` Wilfred Mallawa
@ 2022-11-30 18:12 ` Christian Schoenebeck
  3 siblings, 0 replies; 5+ messages in thread
From: Christian Schoenebeck @ 2022-11-30 18:12 UTC (permalink / raw)
  To: qemu-devel, Philippe Mathieu-Daudé
  Cc: Greg Kurz, Thomas Huth, Laurent Vivier, Paolo Bonzini,
	Wilfred Mallawa

On Monday, November 28, 2022 6:12:04 PM CET Christian Schoenebeck wrote:
> The 9p test cases use a dedicated, lite-weight 9p client implementation
> (using virtio transport) under tests/qtest/libqos/ to communicate with
> QEMU's 9p server.
> 
> It's already there for a long time. Let's officially assign it to 9p
> maintainers.
> 
> Signed-off-by: Christian Schoenebeck <qemu_oss@crudebyte.com>
> ---

Queued on 9p.next:
https://github.com/cschoenebeck/qemu/commits/9p.next

Thanks!

>  MAINTAINERS | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index cf24910249..4f156a99f1 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -2036,6 +2036,7 @@ X: hw/9pfs/xen-9p*
>  F: fsdev/
>  F: docs/tools/virtfs-proxy-helper.rst
>  F: tests/qtest/virtio-9p-test.c
> +F: tests/qtest/libqos/virtio-9p*
>  T: git https://gitlab.com/gkurz/qemu.git 9p-next
>  T: git https://github.com/cschoenebeck/qemu.git 9p.next
>  
> 





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

end of thread, other threads:[~2022-11-30 18:13 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-28 17:12 [PATCH] MAINTAINERS: Add 9p test client to section "virtio-9p" Christian Schoenebeck
2022-11-28 18:07 ` Philippe Mathieu-Daudé
2022-11-29  6:35 ` Greg Kurz
2022-11-29  7:01 ` Wilfred Mallawa
2022-11-30 18:12 ` Christian Schoenebeck

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).