All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v2 00/17] add missing entries in MAINTAINERS
@ 2017-08-30 21:55 Philippe Mathieu-Daudé
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 01/17] MAINTAINERS: add missing ARM entries Philippe Mathieu-Daudé
                   ` (18 more replies)
  0 siblings, 19 replies; 32+ messages in thread
From: Philippe Mathieu-Daudé @ 2017-08-30 21:55 UTC (permalink / raw)
  To: qemu-trivial; +Cc: Philippe Mathieu-Daudé, qemu-devel

Hi,

I tried to have a more helpful ./scripts/get_maintainer.pl output, filling
missing entries in MAINTAINERS.

Regards,

Phil.

v2:
- add R-b & A-b
- clean ARM entries (Thomas Huth)
- moved files: comment since which commit (Eric Blake)
- drop inconsistent patches (default-configs.mak related to hw/machine, no CPU)
- drop unhappy patches (include/standard-headers/linux/*)
- drop unreplied patches

Philippe Mathieu-Daudé (17):
  MAINTAINERS: add missing ARM entries
  MAINTAINERS: add missing Versatile PB entry
  MAINTAINERS: add missing STM32 entry
  MAINTAINERS: add missing entry for vhost
  MAINTAINERS: add missing VMWare entry
  MAINTAINERS: add missing Guest Agent entries
  MAINTAINERS: add missing qcow2 entry
  MAINTAINERS: add missing USB entry
  MAINTAINERS: add missing PCI entries
  MAINTAINERS: add missing SSI entries
  MAINTAINERS: add missing entries for throttling infra
  MAINTAINERS: add missing megasas test entry
  MAINTAINERS: add missing AIO entry
  MAINTAINERS: add missing entry for Generic Loader
  MAINTAINERS: add missing Cryptography entry
  MAINTAINERS: update docs/devel/ entries
  MAINTAINERS: update docs/interop/ entries

 MAINTAINERS | 44 ++++++++++++++++++++++++++++++++++----------
 1 file changed, 34 insertions(+), 10 deletions(-)

-- 
2.14.1

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

* [Qemu-devel] [PATCH v2 01/17] MAINTAINERS: add missing ARM entries
  2017-08-30 21:55 [Qemu-devel] [PATCH v2 00/17] add missing entries in MAINTAINERS Philippe Mathieu-Daudé
@ 2017-08-30 21:55 ` Philippe Mathieu-Daudé
  2017-08-31  5:07   ` Thomas Huth
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 02/17] MAINTAINERS: add missing Versatile PB entry Philippe Mathieu-Daudé
                   ` (17 subsequent siblings)
  18 siblings, 1 reply; 32+ messages in thread
From: Philippe Mathieu-Daudé @ 2017-08-30 21:55 UTC (permalink / raw)
  To: Peter Maydell, Thomas Huth
  Cc: Philippe Mathieu-Daudé, qemu-devel, qemu-trivial, qemu-arm

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

diff --git a/MAINTAINERS b/MAINTAINERS
index ccee28b12d..b363e1b9c9 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -380,6 +380,7 @@ M: Peter Maydell <peter.maydell@linaro.org>
 L: qemu-arm@nongnu.org
 S: Maintained
 F: hw/char/pl011.c
+F: include/hw/char/pl011.h
 F: hw/display/pl110*
 F: hw/dma/pl080.c
 F: hw/dma/pl330.c
@@ -403,13 +404,15 @@ 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/arm/arm.h
+F: hw/timer/arm*
+F: include/hw/arm/arm*.h
 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
+F: include/hw/timer/armv7m_systick.h
+F: tests/test-arm-mptimer.c
 
 Exynos
 M: Igor Mitsyanko <i.mitsyanko@gmail.com>
-- 
2.14.1

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

* [Qemu-devel] [PATCH v2 02/17] MAINTAINERS: add missing Versatile PB entry
  2017-08-30 21:55 [Qemu-devel] [PATCH v2 00/17] add missing entries in MAINTAINERS Philippe Mathieu-Daudé
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 01/17] MAINTAINERS: add missing ARM entries Philippe Mathieu-Daudé
@ 2017-08-30 21:55 ` Philippe Mathieu-Daudé
  2017-08-31  5:22   ` Thomas Huth
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 03/17] MAINTAINERS: add missing STM32 entry Philippe Mathieu-Daudé
                   ` (16 subsequent siblings)
  18 siblings, 1 reply; 32+ messages in thread
From: Philippe Mathieu-Daudé @ 2017-08-30 21:55 UTC (permalink / raw)
  To: Peter Maydell, Thomas Huth
  Cc: Philippe Mathieu-Daudé, qemu-devel, qemu-trivial, qemu-arm

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

diff --git a/MAINTAINERS b/MAINTAINERS
index b363e1b9c9..5b7891addc 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -515,6 +515,7 @@ M: Peter Maydell <peter.maydell@linaro.org>
 L: qemu-arm@nongnu.org
 S: Maintained
 F: hw/*/versatile*
+F: hw/misc/arm_sysctl.c
 
 Xilinx Zynq
 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
-- 
2.14.1

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

* [Qemu-devel] [PATCH v2 03/17] MAINTAINERS: add missing STM32 entry
  2017-08-30 21:55 [Qemu-devel] [PATCH v2 00/17] add missing entries in MAINTAINERS Philippe Mathieu-Daudé
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 01/17] MAINTAINERS: add missing ARM entries Philippe Mathieu-Daudé
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 02/17] MAINTAINERS: add missing Versatile PB entry Philippe Mathieu-Daudé
@ 2017-08-30 21:55 ` Philippe Mathieu-Daudé
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 04/17] MAINTAINERS: add missing entry for vhost Philippe Mathieu-Daudé
                   ` (15 subsequent siblings)
  18 siblings, 0 replies; 32+ messages in thread
From: Philippe Mathieu-Daudé @ 2017-08-30 21:55 UTC (permalink / raw)
  To: Alistair Francis, Thomas Huth
  Cc: Philippe Mathieu-Daudé, qemu-devel, qemu-trivial

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Alistair Francis <alistair@alistair23.me>
---
 MAINTAINERS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 5b7891addc..8c75ce477a 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -552,6 +552,7 @@ F: hw/char/stm32f2xx_usart.c
 F: hw/timer/stm32f2xx_timer.c
 F: hw/adc/*
 F: hw/ssi/stm32f2xx_spi.c
+F: include/hw/*/stm32*.h
 
 Netduino 2
 M: Alistair Francis <alistair@alistair23.me>
-- 
2.14.1

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

* [Qemu-devel] [PATCH v2 04/17] MAINTAINERS: add missing entry for vhost
  2017-08-30 21:55 [Qemu-devel] [PATCH v2 00/17] add missing entries in MAINTAINERS Philippe Mathieu-Daudé
                   ` (2 preceding siblings ...)
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 03/17] MAINTAINERS: add missing STM32 entry Philippe Mathieu-Daudé
@ 2017-08-30 21:55 ` Philippe Mathieu-Daudé
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 05/17] MAINTAINERS: add missing VMWare entry Philippe Mathieu-Daudé
                   ` (14 subsequent siblings)
  18 siblings, 0 replies; 32+ messages in thread
From: Philippe Mathieu-Daudé @ 2017-08-30 21:55 UTC (permalink / raw)
  To: Michael S . Tsirkin; +Cc: Philippe Mathieu-Daudé, qemu-devel, qemu-trivial

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

diff --git a/MAINTAINERS b/MAINTAINERS
index 8c75ce477a..223591c231 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1029,6 +1029,7 @@ vhost
 M: Michael S. Tsirkin <mst@redhat.com>
 S: Supported
 F: hw/*/*vhost*
+F: docs/interop/vhost-user.txt
 
 virtio
 M: Michael S. Tsirkin <mst@redhat.com>
-- 
2.14.1

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

* [Qemu-devel] [PATCH v2 05/17] MAINTAINERS: add missing VMWare entry
  2017-08-30 21:55 [Qemu-devel] [PATCH v2 00/17] add missing entries in MAINTAINERS Philippe Mathieu-Daudé
                   ` (3 preceding siblings ...)
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 04/17] MAINTAINERS: add missing entry for vhost Philippe Mathieu-Daudé
@ 2017-08-30 21:55 ` Philippe Mathieu-Daudé
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 06/17] MAINTAINERS: add missing Guest Agent entries Philippe Mathieu-Daudé
                   ` (13 subsequent siblings)
  18 siblings, 0 replies; 32+ messages in thread
From: Philippe Mathieu-Daudé @ 2017-08-30 21:55 UTC (permalink / raw)
  To: Dmitry Fleytman, Thomas Huth
  Cc: Philippe Mathieu-Daudé, qemu-devel, qemu-trivial

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Dmitry Fleytman <dmitry@daynix.com>
---
 MAINTAINERS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 223591c231..aa185c1edd 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1126,6 +1126,7 @@ M: Dmitry Fleytman <dmitry@daynix.com>
 S: Maintained
 F: hw/net/vmxnet*
 F: hw/scsi/vmw_pvscsi*
+F: tests/vmxnet3-test.c
 
 Rocker
 M: Jiri Pirko <jiri@resnulli.us>
-- 
2.14.1

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

* [Qemu-devel] [PATCH v2 06/17] MAINTAINERS: add missing Guest Agent entries
  2017-08-30 21:55 [Qemu-devel] [PATCH v2 00/17] add missing entries in MAINTAINERS Philippe Mathieu-Daudé
                   ` (4 preceding siblings ...)
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 05/17] MAINTAINERS: add missing VMWare entry Philippe Mathieu-Daudé
@ 2017-08-30 21:55 ` Philippe Mathieu-Daudé
  2017-09-08 13:04   ` Philippe Mathieu-Daudé
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 07/17] MAINTAINERS: add missing qcow2 entry Philippe Mathieu-Daudé
                   ` (12 subsequent siblings)
  18 siblings, 1 reply; 32+ messages in thread
From: Philippe Mathieu-Daudé @ 2017-08-30 21:55 UTC (permalink / raw)
  To: Michael Roth; +Cc: Philippe Mathieu-Daudé, qemu-devel, qemu-trivial

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

diff --git a/MAINTAINERS b/MAINTAINERS
index aa185c1edd..f4e07173c8 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1434,6 +1434,10 @@ QEMU Guest Agent
 M: Michael Roth <mdroth@linux.vnet.ibm.com>
 S: Maintained
 F: qga/
+F: qemu-ga.texi
+F: scripts/qemu-guest-agent/
+F: tests/test-qga.c
+F: docs/interop/qemu-ga-ref.texi
 T: git git://github.com/mdroth/qemu.git qga
 
 QOM
-- 
2.14.1

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

* [Qemu-devel] [PATCH v2 07/17] MAINTAINERS: add missing qcow2 entry
  2017-08-30 21:55 [Qemu-devel] [PATCH v2 00/17] add missing entries in MAINTAINERS Philippe Mathieu-Daudé
                   ` (5 preceding siblings ...)
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 06/17] MAINTAINERS: add missing Guest Agent entries Philippe Mathieu-Daudé
@ 2017-08-30 21:55 ` Philippe Mathieu-Daudé
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 08/17] MAINTAINERS: add missing USB entry Philippe Mathieu-Daudé
                   ` (11 subsequent siblings)
  18 siblings, 0 replies; 32+ messages in thread
From: Philippe Mathieu-Daudé @ 2017-08-30 21:55 UTC (permalink / raw)
  To: Kevin Wolf, Max Reitz, Stefan Hajnoczi
  Cc: Philippe Mathieu-Daudé, qemu-devel, qemu-trivial, qemu-block

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Acked-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
---
 MAINTAINERS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index f4e07173c8..eb20365fbb 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1841,6 +1841,7 @@ M: Max Reitz <mreitz@redhat.com>
 L: qemu-block@nongnu.org
 S: Supported
 F: block/qcow2*
+F: docs/interop/qcow2.txt
 
 qcow
 M: Kevin Wolf <kwolf@redhat.com>
-- 
2.14.1

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

* [Qemu-devel] [PATCH v2 08/17] MAINTAINERS: add missing USB entry
  2017-08-30 21:55 [Qemu-devel] [PATCH v2 00/17] add missing entries in MAINTAINERS Philippe Mathieu-Daudé
                   ` (6 preceding siblings ...)
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 07/17] MAINTAINERS: add missing qcow2 entry Philippe Mathieu-Daudé
@ 2017-08-30 21:55 ` Philippe Mathieu-Daudé
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 09/17] MAINTAINERS: add missing PCI entries Philippe Mathieu-Daudé
                   ` (10 subsequent siblings)
  18 siblings, 0 replies; 32+ messages in thread
From: Philippe Mathieu-Daudé @ 2017-08-30 21:55 UTC (permalink / raw)
  To: Gerd Hoffmann, Thomas Huth
  Cc: Philippe Mathieu-Daudé, qemu-devel, qemu-trivial

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
---
 MAINTAINERS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index eb20365fbb..dd5e2c2b6b 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1004,6 +1004,7 @@ F: docs/usb2.txt
 F: docs/usb-storage.txt
 F: include/hw/usb.h
 F: include/hw/usb/
+F: default-configs/usb.mak
 
 USB (serial adapter)
 M: Gerd Hoffmann <kraxel@redhat.com>
-- 
2.14.1

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

* [Qemu-devel] [PATCH v2 09/17] MAINTAINERS: add missing PCI entries
  2017-08-30 21:55 [Qemu-devel] [PATCH v2 00/17] add missing entries in MAINTAINERS Philippe Mathieu-Daudé
                   ` (7 preceding siblings ...)
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 08/17] MAINTAINERS: add missing USB entry Philippe Mathieu-Daudé
@ 2017-08-30 21:55 ` Philippe Mathieu-Daudé
  2017-09-04  9:51   ` Marcel Apfelbaum
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 10/17] MAINTAINERS: add missing SSI entries Philippe Mathieu-Daudé
                   ` (9 subsequent siblings)
  18 siblings, 1 reply; 32+ messages in thread
From: Philippe Mathieu-Daudé @ 2017-08-30 21:55 UTC (permalink / raw)
  To: Michael S . Tsirkin, Marcel Apfelbaum
  Cc: Philippe Mathieu-Daudé, qemu-devel, qemu-trivial

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

diff --git a/MAINTAINERS b/MAINTAINERS
index dd5e2c2b6b..bbe1191883 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -928,6 +928,8 @@ F: include/hw/pci/*
 F: hw/misc/pci-testdev.c
 F: hw/pci/*
 F: hw/pci-bridge/*
+F: docs/pci*
+F: docs/specs/*pci*
 
 ACPI/SMBIOS
 M: Michael S. Tsirkin <mst@redhat.com>
-- 
2.14.1

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

* [Qemu-devel] [PATCH v2 10/17] MAINTAINERS: add missing SSI entries
  2017-08-30 21:55 [Qemu-devel] [PATCH v2 00/17] add missing entries in MAINTAINERS Philippe Mathieu-Daudé
                   ` (8 preceding siblings ...)
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 09/17] MAINTAINERS: add missing PCI entries Philippe Mathieu-Daudé
@ 2017-08-30 21:55 ` Philippe Mathieu-Daudé
  2017-08-30 23:13   ` Alistair Francis
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 11/17] MAINTAINERS: add missing entries for throttling infra Philippe Mathieu-Daudé
                   ` (8 subsequent siblings)
  18 siblings, 1 reply; 32+ messages in thread
From: Philippe Mathieu-Daudé @ 2017-08-30 21:55 UTC (permalink / raw)
  To: Peter Crosthwaite, Alistair Francis
  Cc: Philippe Mathieu-Daudé, qemu-devel, qemu-trivial

Alistair Francis volunteered :)

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

diff --git a/MAINTAINERS b/MAINTAINERS
index bbe1191883..0a3a50aa25 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -986,10 +986,13 @@ F: hw/scsi/lsi53c895a.c
 
 SSI
 M: Peter Crosthwaite <crosthwaite.peter@gmail.com>
+M: Alistair Francis <alistair.francis@xilinx.com>
 S: Maintained
 F: hw/ssi/*
 F: hw/block/m25p80.c
+F: include/hw/ssi/ssi.h
 X: hw/ssi/xilinx_*
+F: tests/m25p80-test.c
 
 Xilinx SPI
 M: Alistair Francis <alistair.francis@xilinx.com>
-- 
2.14.1

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

* [Qemu-devel] [PATCH v2 11/17] MAINTAINERS: add missing entries for throttling infra
  2017-08-30 21:55 [Qemu-devel] [PATCH v2 00/17] add missing entries in MAINTAINERS Philippe Mathieu-Daudé
                   ` (9 preceding siblings ...)
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 10/17] MAINTAINERS: add missing SSI entries Philippe Mathieu-Daudé
@ 2017-08-30 21:55 ` Philippe Mathieu-Daudé
  2017-08-31  7:45   ` Alberto Garcia
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 12/17] MAINTAINERS: add missing megasas test entry Philippe Mathieu-Daudé
                   ` (7 subsequent siblings)
  18 siblings, 1 reply; 32+ messages in thread
From: Philippe Mathieu-Daudé @ 2017-08-30 21:55 UTC (permalink / raw)
  To: Alberto Garcia, Stefan Hajnoczi
  Cc: Philippe Mathieu-Daudé, qemu-devel, qemu-trivial

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
---
 MAINTAINERS | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 0a3a50aa25..fa74b7254b 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1558,8 +1558,10 @@ M: Alberto Garcia <berto@igalia.com>
 S: Supported
 F: block/throttle-groups.c
 F: include/block/throttle-groups.h
-F: include/qemu/throttle.h
+F: include/qemu/throttle*.h
 F: util/throttle.c
+F: docs/throttle.txt
+F: tests/test-throttle.c
 L: qemu-block@nongnu.org
 
 UUID
-- 
2.14.1

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

* [Qemu-devel] [PATCH v2 12/17] MAINTAINERS: add missing megasas test entry
  2017-08-30 21:55 [Qemu-devel] [PATCH v2 00/17] add missing entries in MAINTAINERS Philippe Mathieu-Daudé
                   ` (10 preceding siblings ...)
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 11/17] MAINTAINERS: add missing entries for throttling infra Philippe Mathieu-Daudé
@ 2017-08-30 21:55 ` Philippe Mathieu-Daudé
  2017-09-08 13:04   ` Philippe Mathieu-Daudé
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 13/17] MAINTAINERS: add missing AIO entry Philippe Mathieu-Daudé
                   ` (6 subsequent siblings)
  18 siblings, 1 reply; 32+ messages in thread
From: Philippe Mathieu-Daudé @ 2017-08-30 21:55 UTC (permalink / raw)
  To: Hannes Reinecke
  Cc: Philippe Mathieu-Daudé, qemu-devel, qemu-trivial, qemu-block

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

diff --git a/MAINTAINERS b/MAINTAINERS
index fa74b7254b..20d65dca73 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1118,6 +1118,7 @@ L: qemu-block@nongnu.org
 S: Supported
 F: hw/scsi/megasas.c
 F: hw/scsi/mfi.h
+F: tests/megasas-test.c
 
 Network packet abstractions
 M: Dmitry Fleytman <dmitry@daynix.com>
-- 
2.14.1

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

* [Qemu-devel] [PATCH v2 13/17] MAINTAINERS: add missing AIO entry
  2017-08-30 21:55 [Qemu-devel] [PATCH v2 00/17] add missing entries in MAINTAINERS Philippe Mathieu-Daudé
                   ` (11 preceding siblings ...)
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 12/17] MAINTAINERS: add missing megasas test entry Philippe Mathieu-Daudé
@ 2017-08-30 21:55 ` Philippe Mathieu-Daudé
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 14/17] MAINTAINERS: add missing entry for Generic Loader Philippe Mathieu-Daudé
                   ` (5 subsequent siblings)
  18 siblings, 0 replies; 32+ messages in thread
From: Philippe Mathieu-Daudé @ 2017-08-30 21:55 UTC (permalink / raw)
  To: Stefan Hajnoczi, Fam Zheng
  Cc: Philippe Mathieu-Daudé, qemu-devel, qemu-trivial, qemu-block

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Acked-by: Fam Zheng <famz@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
---
 MAINTAINERS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 20d65dca73..a48f633cad 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1225,6 +1225,7 @@ F: util/aio-*.c
 F: block/io.c
 F: migration/block*
 F: include/block/aio.h
+F: scripts/qemugdb/aio.py
 T: git git://github.com/stefanha/qemu.git block
 
 Block Jobs
-- 
2.14.1

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

* [Qemu-devel] [PATCH v2 14/17] MAINTAINERS: add missing entry for Generic Loader
  2017-08-30 21:55 [Qemu-devel] [PATCH v2 00/17] add missing entries in MAINTAINERS Philippe Mathieu-Daudé
                   ` (12 preceding siblings ...)
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 13/17] MAINTAINERS: add missing AIO entry Philippe Mathieu-Daudé
@ 2017-08-30 21:55 ` Philippe Mathieu-Daudé
  2017-08-30 23:13   ` Alistair Francis
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 15/17] MAINTAINERS: add missing Cryptography entry Philippe Mathieu-Daudé
                   ` (4 subsequent siblings)
  18 siblings, 1 reply; 32+ messages in thread
From: Philippe Mathieu-Daudé @ 2017-08-30 21:55 UTC (permalink / raw)
  To: Alistair Francis; +Cc: Philippe Mathieu-Daudé, qemu-devel, qemu-trivial

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

diff --git a/MAINTAINERS b/MAINTAINERS
index a48f633cad..0b77590dc8 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1164,6 +1164,7 @@ M: Alistair Francis <alistair.francis@xilinx.com>
 S: Maintained
 F: hw/core/generic-loader.c
 F: include/hw/core/generic-loader.h
+F: docs/generic-loader.txt
 
 CHRP NVRAM
 M: Thomas Huth <thuth@redhat.com>
-- 
2.14.1

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

* [Qemu-devel] [PATCH v2 15/17] MAINTAINERS: add missing Cryptography entry
  2017-08-30 21:55 [Qemu-devel] [PATCH v2 00/17] add missing entries in MAINTAINERS Philippe Mathieu-Daudé
                   ` (13 preceding siblings ...)
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 14/17] MAINTAINERS: add missing entry for Generic Loader Philippe Mathieu-Daudé
@ 2017-08-30 21:55 ` Philippe Mathieu-Daudé
  2017-08-31  9:19   ` Daniel P. Berrange
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 16/17] MAINTAINERS: update docs/devel/ entries Philippe Mathieu-Daudé
                   ` (3 subsequent siblings)
  18 siblings, 1 reply; 32+ messages in thread
From: Philippe Mathieu-Daudé @ 2017-08-30 21:55 UTC (permalink / raw)
  To: Daniel P . Berrange, Longpeng
  Cc: Philippe Mathieu-Daudé, qemu-devel, qemu-trivial

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

diff --git a/MAINTAINERS b/MAINTAINERS
index 0b77590dc8..7a0c00550e 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1526,6 +1526,7 @@ S: Maintained
 F: crypto/
 F: include/crypto/
 F: tests/test-crypto-*
+F: tests/benchmark-crypto-*
 F: qemu.sasl
 
 Coroutines
-- 
2.14.1

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

* [Qemu-devel] [PATCH v2 16/17] MAINTAINERS: update docs/devel/ entries
  2017-08-30 21:55 [Qemu-devel] [PATCH v2 00/17] add missing entries in MAINTAINERS Philippe Mathieu-Daudé
                   ` (14 preceding siblings ...)
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 15/17] MAINTAINERS: add missing Cryptography entry Philippe Mathieu-Daudé
@ 2017-08-30 21:55 ` Philippe Mathieu-Daudé
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 17/17] MAINTAINERS: update docs/interop/ entries Philippe Mathieu-Daudé
                   ` (2 subsequent siblings)
  18 siblings, 0 replies; 32+ messages in thread
From: Philippe Mathieu-Daudé @ 2017-08-30 21:55 UTC (permalink / raw)
  To: Markus Armbruster, Michael Roth, Eric Blake
  Cc: Philippe Mathieu-Daudé, qemu-devel, qemu-trivial

moved in commit ac06724a7158

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Eric Blake <eblake@redhat.com>
---
 MAINTAINERS | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 7a0c00550e..452ccd71b4 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1414,7 +1414,7 @@ F: tests/test-qapi-*.c
 F: tests/test-qmp-*.c
 F: tests/test-visitor-serialization.c
 F: scripts/qapi*
-F: docs/qapi*
+F: docs/devel/qapi*
 T: git git://repo.or.cz/qemu/armbru.git qapi-next
 
 QAPI Schema
@@ -1466,7 +1466,7 @@ M: Markus Armbruster <armbru@redhat.com>
 S: Supported
 F: qmp.c
 F: monitor.c
-F: docs/*qmp-*
+F: docs/devel/*qmp-*
 F: scripts/qmp/
 F: tests/qmp-test.c
 T: git git://repo.or.cz/qemu/armbru.git qapi-next
@@ -1497,7 +1497,7 @@ S: Maintained
 F: trace/
 F: scripts/tracetool.py
 F: scripts/tracetool/
-F: docs/tracing.txt
+F: docs/devel/tracing.txt
 T: git git://github.com/stefanha/qemu.git tracing
 
 Checkpatch
@@ -1512,7 +1512,7 @@ F: include/migration/
 F: migration/
 F: scripts/vmstate-static-checker.py
 F: tests/vmstate-static-checker-data/
-F: docs/migration.txt
+F: docs/devel/migration.txt
 
 Seccomp
 M: Eduardo Otubo <otubo@redhat.com>
@@ -1914,5 +1914,5 @@ Documentation
 Build system architecture
 M: Daniel P. Berrange <berrange@redhat.com>
 S: Odd Fixes
-F: docs/build-system.txt
+F: docs/devel/build-system.txt
 
-- 
2.14.1

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

* [Qemu-devel] [PATCH v2 17/17] MAINTAINERS: update docs/interop/ entries
  2017-08-30 21:55 [Qemu-devel] [PATCH v2 00/17] add missing entries in MAINTAINERS Philippe Mathieu-Daudé
                   ` (15 preceding siblings ...)
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 16/17] MAINTAINERS: update docs/devel/ entries Philippe Mathieu-Daudé
@ 2017-08-30 21:55 ` Philippe Mathieu-Daudé
  2017-08-31  3:55 ` [Qemu-devel] [PATCH v2 00/17] add missing entries in MAINTAINERS Philippe Mathieu-Daudé
  2017-09-08 12:51 ` Michael S. Tsirkin
  18 siblings, 0 replies; 32+ messages in thread
From: Philippe Mathieu-Daudé @ 2017-08-30 21:55 UTC (permalink / raw)
  To: Fam Zheng, John Snow
  Cc: Philippe Mathieu-Daudé, qemu-devel, qemu-trivial, qemu-block

moved in commit 7746cf8aab68

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Acked-by: Fam Zheng <famz@redhat.com>
Acked-by: John Snow <jsnow@redhat.com>
---
 MAINTAINERS | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 452ccd71b4..833a7a6778 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1259,7 +1259,7 @@ F: block/dirty-bitmap.c
 F: include/qemu/hbitmap.h
 F: include/block/dirty-bitmap.h
 F: tests/test-hbitmap.c
-F: docs/bitmaps.md
+F: docs/interop/bitmaps.rst
 T: git git://github.com/famz/qemu.git bitmaps
 T: git git://github.com/jnsnow/qemu.git bitmaps
 
@@ -1828,7 +1828,7 @@ M: Denis V. Lunev <den@openvz.org>
 L: qemu-block@nongnu.org
 S: Supported
 F: block/parallels.c
-F: docs/specs/parallels.txt
+F: docs/interop/parallels.txt
 
 qed
 M: Stefan Hajnoczi <stefanha@redhat.com>
-- 
2.14.1

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

* Re: [Qemu-devel] [PATCH v2 14/17] MAINTAINERS: add missing entry for Generic Loader
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 14/17] MAINTAINERS: add missing entry for Generic Loader Philippe Mathieu-Daudé
@ 2017-08-30 23:13   ` Alistair Francis
  0 siblings, 0 replies; 32+ messages in thread
From: Alistair Francis @ 2017-08-30 23:13 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé
  Cc: Alistair Francis, QEMU Trivial, qemu-devel@nongnu.org Developers

On Wed, Aug 30, 2017 at 2:55 PM, Philippe Mathieu-Daudé <f4bug@amsat.org> wrote:
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>

Reviewed-by: Alistair Francis <alistair.francis@xilinx.com>

Thanks,
Alistair

> ---
>  MAINTAINERS | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index a48f633cad..0b77590dc8 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -1164,6 +1164,7 @@ M: Alistair Francis <alistair.francis@xilinx.com>
>  S: Maintained
>  F: hw/core/generic-loader.c
>  F: include/hw/core/generic-loader.h
> +F: docs/generic-loader.txt
>
>  CHRP NVRAM
>  M: Thomas Huth <thuth@redhat.com>
> --
> 2.14.1
>
>

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

* Re: [Qemu-devel] [PATCH v2 10/17] MAINTAINERS: add missing SSI entries
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 10/17] MAINTAINERS: add missing SSI entries Philippe Mathieu-Daudé
@ 2017-08-30 23:13   ` Alistair Francis
  0 siblings, 0 replies; 32+ messages in thread
From: Alistair Francis @ 2017-08-30 23:13 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé
  Cc: Peter Crosthwaite, Alistair Francis, QEMU Trivial,
	qemu-devel@nongnu.org Developers

On Wed, Aug 30, 2017 at 2:55 PM, Philippe Mathieu-Daudé <f4bug@amsat.org> wrote:
> Alistair Francis volunteered :)
>
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>

Reviewed-by: Alistair Francis <alistair.francis@xilinx.com>

Thanks,
Alistair

> ---
>  MAINTAINERS | 3 +++
>  1 file changed, 3 insertions(+)
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index bbe1191883..0a3a50aa25 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -986,10 +986,13 @@ F: hw/scsi/lsi53c895a.c
>
>  SSI
>  M: Peter Crosthwaite <crosthwaite.peter@gmail.com>
> +M: Alistair Francis <alistair.francis@xilinx.com>
>  S: Maintained
>  F: hw/ssi/*
>  F: hw/block/m25p80.c
> +F: include/hw/ssi/ssi.h
>  X: hw/ssi/xilinx_*
> +F: tests/m25p80-test.c
>
>  Xilinx SPI
>  M: Alistair Francis <alistair.francis@xilinx.com>
> --
> 2.14.1
>
>

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

* Re: [Qemu-devel] [PATCH v2 00/17] add missing entries in MAINTAINERS
  2017-08-30 21:55 [Qemu-devel] [PATCH v2 00/17] add missing entries in MAINTAINERS Philippe Mathieu-Daudé
                   ` (16 preceding siblings ...)
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 17/17] MAINTAINERS: update docs/interop/ entries Philippe Mathieu-Daudé
@ 2017-08-31  3:55 ` Philippe Mathieu-Daudé
  2017-09-08 12:51 ` Michael S. Tsirkin
  18 siblings, 0 replies; 32+ messages in thread
From: Philippe Mathieu-Daudé @ 2017-08-31  3:55 UTC (permalink / raw)
  To: qemu-trivial, Markus Armbruster; +Cc: qemu-devel

Cc'ing Markus since I forgot to include him.

On 08/30/2017 06:55 PM, Philippe Mathieu-Daudé wrote:
> Hi,
> 
> I tried to have a more helpful ./scripts/get_maintainer.pl output, filling
> missing entries in MAINTAINERS.
> 
> Regards,
> 
> Phil.
> 
> v2:
> - add R-b & A-b
> - clean ARM entries (Thomas Huth)
> - moved files: comment since which commit (Eric Blake)
> - drop inconsistent patches (default-configs.mak related to hw/machine, no CPU)
> - drop unhappy patches (include/standard-headers/linux/*)
> - drop unreplied patches
> 
> Philippe Mathieu-Daudé (17):
>    MAINTAINERS: add missing ARM entries
>    MAINTAINERS: add missing Versatile PB entry
>    MAINTAINERS: add missing STM32 entry
>    MAINTAINERS: add missing entry for vhost
>    MAINTAINERS: add missing VMWare entry
>    MAINTAINERS: add missing Guest Agent entries
>    MAINTAINERS: add missing qcow2 entry
>    MAINTAINERS: add missing USB entry
>    MAINTAINERS: add missing PCI entries
>    MAINTAINERS: add missing SSI entries
>    MAINTAINERS: add missing entries for throttling infra
>    MAINTAINERS: add missing megasas test entry
>    MAINTAINERS: add missing AIO entry
>    MAINTAINERS: add missing entry for Generic Loader
>    MAINTAINERS: add missing Cryptography entry
>    MAINTAINERS: update docs/devel/ entries
>    MAINTAINERS: update docs/interop/ entries
> 
>   MAINTAINERS | 44 ++++++++++++++++++++++++++++++++++----------
>   1 file changed, 34 insertions(+), 10 deletions(-)
> 

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

* Re: [Qemu-devel] [PATCH v2 01/17] MAINTAINERS: add missing ARM entries
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 01/17] MAINTAINERS: add missing ARM entries Philippe Mathieu-Daudé
@ 2017-08-31  5:07   ` Thomas Huth
  0 siblings, 0 replies; 32+ messages in thread
From: Thomas Huth @ 2017-08-31  5:07 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé, Peter Maydell
  Cc: qemu-devel, qemu-trivial, qemu-arm

On 30.08.2017 23:55, Philippe Mathieu-Daudé wrote:
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> ---
>  MAINTAINERS | 7 +++++--
>  1 file changed, 5 insertions(+), 2 deletions(-)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index ccee28b12d..b363e1b9c9 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -380,6 +380,7 @@ M: Peter Maydell <peter.maydell@linaro.org>
>  L: qemu-arm@nongnu.org
>  S: Maintained
>  F: hw/char/pl011.c
> +F: include/hw/char/pl011.h
>  F: hw/display/pl110*
>  F: hw/dma/pl080.c
>  F: hw/dma/pl330.c
> @@ -403,13 +404,15 @@ 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/arm/arm.h
> +F: hw/timer/arm*
> +F: include/hw/arm/arm*.h
>  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
> +F: include/hw/timer/armv7m_systick.h
> +F: tests/test-arm-mptimer.c
>  
>  Exynos
>  M: Igor Mitsyanko <i.mitsyanko@gmail.com>

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

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

* Re: [Qemu-devel] [PATCH v2 02/17] MAINTAINERS: add missing Versatile PB entry
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 02/17] MAINTAINERS: add missing Versatile PB entry Philippe Mathieu-Daudé
@ 2017-08-31  5:22   ` Thomas Huth
  0 siblings, 0 replies; 32+ messages in thread
From: Thomas Huth @ 2017-08-31  5:22 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé, Peter Maydell
  Cc: qemu-devel, qemu-trivial, qemu-arm

On 30.08.2017 23:55, Philippe Mathieu-Daudé wrote:
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> ---
>  MAINTAINERS | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index b363e1b9c9..5b7891addc 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -515,6 +515,7 @@ M: Peter Maydell <peter.maydell@linaro.org>
>  L: qemu-arm@nongnu.org
>  S: Maintained
>  F: hw/*/versatile*
> +F: hw/misc/arm_sysctl.c

I think you could also merge this into the previous patch. Anyway:

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

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

* Re: [Qemu-devel] [PATCH v2 11/17] MAINTAINERS: add missing entries for throttling infra
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 11/17] MAINTAINERS: add missing entries for throttling infra Philippe Mathieu-Daudé
@ 2017-08-31  7:45   ` Alberto Garcia
  0 siblings, 0 replies; 32+ messages in thread
From: Alberto Garcia @ 2017-08-31  7:45 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé, Stefan Hajnoczi; +Cc: qemu-devel, qemu-trivial

On Wed 30 Aug 2017 11:55:17 PM CEST, Philippe Mathieu-Daudé <f4bug@amsat.org> wrote:
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>

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

Berto

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

* Re: [Qemu-devel] [PATCH v2 15/17] MAINTAINERS: add missing Cryptography entry
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 15/17] MAINTAINERS: add missing Cryptography entry Philippe Mathieu-Daudé
@ 2017-08-31  9:19   ` Daniel P. Berrange
  0 siblings, 0 replies; 32+ messages in thread
From: Daniel P. Berrange @ 2017-08-31  9:19 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé; +Cc: Longpeng, qemu-devel, qemu-trivial

On Wed, Aug 30, 2017 at 06:55:21PM -0300, Philippe Mathieu-Daudé wrote:
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> ---
>  MAINTAINERS | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 0b77590dc8..7a0c00550e 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -1526,6 +1526,7 @@ S: Maintained
>  F: crypto/
>  F: include/crypto/
>  F: tests/test-crypto-*
> +F: tests/benchmark-crypto-*
>  F: qemu.sasl
>  
>  Coroutines

Acked-by: Daniel P. Berrange <berrange@redhat.com>

Regards,
Daniel
-- 
|: https://berrange.com      -o-    https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org         -o-            https://fstop138.berrange.com :|
|: https://entangle-photo.org    -o-    https://www.instagram.com/dberrange :|

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

* Re: [Qemu-devel] [PATCH v2 09/17] MAINTAINERS: add missing PCI entries
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 09/17] MAINTAINERS: add missing PCI entries Philippe Mathieu-Daudé
@ 2017-09-04  9:51   ` Marcel Apfelbaum
  0 siblings, 0 replies; 32+ messages in thread
From: Marcel Apfelbaum @ 2017-09-04  9:51 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé, Michael S . Tsirkin; +Cc: qemu-devel, qemu-trivial

On 31/08/2017 0:55, Philippe Mathieu-Daudé wrote:
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> ---
>   MAINTAINERS | 2 ++
>   1 file changed, 2 insertions(+)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index dd5e2c2b6b..bbe1191883 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -928,6 +928,8 @@ F: include/hw/pci/*
>   F: hw/misc/pci-testdev.c
>   F: hw/pci/*
>   F: hw/pci-bridge/*
> +F: docs/pci*
> +F: docs/specs/*pci*
>   
>   ACPI/SMBIOS
>   M: Michael S. Tsirkin <mst@redhat.com>
> 

  Reviewed-by: Marcel Apfelbaum <marcel@redhat.com>

Thanks,
Marcel

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

* Re: [Qemu-devel] [PATCH v2 00/17] add missing entries in MAINTAINERS
  2017-08-30 21:55 [Qemu-devel] [PATCH v2 00/17] add missing entries in MAINTAINERS Philippe Mathieu-Daudé
                   ` (17 preceding siblings ...)
  2017-08-31  3:55 ` [Qemu-devel] [PATCH v2 00/17] add missing entries in MAINTAINERS Philippe Mathieu-Daudé
@ 2017-09-08 12:51 ` Michael S. Tsirkin
  18 siblings, 0 replies; 32+ messages in thread
From: Michael S. Tsirkin @ 2017-09-08 12:51 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé; +Cc: qemu-trivial, qemu-devel

On Wed, Aug 30, 2017 at 06:55:06PM -0300, Philippe Mathieu-Daudé wrote:
> Hi,
> 
> I tried to have a more helpful ./scripts/get_maintainer.pl output, filling
> missing entries in MAINTAINERS.

For myself

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

pls merge through trivial or something like this.

> Regards,
> 
> Phil.
> 
> v2:
> - add R-b & A-b
> - clean ARM entries (Thomas Huth)
> - moved files: comment since which commit (Eric Blake)
> - drop inconsistent patches (default-configs.mak related to hw/machine, no CPU)
> - drop unhappy patches (include/standard-headers/linux/*)
> - drop unreplied patches
> 
> Philippe Mathieu-Daudé (17):
>   MAINTAINERS: add missing ARM entries
>   MAINTAINERS: add missing Versatile PB entry
>   MAINTAINERS: add missing STM32 entry
>   MAINTAINERS: add missing entry for vhost
>   MAINTAINERS: add missing VMWare entry
>   MAINTAINERS: add missing Guest Agent entries
>   MAINTAINERS: add missing qcow2 entry
>   MAINTAINERS: add missing USB entry
>   MAINTAINERS: add missing PCI entries
>   MAINTAINERS: add missing SSI entries
>   MAINTAINERS: add missing entries for throttling infra
>   MAINTAINERS: add missing megasas test entry
>   MAINTAINERS: add missing AIO entry
>   MAINTAINERS: add missing entry for Generic Loader
>   MAINTAINERS: add missing Cryptography entry
>   MAINTAINERS: update docs/devel/ entries
>   MAINTAINERS: update docs/interop/ entries
> 
>  MAINTAINERS | 44 ++++++++++++++++++++++++++++++++++----------
>  1 file changed, 34 insertions(+), 10 deletions(-)
> 
> -- 
> 2.14.1
> 

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

* Re: [Qemu-devel] [PATCH v2 06/17] MAINTAINERS: add missing Guest Agent entries
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 06/17] MAINTAINERS: add missing Guest Agent entries Philippe Mathieu-Daudé
@ 2017-09-08 13:04   ` Philippe Mathieu-Daudé
  2017-09-08 16:36     ` Michael Roth
  0 siblings, 1 reply; 32+ messages in thread
From: Philippe Mathieu-Daudé @ 2017-09-08 13:04 UTC (permalink / raw)
  To: Michael Roth, Tomáš Golembiovský,
	Eric Blake, Tomoki Sekiyama
  Cc: qemu-devel

ping?

Michael, you told me this looks OK on IRC, can I respin with your Acked-by?

On 08/30/2017 06:55 PM, Philippe Mathieu-Daudé wrote:
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> ---
>   MAINTAINERS | 4 ++++
>   1 file changed, 4 insertions(+)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index aa185c1edd..f4e07173c8 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -1434,6 +1434,10 @@ QEMU Guest Agent
>   M: Michael Roth <mdroth@linux.vnet.ibm.com>
>   S: Maintained
>   F: qga/
> +F: qemu-ga.texi
> +F: scripts/qemu-guest-agent/

I'm not sure you want to maintain this one...

> +F: tests/test-qga.c
> +F: docs/interop/qemu-ga-ref.texi
>   T: git git://github.com/mdroth/qemu.git qga
>   
>   QOM
> 

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

* Re: [Qemu-devel] [PATCH v2 12/17] MAINTAINERS: add missing megasas test entry
  2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 12/17] MAINTAINERS: add missing megasas test entry Philippe Mathieu-Daudé
@ 2017-09-08 13:04   ` Philippe Mathieu-Daudé
  2017-09-08 17:12     ` Philippe Mathieu-Daudé
  0 siblings, 1 reply; 32+ messages in thread
From: Philippe Mathieu-Daudé @ 2017-09-08 13:04 UTC (permalink / raw)
  To: Hannes Reinecke, Paolo Bonzini; +Cc: qemu-devel, qemu-block

ping?

On 08/30/2017 06:55 PM, Philippe Mathieu-Daudé wrote:
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> ---
>   MAINTAINERS | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index fa74b7254b..20d65dca73 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -1118,6 +1118,7 @@ L: qemu-block@nongnu.org
>   S: Supported
>   F: hw/scsi/megasas.c
>   F: hw/scsi/mfi.h
> +F: tests/megasas-test.c
>   
>   Network packet abstractions
>   M: Dmitry Fleytman <dmitry@daynix.com>
> 

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

* Re: [Qemu-devel] [PATCH v2 06/17] MAINTAINERS: add missing Guest Agent entries
  2017-09-08 13:04   ` Philippe Mathieu-Daudé
@ 2017-09-08 16:36     ` Michael Roth
  0 siblings, 0 replies; 32+ messages in thread
From: Michael Roth @ 2017-09-08 16:36 UTC (permalink / raw)
  To: Tomáš Golembiovský, Philippe Mathieu-Daudé,
	Eric Blake, Tomoki Sekiyama
  Cc: qemu-devel

Quoting Philippe Mathieu-Daudé (2017-09-08 08:04:45)
> ping?
> 
> Michael, you told me this looks OK on IRC, can I respin with your Acked-by?

Sure:

Acked-by: Michael Roth <mdroth@linux.vnet.ibm.com>

> 
> On 08/30/2017 06:55 PM, Philippe Mathieu-Daudé wrote:
> > Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> > ---
> >   MAINTAINERS | 4 ++++
> >   1 file changed, 4 insertions(+)
> > 
> > diff --git a/MAINTAINERS b/MAINTAINERS
> > index aa185c1edd..f4e07173c8 100644
> > --- a/MAINTAINERS
> > +++ b/MAINTAINERS
> > @@ -1434,6 +1434,10 @@ QEMU Guest Agent
> >   M: Michael Roth <mdroth@linux.vnet.ibm.com>
> >   S: Maintained
> >   F: qga/
> > +F: qemu-ga.texi
> > +F: scripts/qemu-guest-agent/
> 
> I'm not sure you want to maintain this one...

That's fine for now. Thanks!

> 
> > +F: tests/test-qga.c
> > +F: docs/interop/qemu-ga-ref.texi
> >   T: git git://github.com/mdroth/qemu.git qga
> >   
> >   QOM
> > 
> 

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

* Re: [Qemu-devel] [PATCH v2 12/17] MAINTAINERS: add missing megasas test entry
  2017-09-08 13:04   ` Philippe Mathieu-Daudé
@ 2017-09-08 17:12     ` Philippe Mathieu-Daudé
  2017-09-08 17:29       ` Philippe Mathieu-Daudé
  0 siblings, 1 reply; 32+ messages in thread
From: Philippe Mathieu-Daudé @ 2017-09-08 17:12 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: qemu-devel, qemu-block

I wonder if "megasas" is still maintained, I got:

To: Hannes Reinecke <hare@suse.de>
Final-Recipient: rfc822; hare@suse.de
Action: failed
Status: 5.1.1
Remote-MTA: dns; mx2.suse.de. (195.135.220.15, the server for the domain 
suse.de.)
Diagnostic-Code: smtp; 550 5.1.1 <hare@suse.de>: Recipient address 
rejected: User unknown in local recipient table
Last-Attempt-Date: Fri, 08 Sep 2017 06:04:54 -0700 (PDT)

For now I'll just drop this patch.

On 09/08/2017 10:04 AM, Philippe Mathieu-Daudé wrote:
> ping?
> 
> On 08/30/2017 06:55 PM, Philippe Mathieu-Daudé wrote:
>> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
>> ---
>>   MAINTAINERS | 1 +
>>   1 file changed, 1 insertion(+)
>>
>> diff --git a/MAINTAINERS b/MAINTAINERS
>> index fa74b7254b..20d65dca73 100644
>> --- a/MAINTAINERS
>> +++ b/MAINTAINERS
>> @@ -1118,6 +1118,7 @@ L: qemu-block@nongnu.org
>>   S: Supported
>>   F: hw/scsi/megasas.c
>>   F: hw/scsi/mfi.h
>> +F: tests/megasas-test.c
>>   Network packet abstractions
>>   M: Dmitry Fleytman <dmitry@daynix.com>
>>

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

* Re: [Qemu-devel] [PATCH v2 12/17] MAINTAINERS: add missing megasas test entry
  2017-09-08 17:12     ` Philippe Mathieu-Daudé
@ 2017-09-08 17:29       ` Philippe Mathieu-Daudé
  0 siblings, 0 replies; 32+ messages in thread
From: Philippe Mathieu-Daudé @ 2017-09-08 17:29 UTC (permalink / raw)
  To: Paolo Bonzini, Hannes Reinecke; +Cc: qemu-devel, qemu-block

Let's try another SUSE domain

On 09/08/2017 02:12 PM, Philippe Mathieu-Daudé wrote:
> I wonder if "megasas" is still maintained, I got:
> 
> To: Hannes Reinecke <hare@suse.de>
> Final-Recipient: rfc822; hare@suse.de
> Action: failed
> Status: 5.1.1
> Remote-MTA: dns; mx2.suse.de. (195.135.220.15, the server for the domain 
> suse.de.)
> Diagnostic-Code: smtp; 550 5.1.1 <hare@suse.de>: Recipient address 
> rejected: User unknown in local recipient table
> Last-Attempt-Date: Fri, 08 Sep 2017 06:04:54 -0700 (PDT)
> 
> For now I'll just drop this patch.
> 
> On 09/08/2017 10:04 AM, Philippe Mathieu-Daudé wrote:
>> ping?
>>
>> On 08/30/2017 06:55 PM, Philippe Mathieu-Daudé wrote:
>>> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
>>> ---
>>>   MAINTAINERS | 1 +
>>>   1 file changed, 1 insertion(+)
>>>
>>> diff --git a/MAINTAINERS b/MAINTAINERS
>>> index fa74b7254b..20d65dca73 100644
>>> --- a/MAINTAINERS
>>> +++ b/MAINTAINERS
>>> @@ -1118,6 +1118,7 @@ L: qemu-block@nongnu.org
>>>   S: Supported
>>>   F: hw/scsi/megasas.c
>>>   F: hw/scsi/mfi.h
>>> +F: tests/megasas-test.c
>>>   Network packet abstractions
>>>   M: Dmitry Fleytman <dmitry@daynix.com>
>>>

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

end of thread, other threads:[~2017-09-08 17:30 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-30 21:55 [Qemu-devel] [PATCH v2 00/17] add missing entries in MAINTAINERS Philippe Mathieu-Daudé
2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 01/17] MAINTAINERS: add missing ARM entries Philippe Mathieu-Daudé
2017-08-31  5:07   ` Thomas Huth
2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 02/17] MAINTAINERS: add missing Versatile PB entry Philippe Mathieu-Daudé
2017-08-31  5:22   ` Thomas Huth
2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 03/17] MAINTAINERS: add missing STM32 entry Philippe Mathieu-Daudé
2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 04/17] MAINTAINERS: add missing entry for vhost Philippe Mathieu-Daudé
2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 05/17] MAINTAINERS: add missing VMWare entry Philippe Mathieu-Daudé
2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 06/17] MAINTAINERS: add missing Guest Agent entries Philippe Mathieu-Daudé
2017-09-08 13:04   ` Philippe Mathieu-Daudé
2017-09-08 16:36     ` Michael Roth
2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 07/17] MAINTAINERS: add missing qcow2 entry Philippe Mathieu-Daudé
2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 08/17] MAINTAINERS: add missing USB entry Philippe Mathieu-Daudé
2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 09/17] MAINTAINERS: add missing PCI entries Philippe Mathieu-Daudé
2017-09-04  9:51   ` Marcel Apfelbaum
2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 10/17] MAINTAINERS: add missing SSI entries Philippe Mathieu-Daudé
2017-08-30 23:13   ` Alistair Francis
2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 11/17] MAINTAINERS: add missing entries for throttling infra Philippe Mathieu-Daudé
2017-08-31  7:45   ` Alberto Garcia
2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 12/17] MAINTAINERS: add missing megasas test entry Philippe Mathieu-Daudé
2017-09-08 13:04   ` Philippe Mathieu-Daudé
2017-09-08 17:12     ` Philippe Mathieu-Daudé
2017-09-08 17:29       ` Philippe Mathieu-Daudé
2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 13/17] MAINTAINERS: add missing AIO entry Philippe Mathieu-Daudé
2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 14/17] MAINTAINERS: add missing entry for Generic Loader Philippe Mathieu-Daudé
2017-08-30 23:13   ` Alistair Francis
2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 15/17] MAINTAINERS: add missing Cryptography entry Philippe Mathieu-Daudé
2017-08-31  9:19   ` Daniel P. Berrange
2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 16/17] MAINTAINERS: update docs/devel/ entries Philippe Mathieu-Daudé
2017-08-30 21:55 ` [Qemu-devel] [PATCH v2 17/17] MAINTAINERS: update docs/interop/ entries Philippe Mathieu-Daudé
2017-08-31  3:55 ` [Qemu-devel] [PATCH v2 00/17] add missing entries in MAINTAINERS Philippe Mathieu-Daudé
2017-09-08 12:51 ` Michael S. Tsirkin

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.