qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] MAINTAINERS: Cover all tests/qtest/migration-* files
@ 2024-06-19  5:54 Thomas Huth
  2024-06-19 10:12 ` Philippe Mathieu-Daudé
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Thomas Huth @ 2024-06-19  5:54 UTC (permalink / raw)
  To: qemu-devel, Laurent Vivier, Peter Xu, Fabiano Rosas; +Cc: Paolo Bonzini

Beside migration-test.c, there is nowadays migration-helpers.[ch],
too, so update the entry in the migration section to also cover these
files now.
While we're at it, exclude these files in the common qtest section,
since the migration test is well covered by the migration maintainers
already. Since the test is under very active development, it was causing
a lot of distraction to the generic qtest maintainers with regards to
the patches that need to be reviewed by the migration maintainers anyway.

Signed-off-by: Thomas Huth <thuth@redhat.com>
---
 MAINTAINERS | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 0f63bcdc7d..32691302db 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -3316,6 +3316,7 @@ F: tests/qtest/
 F: docs/devel/qgraph.rst
 F: docs/devel/qtest.rst
 X: tests/qtest/bios-tables-test*
+X: tests/qtest/migration-*
 
 Device Fuzzing
 M: Alexander Bulekov <alxndr@bu.edu>
@@ -3412,7 +3413,7 @@ F: include/qemu/userfaultfd.h
 F: migration/
 F: scripts/vmstate-static-checker.py
 F: tests/vmstate-static-checker-data/
-F: tests/qtest/migration-test.c
+F: tests/qtest/migration-*
 F: docs/devel/migration/
 F: qapi/migration.json
 F: tests/migration/
-- 
2.45.2



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

* Re: [PATCH] MAINTAINERS: Cover all tests/qtest/migration-* files
  2024-06-19  5:54 [PATCH] MAINTAINERS: Cover all tests/qtest/migration-* files Thomas Huth
@ 2024-06-19 10:12 ` Philippe Mathieu-Daudé
  2024-06-19 10:53 ` Fabiano Rosas
  2024-06-19 13:54 ` Peter Xu
  2 siblings, 0 replies; 4+ messages in thread
From: Philippe Mathieu-Daudé @ 2024-06-19 10:12 UTC (permalink / raw)
  To: Thomas Huth, qemu-devel, Laurent Vivier, Peter Xu, Fabiano Rosas
  Cc: Paolo Bonzini

On 19/6/24 07:54, Thomas Huth wrote:
> Beside migration-test.c, there is nowadays migration-helpers.[ch],
> too, so update the entry in the migration section to also cover these
> files now.
> While we're at it, exclude these files in the common qtest section,
> since the migration test is well covered by the migration maintainers
> already. Since the test is under very active development, it was causing
> a lot of distraction to the generic qtest maintainers with regards to
> the patches that need to be reviewed by the migration maintainers anyway.
> 
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
>   MAINTAINERS | 3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)

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



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

* Re: [PATCH] MAINTAINERS: Cover all tests/qtest/migration-* files
  2024-06-19  5:54 [PATCH] MAINTAINERS: Cover all tests/qtest/migration-* files Thomas Huth
  2024-06-19 10:12 ` Philippe Mathieu-Daudé
@ 2024-06-19 10:53 ` Fabiano Rosas
  2024-06-19 13:54 ` Peter Xu
  2 siblings, 0 replies; 4+ messages in thread
From: Fabiano Rosas @ 2024-06-19 10:53 UTC (permalink / raw)
  To: Thomas Huth, qemu-devel, Laurent Vivier, Peter Xu; +Cc: Paolo Bonzini

Thomas Huth <thuth@redhat.com> writes:

> Beside migration-test.c, there is nowadays migration-helpers.[ch],
> too, so update the entry in the migration section to also cover these
> files now.
> While we're at it, exclude these files in the common qtest section,
> since the migration test is well covered by the migration maintainers
> already. Since the test is under very active development, it was causing
> a lot of distraction to the generic qtest maintainers with regards to
> the patches that need to be reviewed by the migration maintainers anyway.
>
> Signed-off-by: Thomas Huth <thuth@redhat.com>

Acked-by: Fabiano Rosas <farosas@suse.de>


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

* Re: [PATCH] MAINTAINERS: Cover all tests/qtest/migration-* files
  2024-06-19  5:54 [PATCH] MAINTAINERS: Cover all tests/qtest/migration-* files Thomas Huth
  2024-06-19 10:12 ` Philippe Mathieu-Daudé
  2024-06-19 10:53 ` Fabiano Rosas
@ 2024-06-19 13:54 ` Peter Xu
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Xu @ 2024-06-19 13:54 UTC (permalink / raw)
  To: Thomas Huth; +Cc: qemu-devel, Laurent Vivier, Fabiano Rosas, Paolo Bonzini

On Wed, Jun 19, 2024 at 07:54:47AM +0200, Thomas Huth wrote:
> Beside migration-test.c, there is nowadays migration-helpers.[ch],
> too, so update the entry in the migration section to also cover these
> files now.
> While we're at it, exclude these files in the common qtest section,
> since the migration test is well covered by the migration maintainers
> already. Since the test is under very active development, it was causing
> a lot of distraction to the generic qtest maintainers with regards to
> the patches that need to be reviewed by the migration maintainers anyway.
> 
> Signed-off-by: Thomas Huth <thuth@redhat.com>

Reviewed-by: Peter Xu <peterx@redhat.com>

-- 
Peter Xu



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

end of thread, other threads:[~2024-06-19 13:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-19  5:54 [PATCH] MAINTAINERS: Cover all tests/qtest/migration-* files Thomas Huth
2024-06-19 10:12 ` Philippe Mathieu-Daudé
2024-06-19 10:53 ` Fabiano Rosas
2024-06-19 13:54 ` Peter Xu

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