All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 00/14] Maintainers TLC
@ 2015-09-22  9:56 Paolo Bonzini
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 01/14] get_maintainer.pl: \C is deprecated Paolo Bonzini
                   ` (12 more replies)
  0 siblings, 13 replies; 24+ messages in thread
From: Paolo Bonzini @ 2015-09-22  9:56 UTC (permalink / raw)
  To: qemu-devel; +Cc: armbru

Add more files to MAINTAINERS, and avoid deprecation warnings in
get_maintainer.pl.

Paolo Bonzini (14):
  get_maintainer.pl: \C is deprecated
  MAINTAINERS: there is no PPC64 TCG backend anymore
  MAINTAINERS: Add disassemblers to the various backends
  MAINTAINERS: Add more Xen files
  MAINTAINERS: Add more s390 files
  MAINTAINERS: add IPack section
  MAINTAINERS: add two devices to the e500 section
  MAINTAINERS: add more devices to the PC section
  MAINTAINERS: add more devices to the PCI section
  MAINTAINERS: add maintainer for character device front-ends
  MAINTAINERS: add maintainer for network device front-ends
  MAINTAINERS: Add more pxa2xx files and boards
  MAINTAINERS: Add maintainer for ARM PrimeCell and integrated devices
  MAINTAINERS: Add more devices to realview board

 MAINTAINERS               | 120 +++++++++++++++++++++++++++++++++++++++++-----
 scripts/get_maintainer.pl |  22 ++++-----
 2 files changed, 118 insertions(+), 24 deletions(-)

-- 
2.5.0

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

* [Qemu-devel] [PATCH 01/14] get_maintainer.pl: \C is deprecated
  2015-09-22  9:56 [Qemu-devel] [PATCH 00/14] Maintainers TLC Paolo Bonzini
@ 2015-09-22  9:56 ` Paolo Bonzini
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 02/14] MAINTAINERS: there is no PPC64 TCG backend anymore Paolo Bonzini
                   ` (11 subsequent siblings)
  12 siblings, 0 replies; 24+ messages in thread
From: Paolo Bonzini @ 2015-09-22  9:56 UTC (permalink / raw)
  To: qemu-devel; +Cc: armbru

"Match a single C-language char (octet) even if that is part of a larger
UTF-8 character.  Thus it breaks up characters into their UTF-8 bytes,
so you may end up with malformed pieces of UTF-8."

Just use a period instead.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 scripts/get_maintainer.pl | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl
index f39630e..7dacf32 100755
--- a/scripts/get_maintainer.pl
+++ b/scripts/get_maintainer.pl
@@ -258,7 +258,7 @@ open (my $maint, '<', "${lk_path}MAINTAINERS")
 while (<$maint>) {
     my $line = $_;
 
-    if ($line =~ m/^(\C):\s*(.*)/) {
+    if ($line =~ m/^(.):\s*(.*)/) {
 	my $type = $1;
 	my $value = $2;
 
@@ -493,7 +493,7 @@ sub range_is_maintained {
 
     for (my $i = $start; $i < $end; $i++) {
 	my $line = $typevalue[$i];
-	if ($line =~ m/^(\C):\s*(.*)/) {
+	if ($line =~ m/^(.):\s*(.*)/) {
 	    my $type = $1;
 	    my $value = $2;
 	    if ($type eq 'S') {
@@ -511,7 +511,7 @@ sub range_has_maintainer {
 
     for (my $i = $start; $i < $end; $i++) {
 	my $line = $typevalue[$i];
-	if ($line =~ m/^(\C):\s*(.*)/) {
+	if ($line =~ m/^(.):\s*(.*)/) {
 	    my $type = $1;
 	    my $value = $2;
 	    if ($type eq 'M') {
@@ -560,7 +560,7 @@ sub get_maintainers {
 
 	    for ($i = $start; $i < $end; $i++) {
 		my $line = $typevalue[$i];
-		if ($line =~ m/^(\C):\s*(.*)/) {
+		if ($line =~ m/^(.):\s*(.*)/) {
 		    my $type = $1;
 		    my $value = $2;
 		    if ($type eq 'X') {
@@ -575,7 +575,7 @@ sub get_maintainers {
 	    if (!$exclude) {
 		for ($i = $start; $i < $end; $i++) {
 		    my $line = $typevalue[$i];
-		    if ($line =~ m/^(\C):\s*(.*)/) {
+		    if ($line =~ m/^(.):\s*(.*)/) {
 			my $type = $1;
 			my $value = $2;
 			if ($type eq 'F') {
@@ -855,7 +855,7 @@ sub find_first_section {
 
     while ($index < @typevalue) {
 	my $tv = $typevalue[$index];
-	if (($tv =~ m/^(\C):\s*(.*)/)) {
+	if (($tv =~ m/^(.):\s*(.*)/)) {
 	    last;
 	}
 	$index++;
@@ -869,7 +869,7 @@ sub find_starting_index {
 
     while ($index > 0) {
 	my $tv = $typevalue[$index];
-	if (!($tv =~ m/^(\C):\s*(.*)/)) {
+	if (!($tv =~ m/^(.):\s*(.*)/)) {
 	    last;
 	}
 	$index--;
@@ -883,7 +883,7 @@ sub find_ending_index {
 
     while ($index < @typevalue) {
 	my $tv = $typevalue[$index];
-	if (!($tv =~ m/^(\C):\s*(.*)/)) {
+	if (!($tv =~ m/^(.):\s*(.*)/)) {
 	    last;
 	}
 	$index++;
@@ -909,7 +909,7 @@ sub get_maintainer_role {
 
     for ($i = $start + 1; $i < $end; $i++) {
 	my $tv = $typevalue[$i];
-	if ($tv =~ m/^(\C):\s*(.*)/) {
+	if ($tv =~ m/^(.):\s*(.*)/) {
 	    my $ptype = $1;
 	    my $pvalue = $2;
 	    if ($ptype eq "S") {
@@ -968,7 +968,7 @@ sub add_categories {
 
     for ($i = $start + 1; $i < $end; $i++) {
 	my $tv = $typevalue[$i];
-	if ($tv =~ m/^(\C):\s*(.*)/) {
+	if ($tv =~ m/^(.):\s*(.*)/) {
 	    my $ptype = $1;
 	    my $pvalue = $2;
 	    if ($ptype eq "L") {
@@ -1010,7 +1010,7 @@ sub add_categories {
 		if ($name eq "") {
 		    if ($i > 0) {
 			my $tv = $typevalue[$i - 1];
-			if ($tv =~ m/^(\C):\s*(.*)/) {
+			if ($tv =~ m/^(.):\s*(.*)/) {
 			    if ($1 eq "P") {
 				$name = $2;
 				$pvalue = format_email($name, $address, $email_usename);
-- 
2.5.0

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

* [Qemu-devel] [PATCH 02/14] MAINTAINERS: there is no PPC64 TCG backend anymore
  2015-09-22  9:56 [Qemu-devel] [PATCH 00/14] Maintainers TLC Paolo Bonzini
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 01/14] get_maintainer.pl: \C is deprecated Paolo Bonzini
@ 2015-09-22  9:56 ` Paolo Bonzini
  2015-09-24 12:21   ` Markus Armbruster
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 03/14] MAINTAINERS: Add disassemblers to the various backends Paolo Bonzini
                   ` (10 subsequent siblings)
  12 siblings, 1 reply; 24+ messages in thread
From: Paolo Bonzini @ 2015-09-22  9:56 UTC (permalink / raw)
  To: qemu-devel; +Cc: armbru

PPC32 and PPC64 were unified.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 MAINTAINERS | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 71c652b..7c81848 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1142,11 +1142,6 @@ M: Vassili Karpov (malc) <av1474@comtv.ru>
 S: Maintained
 F: tcg/ppc/
 
-PPC64 target
-M: Vassili Karpov (malc) <av1474@comtv.ru>
-S: Maintained
-F: tcg/ppc64/
-
 S390 target
 M: Alexander Graf <agraf@suse.de>
 M: Richard Henderson <rth@twiddle.net>
-- 
2.5.0

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

* [Qemu-devel] [PATCH 03/14] MAINTAINERS: Add disassemblers to the various backends
  2015-09-22  9:56 [Qemu-devel] [PATCH 00/14] Maintainers TLC Paolo Bonzini
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 01/14] get_maintainer.pl: \C is deprecated Paolo Bonzini
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 02/14] MAINTAINERS: there is no PPC64 TCG backend anymore Paolo Bonzini
@ 2015-09-22  9:56 ` Paolo Bonzini
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 05/14] MAINTAINERS: Add more s390 files Paolo Bonzini
                   ` (9 subsequent siblings)
  12 siblings, 0 replies; 24+ messages in thread
From: Paolo Bonzini @ 2015-09-22  9:56 UTC (permalink / raw)
  To: qemu-devel; +Cc: armbru

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 MAINTAINERS | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 7c81848..af4952c 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -77,6 +77,7 @@ S: Maintained
 F: target-alpha/
 F: hw/alpha/
 F: tests/tcg/alpha/
+F: disas/alpha.c
 
 ARM
 M: Peter Maydell <peter.maydell@linaro.org>
@@ -84,6 +85,9 @@ S: Maintained
 F: target-arm/
 F: hw/arm/
 F: hw/cpu/a*mpcore.c
+F: disas/arm.c
+F: disas/arm-a64.cc
+F: disas/libvixl/
 
 CRIS
 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
@@ -91,6 +95,7 @@ S: Maintained
 F: target-cris/
 F: hw/cris/
 F: tests/tcg/cris/
+F: disas/cris.c
 
 LM32
 M: Michael Walle <michael@walle.cc>
@@ -114,6 +119,7 @@ M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
 S: Maintained
 F: target-microblaze/
 F: hw/microblaze/
+F: disas/microblaze.c
 
 MIPS
 M: Aurelien Jarno <aurelien@aurel32.net>
@@ -122,11 +128,13 @@ S: Maintained
 F: target-mips/
 F: hw/mips/
 F: tests/tcg/mips/
+F: disas/mips.c
 
 Moxie
 M: Anthony Green <green@moxielogic.com>
 S: Maintained
 F: target-moxie/
+F: disas/moxie.c
 
 OpenRISC
 M: Jia Liu <proljc@gmail.com>
@@ -141,6 +149,7 @@ L: qemu-ppc@nongnu.org
 S: Maintained
 F: target-ppc/
 F: hw/ppc/
+F: disas/ppc.c
 
 S390
 M: Richard Henderson <rth@twiddle.net>
@@ -148,12 +157,14 @@ M: Alexander Graf <agraf@suse.de>
 S: Maintained
 F: target-s390x/
 F: hw/s390x/
+F: disas/s390.c
 
 SH4
 M: Aurelien Jarno <aurelien@aurel32.net>
 S: Odd Fixes
 F: target-sh4/
 F: hw/sh4/
+F: disas/sh4.c
 
 SPARC
 M: Blue Swirl <blauwirbel@gmail.com>
@@ -162,6 +173,7 @@ S: Maintained
 F: target-sparc/
 F: hw/sparc/
 F: hw/sparc64/
+F: disas/sparc.c
 
 UniCore32
 M: Guan Xuetao <gxt@mprc.pku.edu.cn>
@@ -176,6 +188,7 @@ M: Eduardo Habkost <ehabkost@redhat.com>
 S: Maintained
 F: target-i386/
 F: hw/i386/
+F: disas/i386.c
 
 Xtensa
 M: Max Filippov <jcmvbkbc@gmail.com>
@@ -1116,48 +1129,58 @@ M: Claudio Fontana <claudio.fontana@huawei.com>
 M: Claudio Fontana <claudio.fontana@gmail.com>
 S: Maintained
 F: tcg/aarch64/
+F: disas/arm-a64.cc
+F: disas/libvixl/
 
 ARM target
 M: Andrzej Zaborowski <balrogg@gmail.com>
 S: Maintained
 F: tcg/arm/
+F: disas/arm.c
 
 i386 target
 L: qemu-devel@nongnu.org
 S: Maintained
 F: tcg/i386/
+F: disas/i386.c
 
 IA64 target
 M: Aurelien Jarno <aurelien@aurel32.net>
 S: Maintained
 F: tcg/ia64/
+F: disas/ia64.c
 
 MIPS target
 M: Aurelien Jarno <aurelien@aurel32.net>
 S: Maintained
 F: tcg/mips/
+F: disas/mips.c
 
 PPC
 M: Vassili Karpov (malc) <av1474@comtv.ru>
 S: Maintained
 F: tcg/ppc/
+F: disas/ppc.c
 
 S390 target
 M: Alexander Graf <agraf@suse.de>
 M: Richard Henderson <rth@twiddle.net>
 S: Maintained
 F: tcg/s390/
+F: disas/s390.c
 
 SPARC target
 M: Blue Swirl <blauwirbel@gmail.com>
 S: Maintained
 F: tcg/sparc/
+F: disas/sparc.c
 
 TCI target
 M: Stefan Weil <sw@weilnetz.de>
 S: Maintained
 F: tcg/tci/
 F: tci.c
+F: disas/tci.c
 
 Stable branches
 ---------------
-- 
2.5.0

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

* [Qemu-devel] [PATCH 05/14] MAINTAINERS: Add more s390 files
  2015-09-22  9:56 [Qemu-devel] [PATCH 00/14] Maintainers TLC Paolo Bonzini
                   ` (2 preceding siblings ...)
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 03/14] MAINTAINERS: Add disassemblers to the various backends Paolo Bonzini
@ 2015-09-22  9:56 ` Paolo Bonzini
  2015-09-22 10:30   ` Christian Borntraeger
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 06/14] MAINTAINERS: add IPack section Paolo Bonzini
                   ` (8 subsequent siblings)
  12 siblings, 1 reply; 24+ messages in thread
From: Paolo Bonzini @ 2015-09-22  9:56 UTC (permalink / raw)
  To: qemu-devel; +Cc: Christian Borntraeger, armbru, Alexander Graf

Cc: Christian Borntraeger <borntraeger@de.ibm.com>
Cc: Alexander Graf <agraf@suse.de>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 MAINTAINERS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 432edc7..c827b04 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -583,6 +583,7 @@ M: Cornelia Huck <cornelia.huck@de.ibm.com>
 M: Christian Borntraeger <borntraeger@de.ibm.com>
 M: Alexander Graf <agraf@suse.de>
 S: Supported
+F: hw/char/sclp*.[hc]
 F: hw/s390x/s390-virtio-ccw.c
 F: hw/s390x/css.[hc]
 F: hw/s390x/sclp*.[hc]
-- 
2.5.0

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

* [Qemu-devel] [PATCH 06/14] MAINTAINERS: add IPack section
  2015-09-22  9:56 [Qemu-devel] [PATCH 00/14] Maintainers TLC Paolo Bonzini
                   ` (3 preceding siblings ...)
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 05/14] MAINTAINERS: Add more s390 files Paolo Bonzini
@ 2015-09-22  9:56 ` Paolo Bonzini
  2015-09-22 10:14   ` Alberto Garcia
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 07/14] MAINTAINERS: add two devices to the e500 section Paolo Bonzini
                   ` (7 subsequent siblings)
  12 siblings, 1 reply; 24+ messages in thread
From: Paolo Bonzini @ 2015-09-22  9:56 UTC (permalink / raw)
  To: qemu-devel; +Cc: Alberto Garcia, armbru

Cc: Alberto Garcia <berto@igalia.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 MAINTAINERS | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index c827b04..1a9bfe4 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -669,6 +669,12 @@ M: Peter Maydell <peter.maydell@linaro.org>
 S: Maintained
 F: hw/*/omap*
 
+IPack
+M: Alberto Garcia <berto@igalia.com>
+S: Odd Fixes
+F: hw/char/ipoctal232.c
+F: hw/ipack/
+
 PCI
 M: Michael S. Tsirkin <mst@redhat.com>
 S: Supported
-- 
2.5.0

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

* [Qemu-devel] [PATCH 07/14] MAINTAINERS: add two devices to the e500 section
  2015-09-22  9:56 [Qemu-devel] [PATCH 00/14] Maintainers TLC Paolo Bonzini
                   ` (4 preceding siblings ...)
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 06/14] MAINTAINERS: add IPack section Paolo Bonzini
@ 2015-09-22  9:56 ` Paolo Bonzini
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 08/14] MAINTAINERS: add more devices to the PC section Paolo Bonzini
                   ` (6 subsequent siblings)
  12 siblings, 0 replies; 24+ messages in thread
From: Paolo Bonzini @ 2015-09-22  9:56 UTC (permalink / raw)
  To: qemu-devel; +Cc: Scott Wood, armbru, Alexander Graf

Cc: Alexander Graf <agraf@suse.de>
Cc: Scott Wood <scottwood@freescale.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 MAINTAINERS | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 1a9bfe4..1578db4 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -708,6 +708,8 @@ M: Scott Wood <scottwood@freescale.com>
 L: qemu-ppc@nongnu.org
 S: Supported
 F: hw/ppc/e500*
+F: hw/pci-host/ppce500.c
+F: hw/net/fsl_etsec/
 
 SCSI
 M: Paolo Bonzini <pbonzini@redhat.com>
-- 
2.5.0

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

* [Qemu-devel] [PATCH 08/14] MAINTAINERS: add more devices to the PC section
  2015-09-22  9:56 [Qemu-devel] [PATCH 00/14] Maintainers TLC Paolo Bonzini
                   ` (5 preceding siblings ...)
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 07/14] MAINTAINERS: add two devices to the e500 section Paolo Bonzini
@ 2015-09-22  9:56 ` Paolo Bonzini
  2015-09-22 10:40   ` Michael S. Tsirkin
  2015-09-22 10:41   ` Michael S. Tsirkin
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 09/14] MAINTAINERS: add more devices to the PCI section Paolo Bonzini
                   ` (5 subsequent siblings)
  12 siblings, 2 replies; 24+ messages in thread
From: Paolo Bonzini @ 2015-09-22  9:56 UTC (permalink / raw)
  To: qemu-devel; +Cc: armbru, Michael S. Tsirkin

For chipset devices, I can co-maintain it with Michael.

Cc: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 MAINTAINERS | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 1578db4..8474d22 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -621,6 +621,25 @@ F: hw/acpi/piix4.c
 F: hw/acpi/ich9.c
 F: include/hw/acpi/ich9.h
 F: include/hw/acpi/piix.h
+F: hw/misc/sga.c
+
+PC Chipset
+M: Michael S. Tsirkin <mst@redhat.com>
+M: Paolo Bonzini <pbonzini@redhat.com>
+S: Support
+F: hw/char/debugcon.c
+F: hw/char/parallel.c
+F: hw/char/serial*
+F: hw/dma/i8257*
+F: hw/i2c/pm_smbus.c
+F: hw/intc/apic*
+F: hw/intc/ioapic*
+F: hw/intc/i8259*
+F: hw/misc/debugexit.c
+F: hw/misc/pc-testdev.c
+F: hw/timer/hpet*
+F: hw/timer/i8254*
+F: hw/timer/mc146818rtc*
 
 
 Xtensa Machines
-- 
2.5.0

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

* [Qemu-devel] [PATCH 09/14] MAINTAINERS: add more devices to the PCI section
  2015-09-22  9:56 [Qemu-devel] [PATCH 00/14] Maintainers TLC Paolo Bonzini
                   ` (6 preceding siblings ...)
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 08/14] MAINTAINERS: add more devices to the PC section Paolo Bonzini
@ 2015-09-22  9:56 ` Paolo Bonzini
  2015-09-22 10:42   ` Michael S. Tsirkin
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 10/14] MAINTAINERS: add maintainer for character device front-ends Paolo Bonzini
                   ` (4 subsequent siblings)
  12 siblings, 1 reply; 24+ messages in thread
From: Paolo Bonzini @ 2015-09-22  9:56 UTC (permalink / raw)
  To: qemu-devel; +Cc: armbru, Michael S. Tsirkin

Cc: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 MAINTAINERS | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 8474d22..366d763 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -698,7 +698,9 @@ PCI
 M: Michael S. Tsirkin <mst@redhat.com>
 S: Supported
 F: include/hw/pci/*
+F: hw/misc/pci-testdev.c
 F: hw/pci/*
+F: hw/pci-bridge/*
 
 ACPI/SMBIOS
 M: Michael S. Tsirkin <mst@redhat.com>
-- 
2.5.0

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

* [Qemu-devel] [PATCH 10/14] MAINTAINERS: add maintainer for character device front-ends
  2015-09-22  9:56 [Qemu-devel] [PATCH 00/14] Maintainers TLC Paolo Bonzini
                   ` (7 preceding siblings ...)
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 09/14] MAINTAINERS: add more devices to the PCI section Paolo Bonzini
@ 2015-09-22  9:56 ` Paolo Bonzini
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 11/14] MAINTAINERS: add maintainer for network " Paolo Bonzini
                   ` (3 subsequent siblings)
  12 siblings, 0 replies; 24+ messages in thread
From: Paolo Bonzini @ 2015-09-22  9:56 UTC (permalink / raw)
  To: qemu-devel; +Cc: armbru

Only "Odd Fixes" status, but let's add a point of contact.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 MAINTAINERS | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 366d763..0580fb9 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -732,6 +732,11 @@ F: hw/ppc/e500*
 F: hw/pci-host/ppce500.c
 F: hw/net/fsl_etsec/
 
+Character devices
+M: Paolo Bonzini <pbonzini@redhat.com>
+S: Odd Fixes
+F: hw/char/
+
 SCSI
 M: Paolo Bonzini <pbonzini@redhat.com>
 S: Supported
@@ -916,7 +921,7 @@ F: block/qapi.c
 F: qapi/block*.json
 T: git git://repo.or.cz/qemu/armbru.git block-next
 
-Character Devices
+Character device backends
 M: Paolo Bonzini <pbonzini@redhat.com>
 S: Maintained
 F: qemu-char.c
-- 
2.5.0

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

* [Qemu-devel] [PATCH 11/14] MAINTAINERS: add maintainer for network device front-ends
  2015-09-22  9:56 [Qemu-devel] [PATCH 00/14] Maintainers TLC Paolo Bonzini
                   ` (8 preceding siblings ...)
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 10/14] MAINTAINERS: add maintainer for character device front-ends Paolo Bonzini
@ 2015-09-22  9:56 ` Paolo Bonzini
  2015-09-24  3:15   ` Jason Wang
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 12/14] MAINTAINERS: Add more pxa2xx files and boards Paolo Bonzini
                   ` (2 subsequent siblings)
  12 siblings, 1 reply; 24+ messages in thread
From: Paolo Bonzini @ 2015-09-22  9:56 UTC (permalink / raw)
  To: qemu-devel; +Cc: Jason Wang, armbru

Only "Odd Fixes" status, but let's add a point of contact.

Cc: Jason Wang <jasowang@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 MAINTAINERS | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 0580fb9..2305c48 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -737,6 +737,12 @@ M: Paolo Bonzini <pbonzini@redhat.com>
 S: Odd Fixes
 F: hw/char/
 
+Network devices
+M: Jason Wang <jasowang@redhat.com>
+S: Odd Fixes
+F: hw/net/
+T: git git://github.com/jasowang/qemu.git net
+
 SCSI
 M: Paolo Bonzini <pbonzini@redhat.com>
 S: Supported
@@ -1016,7 +1022,7 @@ F: hmp.c
 F: hmp-commands.hx
 T: git git://repo.or.cz/qemu/qmp-unstable.git queue/qmp
 
-Network device layer
+Network device backends
 M: Jason Wang <jasowang@redhat.com>
 S: Maintained
 F: net/
-- 
2.5.0

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

* [Qemu-devel] [PATCH 12/14] MAINTAINERS: Add more pxa2xx files and boards
  2015-09-22  9:56 [Qemu-devel] [PATCH 00/14] Maintainers TLC Paolo Bonzini
                   ` (9 preceding siblings ...)
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 11/14] MAINTAINERS: add maintainer for network " Paolo Bonzini
@ 2015-09-22  9:56 ` Paolo Bonzini
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 13/14] MAINTAINERS: Add maintainer for ARM PrimeCell and integrated devices Paolo Bonzini
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 14/14] MAINTAINERS: Add more devices to realview board Paolo Bonzini
  12 siblings, 0 replies; 24+ messages in thread
From: Paolo Bonzini @ 2015-09-22  9:56 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, armbru

Cc: Peter Maydell <peter.maydell@linaro.org>
Cc: Andrzej Zaborowski <balrogg@gmail.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 MAINTAINERS | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 2305c48..4f4b523 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -327,11 +327,6 @@ M: Peter Maydell <peter.maydell@linaro.org>
 S: Maintained
 F: hw/arm/integratorcp.c
 
-Mainstone
-L: qemu-devel@nongnu.org
-S: Orphan
-F: hw/arm/mainstone.c
-
 Musicpal
 M: Jan Kiszka <jan.kiszka@web.de>
 S: Maintained
@@ -352,10 +347,14 @@ M: Peter Maydell <peter.maydell@linaro.org>
 S: Maintained
 F: hw/arm/realview*
 
-Spitz
+PXA2XX
 M: Andrzej Zaborowski <balrogg@gmail.com>
 S: Maintained
+F: hw/arm/mainstone.c
 F: hw/arm/spitz.c
+F: hw/arm/tosa.c
+F: hw/arm/z2.c
+F: hw/*/pxa2xx*
 
 Stellaris
 M: Peter Maydell <peter.maydell@linaro.org>
-- 
2.5.0

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

* [Qemu-devel] [PATCH 13/14] MAINTAINERS: Add maintainer for ARM PrimeCell and integrated devices
  2015-09-22  9:56 [Qemu-devel] [PATCH 00/14] Maintainers TLC Paolo Bonzini
                   ` (10 preceding siblings ...)
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 12/14] MAINTAINERS: Add more pxa2xx files and boards Paolo Bonzini
@ 2015-09-22  9:56 ` Paolo Bonzini
  2015-09-22 13:33   ` Thomas Huth
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 14/14] MAINTAINERS: Add more devices to realview board Paolo Bonzini
  12 siblings, 1 reply; 24+ messages in thread
From: Paolo Bonzini @ 2015-09-22  9:56 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, armbru

Cc: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 MAINTAINERS | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 4f4b523..0fe3fb7 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -291,6 +291,34 @@ F: hw/*/allwinner-a10*
 F: include/hw/*/allwinner-a10*
 F: hw/arm/cubieboard.c
 
+ARM PrimeCell
+M: Peter Maydell <peter.maydell@linaro.org>
+S: Maintained
+F: hw/char/pl011.c
+F: hw/display/pl110*
+F: hw/dma/pl080.c
+F: hw/dma/pl330.c
+F: hw/gpio/pl061.c
+F: hw/input/pl050.c
+F: hw/intc/pl190.c
+F: hw/sd/pl181.c
+F: hw/timer/pl031.c
+
+ARM cores
+M: Peter Maydell <peter.maydell@linaro.org>
+S: Maintained
+F: hw/intc/arm*
+F: hw/intc/gic_internal.h
+F: hw/misc/a9scu.c
+F: hw/misc/arm11scu.c
+F: hw/timer/a9gtimer*
+F: hw/timer/arm_*
+F: include/hw/intc/arm*
+F: include/hw/misc/a9scu.h
+F: include/hw/misc/arm11scu.h
+F: include/hw/timer/a9gtimer.h
+F: include/hw/timer/arm_mptimer.h
+
 Exynos
 M: Evgeny Voevodin <e.voevodin@samsung.com>
 M: Maksim Kozlov <m.kozlov@samsung.com>
-- 
2.5.0

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

* [Qemu-devel] [PATCH 14/14] MAINTAINERS: Add more devices to realview board
  2015-09-22  9:56 [Qemu-devel] [PATCH 00/14] Maintainers TLC Paolo Bonzini
                   ` (11 preceding siblings ...)
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 13/14] MAINTAINERS: Add maintainer for ARM PrimeCell and integrated devices Paolo Bonzini
@ 2015-09-22  9:56 ` Paolo Bonzini
  12 siblings, 0 replies; 24+ messages in thread
From: Paolo Bonzini @ 2015-09-22  9:56 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, armbru

Cc: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 MAINTAINERS | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 0fe3fb7..85a62d5 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -374,6 +374,8 @@ Real View
 M: Peter Maydell <peter.maydell@linaro.org>
 S: Maintained
 F: hw/arm/realview*
+F: hw/intc/realview_gic.c
+F: include/hw/intc/realview_gic.h
 
 PXA2XX
 M: Andrzej Zaborowski <balrogg@gmail.com>
-- 
2.5.0

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

* Re: [Qemu-devel] [PATCH 06/14] MAINTAINERS: add IPack section
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 06/14] MAINTAINERS: add IPack section Paolo Bonzini
@ 2015-09-22 10:14   ` Alberto Garcia
  0 siblings, 0 replies; 24+ messages in thread
From: Alberto Garcia @ 2015-09-22 10:14 UTC (permalink / raw)
  To: Paolo Bonzini, qemu-devel; +Cc: armbru

On Tue 22 Sep 2015 11:56:45 AM CEST, Paolo Bonzini wrote:

> +IPack
> +M: Alberto Garcia <berto@igalia.com>
> +S: Odd Fixes
> +F: hw/char/ipoctal232.c
> +F: hw/ipack/

Also include/hw/ipack/ipack.h I guess

Otherwise,

Reviewed-by: Alberto Garcia <berto@igalia.com>

Thanks,

Berto

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

* Re: [Qemu-devel] [PATCH 05/14] MAINTAINERS: Add more s390 files
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 05/14] MAINTAINERS: Add more s390 files Paolo Bonzini
@ 2015-09-22 10:30   ` Christian Borntraeger
  0 siblings, 0 replies; 24+ messages in thread
From: Christian Borntraeger @ 2015-09-22 10:30 UTC (permalink / raw)
  To: Paolo Bonzini, qemu-devel; +Cc: armbru, Alexander Graf

Am 22.09.2015 um 11:56 schrieb Paolo Bonzini:
> Cc: Christian Borntraeger <borntraeger@de.ibm.com>
> Cc: Alexander Graf <agraf@suse.de>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  MAINTAINERS | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 432edc7..c827b04 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -583,6 +583,7 @@ M: Cornelia Huck <cornelia.huck@de.ibm.com>
>  M: Christian Borntraeger <borntraeger@de.ibm.com>
>  M: Alexander Graf <agraf@suse.de>
>  S: Supported
> +F: hw/char/sclp*.[hc]
>  F: hw/s390x/s390-virtio-ccw.c
>  F: hw/s390x/css.[hc]
>  F: hw/s390x/sclp*.[hc]
> 

Acked-by: Christian Borntraeger <borntraeger@de.ibm.com>

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

* Re: [Qemu-devel] [PATCH 08/14] MAINTAINERS: add more devices to the PC section
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 08/14] MAINTAINERS: add more devices to the PC section Paolo Bonzini
@ 2015-09-22 10:40   ` Michael S. Tsirkin
  2015-09-22 10:41   ` Michael S. Tsirkin
  1 sibling, 0 replies; 24+ messages in thread
From: Michael S. Tsirkin @ 2015-09-22 10:40 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: qemu-devel, armbru

On Tue, Sep 22, 2015 at 11:56:47AM +0200, Paolo Bonzini wrote:
> For chipset devices, I can co-maintain it with Michael.
> 
> Cc: Michael S. Tsirkin <mst@redhat.com>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>

Thanks a lot, I'll merge this!

> ---
>  MAINTAINERS | 19 +++++++++++++++++++
>  1 file changed, 19 insertions(+)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 1578db4..8474d22 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -621,6 +621,25 @@ F: hw/acpi/piix4.c
>  F: hw/acpi/ich9.c
>  F: include/hw/acpi/ich9.h
>  F: include/hw/acpi/piix.h
> +F: hw/misc/sga.c
> +
> +PC Chipset
> +M: Michael S. Tsirkin <mst@redhat.com>
> +M: Paolo Bonzini <pbonzini@redhat.com>
> +S: Support
> +F: hw/char/debugcon.c
> +F: hw/char/parallel.c
> +F: hw/char/serial*
> +F: hw/dma/i8257*
> +F: hw/i2c/pm_smbus.c
> +F: hw/intc/apic*
> +F: hw/intc/ioapic*
> +F: hw/intc/i8259*
> +F: hw/misc/debugexit.c
> +F: hw/misc/pc-testdev.c
> +F: hw/timer/hpet*
> +F: hw/timer/i8254*
> +F: hw/timer/mc146818rtc*
>  
>  
>  Xtensa Machines
> -- 
> 2.5.0
> 

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

* Re: [Qemu-devel] [PATCH 08/14] MAINTAINERS: add more devices to the PC section
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 08/14] MAINTAINERS: add more devices to the PC section Paolo Bonzini
  2015-09-22 10:40   ` Michael S. Tsirkin
@ 2015-09-22 10:41   ` Michael S. Tsirkin
  1 sibling, 0 replies; 24+ messages in thread
From: Michael S. Tsirkin @ 2015-09-22 10:41 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: qemu-devel, armbru

On Tue, Sep 22, 2015 at 11:56:47AM +0200, Paolo Bonzini wrote:
> For chipset devices, I can co-maintain it with Michael.
> 
> Cc: Michael S. Tsirkin <mst@redhat.com>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>

Reviewed-by: Michael S. Tsirkin <mst@redhat.com>

> ---
>  MAINTAINERS | 19 +++++++++++++++++++
>  1 file changed, 19 insertions(+)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 1578db4..8474d22 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -621,6 +621,25 @@ F: hw/acpi/piix4.c
>  F: hw/acpi/ich9.c
>  F: include/hw/acpi/ich9.h
>  F: include/hw/acpi/piix.h
> +F: hw/misc/sga.c
> +
> +PC Chipset
> +M: Michael S. Tsirkin <mst@redhat.com>
> +M: Paolo Bonzini <pbonzini@redhat.com>
> +S: Support
> +F: hw/char/debugcon.c
> +F: hw/char/parallel.c
> +F: hw/char/serial*
> +F: hw/dma/i8257*
> +F: hw/i2c/pm_smbus.c
> +F: hw/intc/apic*
> +F: hw/intc/ioapic*
> +F: hw/intc/i8259*
> +F: hw/misc/debugexit.c
> +F: hw/misc/pc-testdev.c
> +F: hw/timer/hpet*
> +F: hw/timer/i8254*
> +F: hw/timer/mc146818rtc*
>  
>  
>  Xtensa Machines
> -- 
> 2.5.0
> 

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

* Re: [Qemu-devel] [PATCH 09/14] MAINTAINERS: add more devices to the PCI section
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 09/14] MAINTAINERS: add more devices to the PCI section Paolo Bonzini
@ 2015-09-22 10:42   ` Michael S. Tsirkin
  0 siblings, 0 replies; 24+ messages in thread
From: Michael S. Tsirkin @ 2015-09-22 10:42 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: qemu-devel, armbru

On Tue, Sep 22, 2015 at 11:56:48AM +0200, Paolo Bonzini wrote:
> Cc: Michael S. Tsirkin <mst@redhat.com>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>

Reviewed-by: Michael S. Tsirkin <mst@redhat.com>

> ---
>  MAINTAINERS | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 8474d22..366d763 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -698,7 +698,9 @@ PCI
>  M: Michael S. Tsirkin <mst@redhat.com>
>  S: Supported
>  F: include/hw/pci/*
> +F: hw/misc/pci-testdev.c
>  F: hw/pci/*
> +F: hw/pci-bridge/*
>  
>  ACPI/SMBIOS
>  M: Michael S. Tsirkin <mst@redhat.com>
> -- 
> 2.5.0
> 

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

* Re: [Qemu-devel] [PATCH 13/14] MAINTAINERS: Add maintainer for ARM PrimeCell and integrated devices
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 13/14] MAINTAINERS: Add maintainer for ARM PrimeCell and integrated devices Paolo Bonzini
@ 2015-09-22 13:33   ` Thomas Huth
  0 siblings, 0 replies; 24+ messages in thread
From: Thomas Huth @ 2015-09-22 13:33 UTC (permalink / raw)
  To: Paolo Bonzini, qemu-devel; +Cc: Peter Maydell, armbru

On 22/09/15 11:56, Paolo Bonzini wrote:
> Cc: Peter Maydell <peter.maydell@linaro.org>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  MAINTAINERS | 28 ++++++++++++++++++++++++++++
>  1 file changed, 28 insertions(+)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 4f4b523..0fe3fb7 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -291,6 +291,34 @@ F: hw/*/allwinner-a10*
>  F: include/hw/*/allwinner-a10*
>  F: hw/arm/cubieboard.c
>  
> +ARM PrimeCell
> +M: Peter Maydell <peter.maydell@linaro.org>
> +S: Maintained
> +F: hw/char/pl011.c
> +F: hw/display/pl110*
> +F: hw/dma/pl080.c
> +F: hw/dma/pl330.c
> +F: hw/gpio/pl061.c
> +F: hw/input/pl050.c
> +F: hw/intc/pl190.c
> +F: hw/sd/pl181.c
> +F: hw/timer/pl031.c

Add include/hw/arm/primecell.h ?

> +ARM cores
> +M: Peter Maydell <peter.maydell@linaro.org>
> +S: Maintained
> +F: hw/intc/arm*
> +F: hw/intc/gic_internal.h
> +F: hw/misc/a9scu.c
> +F: hw/misc/arm11scu.c
> +F: hw/timer/a9gtimer*
> +F: hw/timer/arm_*
> +F: include/hw/intc/arm*
> +F: include/hw/misc/a9scu.h
> +F: include/hw/misc/arm11scu.h
> +F: include/hw/timer/a9gtimer.h
> +F: include/hw/timer/arm_mptimer.h

Add include/hw/arm/arm.h ?

 Thomas

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

* Re: [Qemu-devel] [PATCH 11/14] MAINTAINERS: add maintainer for network device front-ends
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 11/14] MAINTAINERS: add maintainer for network " Paolo Bonzini
@ 2015-09-24  3:15   ` Jason Wang
  0 siblings, 0 replies; 24+ messages in thread
From: Jason Wang @ 2015-09-24  3:15 UTC (permalink / raw)
  To: Paolo Bonzini, qemu-devel; +Cc: armbru



On 09/22/2015 05:56 PM, Paolo Bonzini wrote:
> Only "Odd Fixes" status, but let's add a point of contact.
>
> Cc: Jason Wang <jasowang@redhat.com>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  MAINTAINERS | 8 +++++++-
>  1 file changed, 7 insertions(+), 1 deletion(-)
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 0580fb9..2305c48 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -737,6 +737,12 @@ M: Paolo Bonzini <pbonzini@redhat.com>
>  S: Odd Fixes
>  F: hw/char/
>  
> +Network devices
> +M: Jason Wang <jasowang@redhat.com>
> +S: Odd Fixes
> +F: hw/net/
> +T: git git://github.com/jasowang/qemu.git net
> +
>  SCSI
>  M: Paolo Bonzini <pbonzini@redhat.com>
>  S: Supported
> @@ -1016,7 +1022,7 @@ F: hmp.c
>  F: hmp-commands.hx
>  T: git git://repo.or.cz/qemu/qmp-unstable.git queue/qmp
>  
> -Network device layer
> +Network device backends
>  M: Jason Wang <jasowang@redhat.com>
>  S: Maintained
>  F: net/

Acked-by: Jason Wang <jasowang@redhat.com>

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

* Re: [Qemu-devel] [PATCH 02/14] MAINTAINERS: there is no PPC64 TCG backend anymore
  2015-09-22  9:56 ` [Qemu-devel] [PATCH 02/14] MAINTAINERS: there is no PPC64 TCG backend anymore Paolo Bonzini
@ 2015-09-24 12:21   ` Markus Armbruster
  2015-09-24 15:49     ` Michael Tokarev
  0 siblings, 1 reply; 24+ messages in thread
From: Markus Armbruster @ 2015-09-24 12:21 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: Michael Tokarev, qemu-devel

Paolo Bonzini <pbonzini@redhat.com> writes:

> PPC32 and PPC64 were unified.
>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  MAINTAINERS | 5 -----
>  1 file changed, 5 deletions(-)
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 71c652b..7c81848 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -1142,11 +1142,6 @@ M: Vassili Karpov (malc) <av1474@comtv.ru>
>  S: Maintained
>  F: tcg/ppc/
>  
> -PPC64 target
> -M: Vassili Karpov (malc) <av1474@comtv.ru>
> -S: Maintained
> -F: tcg/ppc64/
> -
>  S390 target
>  M: Alexander Graf <agraf@suse.de>
>  M: Richard Henderson <rth@twiddle.net>

Does this address work?

According to Michael, it bounces:
Message-ID: <5461BFA5.4040903@msgid.tls.msk.ru>
http://lists.gnu.org/archive/html/qemu-devel/2014-11/msg01604.html

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

* Re: [Qemu-devel] [PATCH 02/14] MAINTAINERS: there is no PPC64 TCG backend anymore
  2015-09-24 12:21   ` Markus Armbruster
@ 2015-09-24 15:49     ` Michael Tokarev
  2015-09-24 16:21       ` Markus Armbruster
  0 siblings, 1 reply; 24+ messages in thread
From: Michael Tokarev @ 2015-09-24 15:49 UTC (permalink / raw)
  To: Markus Armbruster, Paolo Bonzini; +Cc: qemu-devel

24.09.2015 15:21, Markus Armbruster wrote:
> Paolo Bonzini <pbonzini@redhat.com> writes:
> 
>> PPC32 and PPC64 were unified.
>>
>> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
>> ---
>>  MAINTAINERS | 5 -----
>>  1 file changed, 5 deletions(-)
>>
>> diff --git a/MAINTAINERS b/MAINTAINERS
>> index 71c652b..7c81848 100644
>> --- a/MAINTAINERS
>> +++ b/MAINTAINERS
>> @@ -1142,11 +1142,6 @@ M: Vassili Karpov (malc) <av1474@comtv.ru>
>>  S: Maintained
>>  F: tcg/ppc/
>>  
>> -PPC64 target
>> -M: Vassili Karpov (malc) <av1474@comtv.ru>
>> -S: Maintained
>> -F: tcg/ppc64/
>> -
>>  S390 target
>>  M: Alexander Graf <agraf@suse.de>
>>  M: Richard Henderson <rth@twiddle.net>
> 
> Does this address work?
> 
> According to Michael, it bounces:
> Message-ID: <5461BFA5.4040903@msgid.tls.msk.ru>
> http://lists.gnu.org/archive/html/qemu-devel/2014-11/msg01604.html

It's trivial to verify:

$ dnsget -t mx comtv.ru
comtv.ru. MX 10 fe02x02-cgp.akado.ru.
comtv.ru. MX 10 fe01x02-cgp.akado.ru.
$ telnet fe01x02-cgp.akado.ru smtp
Trying 77.232.31.162...
Connected to fe01x02-cgp.akado.ru.
Escape character is '^]'.
HELO isrv.corpit.ru220 fe02-cgp.akado.ru ESMTP CommuniGate Pro 5.2.13
250 fe02-cgp.akado.ru is pleased to meet you
MAIL FROM:<mjt@tls.msk.ru>
250 mjt@tls.msk.ru sender accepted
RCPT TO:<av1474@comtv.ru>
550 av1474@comtv.ru unknown user account

/mjt

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

* Re: [Qemu-devel] [PATCH 02/14] MAINTAINERS: there is no PPC64 TCG backend anymore
  2015-09-24 15:49     ` Michael Tokarev
@ 2015-09-24 16:21       ` Markus Armbruster
  0 siblings, 0 replies; 24+ messages in thread
From: Markus Armbruster @ 2015-09-24 16:21 UTC (permalink / raw)
  To: Michael Tokarev; +Cc: Paolo Bonzini, qemu-devel

Michael Tokarev <mjt@tls.msk.ru> writes:

> 24.09.2015 15:21, Markus Armbruster wrote:
>> Paolo Bonzini <pbonzini@redhat.com> writes:
>> 
>>> PPC32 and PPC64 were unified.
>>>
>>> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
>>> ---
>>>  MAINTAINERS | 5 -----
>>>  1 file changed, 5 deletions(-)
>>>
>>> diff --git a/MAINTAINERS b/MAINTAINERS
>>> index 71c652b..7c81848 100644
>>> --- a/MAINTAINERS
>>> +++ b/MAINTAINERS
>>> @@ -1142,11 +1142,6 @@ M: Vassili Karpov (malc) <av1474@comtv.ru>
>>>  S: Maintained
>>>  F: tcg/ppc/
>>>  
>>> -PPC64 target
>>> -M: Vassili Karpov (malc) <av1474@comtv.ru>
>>> -S: Maintained
>>> -F: tcg/ppc64/
>>> -
>>>  S390 target
>>>  M: Alexander Graf <agraf@suse.de>
>>>  M: Richard Henderson <rth@twiddle.net>
>> 
>> Does this address work?
>> 
>> According to Michael, it bounces:
>> Message-ID: <5461BFA5.4040903@msgid.tls.msk.ru>
>> http://lists.gnu.org/archive/html/qemu-devel/2014-11/msg01604.html
>
> It's trivial to verify:
>
> $ dnsget -t mx comtv.ru
> comtv.ru. MX 10 fe02x02-cgp.akado.ru.
> comtv.ru. MX 10 fe01x02-cgp.akado.ru.
> $ telnet fe01x02-cgp.akado.ru smtp
> Trying 77.232.31.162...
> Connected to fe01x02-cgp.akado.ru.
> Escape character is '^]'.
> HELO isrv.corpit.ru220 fe02-cgp.akado.ru ESMTP CommuniGate Pro 5.2.13
> 250 fe02-cgp.akado.ru is pleased to meet you
> MAIL FROM:<mjt@tls.msk.ru>
> 250 mjt@tls.msk.ru sender accepted
> RCPT TO:<av1474@comtv.ru>
> 550 av1474@comtv.ru unknown user account

tcg/ppc/ needs a new maintainer then.

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

end of thread, other threads:[~2015-09-24 16:21 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-22  9:56 [Qemu-devel] [PATCH 00/14] Maintainers TLC Paolo Bonzini
2015-09-22  9:56 ` [Qemu-devel] [PATCH 01/14] get_maintainer.pl: \C is deprecated Paolo Bonzini
2015-09-22  9:56 ` [Qemu-devel] [PATCH 02/14] MAINTAINERS: there is no PPC64 TCG backend anymore Paolo Bonzini
2015-09-24 12:21   ` Markus Armbruster
2015-09-24 15:49     ` Michael Tokarev
2015-09-24 16:21       ` Markus Armbruster
2015-09-22  9:56 ` [Qemu-devel] [PATCH 03/14] MAINTAINERS: Add disassemblers to the various backends Paolo Bonzini
2015-09-22  9:56 ` [Qemu-devel] [PATCH 05/14] MAINTAINERS: Add more s390 files Paolo Bonzini
2015-09-22 10:30   ` Christian Borntraeger
2015-09-22  9:56 ` [Qemu-devel] [PATCH 06/14] MAINTAINERS: add IPack section Paolo Bonzini
2015-09-22 10:14   ` Alberto Garcia
2015-09-22  9:56 ` [Qemu-devel] [PATCH 07/14] MAINTAINERS: add two devices to the e500 section Paolo Bonzini
2015-09-22  9:56 ` [Qemu-devel] [PATCH 08/14] MAINTAINERS: add more devices to the PC section Paolo Bonzini
2015-09-22 10:40   ` Michael S. Tsirkin
2015-09-22 10:41   ` Michael S. Tsirkin
2015-09-22  9:56 ` [Qemu-devel] [PATCH 09/14] MAINTAINERS: add more devices to the PCI section Paolo Bonzini
2015-09-22 10:42   ` Michael S. Tsirkin
2015-09-22  9:56 ` [Qemu-devel] [PATCH 10/14] MAINTAINERS: add maintainer for character device front-ends Paolo Bonzini
2015-09-22  9:56 ` [Qemu-devel] [PATCH 11/14] MAINTAINERS: add maintainer for network " Paolo Bonzini
2015-09-24  3:15   ` Jason Wang
2015-09-22  9:56 ` [Qemu-devel] [PATCH 12/14] MAINTAINERS: Add more pxa2xx files and boards Paolo Bonzini
2015-09-22  9:56 ` [Qemu-devel] [PATCH 13/14] MAINTAINERS: Add maintainer for ARM PrimeCell and integrated devices Paolo Bonzini
2015-09-22 13:33   ` Thomas Huth
2015-09-22  9:56 ` [Qemu-devel] [PATCH 14/14] MAINTAINERS: Add more devices to realview board 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.