All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v2 0/5] MAINTAINERS: update TCG/KVM/Xen/TCI/Unimplemented device
@ 2017-06-29 15:03 Philippe Mathieu-Daudé
  2017-06-29 15:03 ` [Qemu-devel] [PATCH v2 1/5] MAINTAINERS: update TCG entries Philippe Mathieu-Daudé
                   ` (5 more replies)
  0 siblings, 6 replies; 10+ messages in thread
From: Philippe Mathieu-Daudé @ 2017-06-29 15:03 UTC (permalink / raw)
  To: qemu-devel, Paolo Bonzini, Peter Maydell, Thomas Huth
  Cc: Philippe Mathieu-Daudé, qemu-trivial

As requested by Thomas Huth, I separated these patches from my previous series
"removal of tci (tcg interpreter)".

TCG/KVM/Xen/TCI related files were moved in commits a9ded601..244f1441, update
MAINTAINERS to match the new paths.

Also add an entry for the "Unimplemented" device and voluntary myself as
reviewer.

Regards,

Phil.

v2:
- fix inaccurate Xen commit message (review feedback from Anthony PERARD)
- add "Unimplemented" device

v1:
- update TCG/KVM/Xen/TCI entries

Philippe Mathieu-Daudé (5):
  MAINTAINERS: update TCG entries
  MAINTAINERS: update KVM entries
  MAINTAINERS: update Xen entries
  MAINTAINERS: update TCI entry
  MAINTAINERS: add entry for "Unimplemented" device

 MAINTAINERS | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

-- 
2.13.1

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

* [Qemu-devel] [PATCH v2 1/5] MAINTAINERS: update TCG entries
  2017-06-29 15:03 [Qemu-devel] [PATCH v2 0/5] MAINTAINERS: update TCG/KVM/Xen/TCI/Unimplemented device Philippe Mathieu-Daudé
@ 2017-06-29 15:03 ` Philippe Mathieu-Daudé
  2017-06-29 15:51   ` Thomas Huth
  2017-06-29 15:03 ` [Qemu-devel] [PATCH v2 2/5] MAINTAINERS: update KVM entries Philippe Mathieu-Daudé
                   ` (4 subsequent siblings)
  5 siblings, 1 reply; 10+ messages in thread
From: Philippe Mathieu-Daudé @ 2017-06-29 15:03 UTC (permalink / raw)
  To: qemu-devel, Paolo Bonzini, Richard Henderson, Alex Bennée,
	Emilio G . Cota, Stefan Weil, Peter Crosthwaite, Yang Zhong
  Cc: Philippe Mathieu-Daudé, qemu-trivial

moved in a9ded601..244f1441 to accel/

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
 MAINTAINERS | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 839f7ca063..06006fc7df 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -84,14 +84,10 @@ M: Paolo Bonzini <pbonzini@redhat.com>
 M: Peter Crosthwaite <crosthwaite.peter@gmail.com>
 M: Richard Henderson <rth@twiddle.net>
 S: Maintained
-F: cpu-exec.c
-F: cpu-exec-common.c
 F: cpus.c
-F: cputlb.c
 F: exec.c
 F: softmmu_template.h
-F: translate-all.*
-F: translate-common.c
+F: accel/tcg/
 F: include/exec/cpu*.h
 F: include/exec/exec-all.h
 F: include/exec/helper*.h
-- 
2.13.1

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

* [Qemu-devel] [PATCH v2 2/5] MAINTAINERS: update KVM entries
  2017-06-29 15:03 [Qemu-devel] [PATCH v2 0/5] MAINTAINERS: update TCG/KVM/Xen/TCI/Unimplemented device Philippe Mathieu-Daudé
  2017-06-29 15:03 ` [Qemu-devel] [PATCH v2 1/5] MAINTAINERS: update TCG entries Philippe Mathieu-Daudé
@ 2017-06-29 15:03 ` Philippe Mathieu-Daudé
  2017-06-29 15:56   ` Thomas Huth
  2017-06-29 15:03 ` [Qemu-devel] [PATCH v2 3/5] MAINTAINERS: update Xen entries Philippe Mathieu-Daudé
                   ` (3 subsequent siblings)
  5 siblings, 1 reply; 10+ messages in thread
From: Philippe Mathieu-Daudé @ 2017-06-29 15:03 UTC (permalink / raw)
  To: qemu-devel, Paolo Bonzini, Richard Henderson, Alex Bennée,
	Emilio G . Cota, Stefan Weil, Yang Zhong
  Cc: Philippe Mathieu-Daudé, qemu-trivial

moved in 92229a57 to accel/

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
 MAINTAINERS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 06006fc7df..86a08c5aac 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -273,8 +273,8 @@ Overall
 M: Paolo Bonzini <pbonzini@redhat.com>
 L: kvm@vger.kernel.org
 S: Supported
-F: kvm-*
 F: */kvm.*
+F: accel/kvm/
 F: include/sysemu/kvm*.h
 
 ARM
-- 
2.13.1

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

* [Qemu-devel] [PATCH v2 3/5] MAINTAINERS: update Xen entries
  2017-06-29 15:03 [Qemu-devel] [PATCH v2 0/5] MAINTAINERS: update TCG/KVM/Xen/TCI/Unimplemented device Philippe Mathieu-Daudé
  2017-06-29 15:03 ` [Qemu-devel] [PATCH v2 1/5] MAINTAINERS: update TCG entries Philippe Mathieu-Daudé
  2017-06-29 15:03 ` [Qemu-devel] [PATCH v2 2/5] MAINTAINERS: update KVM entries Philippe Mathieu-Daudé
@ 2017-06-29 15:03 ` Philippe Mathieu-Daudé
  2017-06-29 15:03 ` [Qemu-devel] [PATCH v2 4/5] MAINTAINERS: update TCI entry Philippe Mathieu-Daudé
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 10+ messages in thread
From: Philippe Mathieu-Daudé @ 2017-06-29 15:03 UTC (permalink / raw)
  To: qemu-devel, Paolo Bonzini, Richard Henderson, Alex Bennée,
	Emilio G . Cota, Stefan Weil, Stefano Stabellini, Anthony Perard,
	Anthony Xu
  Cc: Philippe Mathieu-Daudé, qemu-trivial

moved in 56e2cd24..28b99f47 to hw/xen/ and hw/i386/xen/

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Acked-by: Anthony PERARD <anthony.perard@citrix.com>
---
 MAINTAINERS | 1 -
 1 file changed, 1 deletion(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 86a08c5aac..530293044b 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -323,7 +323,6 @@ M: Stefano Stabellini <sstabellini@kernel.org>
 M: Anthony Perard <anthony.perard@citrix.com>
 L: xen-devel@lists.xenproject.org
 S: Supported
-F: xen-*
 F: */xen*
 F: hw/9pfs/xen-9p-backend.c
 F: hw/char/xen_console.c
-- 
2.13.1

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

* [Qemu-devel] [PATCH v2 4/5] MAINTAINERS: update TCI entry
  2017-06-29 15:03 [Qemu-devel] [PATCH v2 0/5] MAINTAINERS: update TCG/KVM/Xen/TCI/Unimplemented device Philippe Mathieu-Daudé
                   ` (2 preceding siblings ...)
  2017-06-29 15:03 ` [Qemu-devel] [PATCH v2 3/5] MAINTAINERS: update Xen entries Philippe Mathieu-Daudé
@ 2017-06-29 15:03 ` Philippe Mathieu-Daudé
  2017-06-29 15:24   ` Stefan Weil
  2017-06-29 15:03 ` [Qemu-devel] [PATCH v2 5/5] MAINTAINERS: add entry for "Unimplemented" device Philippe Mathieu-Daudé
  2017-07-11 11:22 ` [Qemu-devel] [PATCH v2 0/5] MAINTAINERS: update TCG/KVM/Xen/TCI/Unimplemented device Paolo Bonzini
  5 siblings, 1 reply; 10+ messages in thread
From: Philippe Mathieu-Daudé @ 2017-06-29 15:03 UTC (permalink / raw)
  To: qemu-devel, Paolo Bonzini, Richard Henderson, Alex Bennée,
	Emilio G . Cota, Stefan Weil, Yang Zhong
  Cc: Philippe Mathieu-Daudé, qemu-trivial

moved in 244f1441 to tcg/

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
 MAINTAINERS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 530293044b..9bad523060 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1654,7 +1654,7 @@ TCI target
 M: Stefan Weil <sw@weilnetz.de>
 S: Maintained
 F: tcg/tci/
-F: tci.c
+F: tcg/tci.c
 F: disas/tci.c
 
 Block drivers
-- 
2.13.1

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

* [Qemu-devel] [PATCH v2 5/5] MAINTAINERS: add entry for "Unimplemented" device
  2017-06-29 15:03 [Qemu-devel] [PATCH v2 0/5] MAINTAINERS: update TCG/KVM/Xen/TCI/Unimplemented device Philippe Mathieu-Daudé
                   ` (3 preceding siblings ...)
  2017-06-29 15:03 ` [Qemu-devel] [PATCH v2 4/5] MAINTAINERS: update TCI entry Philippe Mathieu-Daudé
@ 2017-06-29 15:03 ` Philippe Mathieu-Daudé
  2017-07-11 11:22 ` [Qemu-devel] [PATCH v2 0/5] MAINTAINERS: update TCG/KVM/Xen/TCI/Unimplemented device Paolo Bonzini
  5 siblings, 0 replies; 10+ messages in thread
From: Philippe Mathieu-Daudé @ 2017-06-29 15:03 UTC (permalink / raw)
  To: qemu-devel, Paolo Bonzini, Peter Maydell, Alex Bennée
  Cc: Philippe Mathieu-Daudé, qemu-trivial, Eric Blake

Also voluntary myself as reviewer

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
 MAINTAINERS | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 9bad523060..890c25f0a1 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1155,6 +1155,13 @@ F: docs/specs/vmgenid.txt
 F: tests/vmgenid-test.c
 F: stubs/vmgenid.c
 
+Unimplemented device
+M: Peter Maydell <peter.maydell@linaro.org>
+R: Philippe Mathieu-Daudé <f4bug@amsat.org>
+S: Maintained
+F: include/hw/misc/unimp.h
+F: hw/misc/unimp.c
+
 Subsystems
 ----------
 Audio
-- 
2.13.1

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

* Re: [Qemu-devel] [PATCH v2 4/5] MAINTAINERS: update TCI entry
  2017-06-29 15:03 ` [Qemu-devel] [PATCH v2 4/5] MAINTAINERS: update TCI entry Philippe Mathieu-Daudé
@ 2017-06-29 15:24   ` Stefan Weil
  0 siblings, 0 replies; 10+ messages in thread
From: Stefan Weil @ 2017-06-29 15:24 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé,
	qemu-devel, Paolo Bonzini, Richard Henderson, Alex Bennée,
	Emilio G . Cota, Yang Zhong
  Cc: qemu-trivial

Am 29.06.2017 um 17:03 schrieb Philippe Mathieu-Daudé:
> moved in 244f1441 to tcg/
>
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> ---
>  MAINTAINERS | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 530293044b..9bad523060 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -1654,7 +1654,7 @@ TCI target
>  M: Stefan Weil <sw@weilnetz.de>
>  S: Maintained
>  F: tcg/tci/
> -F: tci.c
> +F: tcg/tci.c
>  F: disas/tci.c
>  
>  Block drivers


Thank you for this fix.

Reviewed-by: Stefan Weil <sw@weilnetz.de>

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

* Re: [Qemu-devel] [PATCH v2 1/5] MAINTAINERS: update TCG entries
  2017-06-29 15:03 ` [Qemu-devel] [PATCH v2 1/5] MAINTAINERS: update TCG entries Philippe Mathieu-Daudé
@ 2017-06-29 15:51   ` Thomas Huth
  0 siblings, 0 replies; 10+ messages in thread
From: Thomas Huth @ 2017-06-29 15:51 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé,
	qemu-devel, Paolo Bonzini, Richard Henderson, Alex Bennée,
	Emilio G . Cota, Stefan Weil, Peter Crosthwaite, Yang Zhong
  Cc: qemu-trivial

On 29.06.2017 17:03, Philippe Mathieu-Daudé wrote:
> moved in a9ded601..244f1441 to accel/
> 
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> ---
>  MAINTAINERS | 6 +-----
>  1 file changed, 1 insertion(+), 5 deletions(-)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 839f7ca063..06006fc7df 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -84,14 +84,10 @@ M: Paolo Bonzini <pbonzini@redhat.com>
>  M: Peter Crosthwaite <crosthwaite.peter@gmail.com>
>  M: Richard Henderson <rth@twiddle.net>
>  S: Maintained
> -F: cpu-exec.c
> -F: cpu-exec-common.c
>  F: cpus.c
> -F: cputlb.c
>  F: exec.c
>  F: softmmu_template.h
> -F: translate-all.*
> -F: translate-common.c
> +F: accel/tcg/
>  F: include/exec/cpu*.h
>  F: include/exec/exec-all.h
>  F: include/exec/helper*.h

Reviewed-by: Thomas Huth <thuth@redhat.com>

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

* Re: [Qemu-devel] [PATCH v2 2/5] MAINTAINERS: update KVM entries
  2017-06-29 15:03 ` [Qemu-devel] [PATCH v2 2/5] MAINTAINERS: update KVM entries Philippe Mathieu-Daudé
@ 2017-06-29 15:56   ` Thomas Huth
  0 siblings, 0 replies; 10+ messages in thread
From: Thomas Huth @ 2017-06-29 15:56 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé,
	qemu-devel, Paolo Bonzini, Richard Henderson, Alex Bennée,
	Emilio G . Cota, Stefan Weil, Yang Zhong
  Cc: qemu-trivial

On 29.06.2017 17:03, Philippe Mathieu-Daudé wrote:
> moved in 92229a57 to accel/
> 
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> ---
>  MAINTAINERS | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 06006fc7df..86a08c5aac 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -273,8 +273,8 @@ Overall
>  M: Paolo Bonzini <pbonzini@redhat.com>
>  L: kvm@vger.kernel.org
>  S: Supported
> -F: kvm-*
>  F: */kvm.*

While you're at it ... what's the */kvm.* good for nowadays? Was this
though for the target-*/kvm.c files? If so, we should update this to
target/*/kvm* instead.

> +F: accel/kvm/
>  F: include/sysemu/kvm*.h

Maybe also add an entry for scripts/kvm ?

 Thomas

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

* Re: [Qemu-devel] [PATCH v2 0/5] MAINTAINERS: update TCG/KVM/Xen/TCI/Unimplemented device
  2017-06-29 15:03 [Qemu-devel] [PATCH v2 0/5] MAINTAINERS: update TCG/KVM/Xen/TCI/Unimplemented device Philippe Mathieu-Daudé
                   ` (4 preceding siblings ...)
  2017-06-29 15:03 ` [Qemu-devel] [PATCH v2 5/5] MAINTAINERS: add entry for "Unimplemented" device Philippe Mathieu-Daudé
@ 2017-07-11 11:22 ` Paolo Bonzini
  5 siblings, 0 replies; 10+ messages in thread
From: Paolo Bonzini @ 2017-07-11 11:22 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé, qemu-devel, Peter Maydell, Thomas Huth
  Cc: qemu-trivial

On 29/06/2017 17:03, Philippe Mathieu-Daudé wrote:
> As requested by Thomas Huth, I separated these patches from my previous series
> "removal of tci (tcg interpreter)".
> 
> TCG/KVM/Xen/TCI related files were moved in commits a9ded601..244f1441, update
> MAINTAINERS to match the new paths.
> 
> Also add an entry for the "Unimplemented" device and voluntary myself as
> reviewer.
> 
> Regards,
> 
> Phil.

Queued, thanks.

Paolo

> v2:
> - fix inaccurate Xen commit message (review feedback from Anthony PERARD)
> - add "Unimplemented" device
> 
> v1:
> - update TCG/KVM/Xen/TCI entries
> 
> Philippe Mathieu-Daudé (5):
>   MAINTAINERS: update TCG entries
>   MAINTAINERS: update KVM entries
>   MAINTAINERS: update Xen entries
>   MAINTAINERS: update TCI entry
>   MAINTAINERS: add entry for "Unimplemented" device
> 
>  MAINTAINERS | 18 ++++++++++--------
>  1 file changed, 10 insertions(+), 8 deletions(-)
> 

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

end of thread, other threads:[~2017-07-11 11:22 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-29 15:03 [Qemu-devel] [PATCH v2 0/5] MAINTAINERS: update TCG/KVM/Xen/TCI/Unimplemented device Philippe Mathieu-Daudé
2017-06-29 15:03 ` [Qemu-devel] [PATCH v2 1/5] MAINTAINERS: update TCG entries Philippe Mathieu-Daudé
2017-06-29 15:51   ` Thomas Huth
2017-06-29 15:03 ` [Qemu-devel] [PATCH v2 2/5] MAINTAINERS: update KVM entries Philippe Mathieu-Daudé
2017-06-29 15:56   ` Thomas Huth
2017-06-29 15:03 ` [Qemu-devel] [PATCH v2 3/5] MAINTAINERS: update Xen entries Philippe Mathieu-Daudé
2017-06-29 15:03 ` [Qemu-devel] [PATCH v2 4/5] MAINTAINERS: update TCI entry Philippe Mathieu-Daudé
2017-06-29 15:24   ` Stefan Weil
2017-06-29 15:03 ` [Qemu-devel] [PATCH v2 5/5] MAINTAINERS: add entry for "Unimplemented" device Philippe Mathieu-Daudé
2017-07-11 11:22 ` [Qemu-devel] [PATCH v2 0/5] MAINTAINERS: update TCG/KVM/Xen/TCI/Unimplemented device Paolo Bonzini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.