All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] MAINTAINERS: Fix up F: entry bit rot
@ 2016-09-05 12:28 Markus Armbruster
  2016-09-05 12:55 ` Thomas Huth
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Markus Armbruster @ 2016-09-05 12:28 UTC (permalink / raw)
  To: qemu-devel; +Cc: thuth, stefanha, qemu-trivial

include/hw/xilinx.h is gone since commit d5001cf, drop.

include/hw/*/xlnx*.c is a typo, change .c to .h.

include/hw/acpi/piix.h is a typo, change piix.h to piix4.h.

hw/i386/*dsl and scripts/acpi*py are gone since since commit 9fc6502,
drop.

hw/virtio/dataplane/* are gone since commit fee089e, drop.

ICC Bus is gone since commit dfeb867, drop.

block/raw-aio.h was moved to include/block/raw-aio.h in commit
0187f5c, update.

Tracked down with

    for i in `grep "^[FX]: " MAINTAINERS | sed "s/^.: //"`
    do if [ ! -e "$i" ]; then echo "$i"; fi
    done

Reported-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
Note: this supersedes Thomas's "[PATCH] virtio-blk: Remove
hw/virtio/dataplane folder from MAINTAINERS file".

 MAINTAINERS | 16 +++-------------
 1 file changed, 3 insertions(+), 13 deletions(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index b6fb84e..66aa69d 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -456,7 +456,6 @@ S: Maintained
 F: hw/*/xilinx_*
 F: hw/*/cadence_*
 F: hw/misc/zynq_slcr.c
-F: include/hw/xilinx.h
 X: hw/ssi/xilinx_*
 
 Xilinx ZynqMP
@@ -465,7 +464,7 @@ M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
 L: qemu-arm@nongnu.org
 S: Maintained
 F: hw/*/xlnx*.c
-F: include/hw/*/xlnx*.c
+F: include/hw/*/xlnx*.h
 
 ARM ACPI Subsystem
 M: Shannon Zhao <zhaoshenglong@huawei.com>
@@ -695,7 +694,7 @@ F: hw/i2c/smbus_ich9.c
 F: hw/acpi/piix4.c
 F: hw/acpi/ich9.c
 F: include/hw/acpi/ich9.h
-F: include/hw/acpi/piix.h
+F: include/hw/acpi/piix4.h
 F: hw/misc/sga.c
 
 PC Chipset
@@ -797,10 +796,8 @@ F: hw/mem/*
 F: hw/acpi/*
 F: hw/smbios/*
 F: hw/i386/acpi-build.[hc]
-F: hw/i386/*dsl
 F: hw/arm/virt-acpi-build.c
 F: include/hw/arm/virt-acpi-build.h
-F: scripts/acpi*py
 
 ppc4xx
 M: Alexander Graf <agraf@suse.de>
@@ -902,7 +899,6 @@ L: qemu-block@nongnu.org
 S: Supported
 F: hw/block/virtio-blk.c
 F: hw/block/dataplane/*
-F: hw/virtio/dataplane/*
 T: git git://github.com/stefanha/qemu.git block
 
 virtio-ccw
@@ -1064,12 +1060,6 @@ S: Supported
 F: qom/cpu.c
 F: include/qom/cpu.h
 
-ICC Bus
-M: Igor Mammedov <imammedo@redhat.com>
-S: Supported
-F: include/hw/cpu/icc_bus.h
-F: hw/cpu/icc_bus.c
-
 Device Tree
 M: Peter Crosthwaite <crosthwaite.peter@gmail.com>
 M: Alexander Graf <agraf@suse.de>
@@ -1580,7 +1570,7 @@ M: Kevin Wolf <kwolf@redhat.com>
 L: qemu-block@nongnu.org
 S: Supported
 F: block/linux-aio.c
-F: block/raw-aio.h
+F: include/block/raw-aio.h
 F: block/raw-posix.c
 F: block/raw-win32.c
 F: block/raw_bsd.c
-- 
2.5.5

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

* Re: [Qemu-devel] [PATCH] MAINTAINERS: Fix up F: entry bit rot
  2016-09-05 12:28 [Qemu-devel] [PATCH] MAINTAINERS: Fix up F: entry bit rot Markus Armbruster
@ 2016-09-05 12:55 ` Thomas Huth
  2016-09-05 14:50 ` Stefan Hajnoczi
  2016-09-14  5:38 ` Michael Tokarev
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas Huth @ 2016-09-05 12:55 UTC (permalink / raw)
  To: Markus Armbruster, qemu-devel; +Cc: stefanha, qemu-trivial

On 05.09.2016 14:28, Markus Armbruster wrote:
> include/hw/xilinx.h is gone since commit d5001cf, drop.
> 
> include/hw/*/xlnx*.c is a typo, change .c to .h.
> 
> include/hw/acpi/piix.h is a typo, change piix.h to piix4.h.
> 
> hw/i386/*dsl and scripts/acpi*py are gone since since commit 9fc6502,
> drop.
> 
> hw/virtio/dataplane/* are gone since commit fee089e, drop.
> 
> ICC Bus is gone since commit dfeb867, drop.
> 
> block/raw-aio.h was moved to include/block/raw-aio.h in commit
> 0187f5c, update.
> 
> Tracked down with
> 
>     for i in `grep "^[FX]: " MAINTAINERS | sed "s/^.: //"`
>     do if [ ! -e "$i" ]; then echo "$i"; fi
>     done
> 
> Reported-by: Thomas Huth <thuth@redhat.com>
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
> ---
> Note: this supersedes Thomas's "[PATCH] virtio-blk: Remove
> hw/virtio/dataplane folder from MAINTAINERS file".
> 
>  MAINTAINERS | 16 +++-------------
>  1 file changed, 3 insertions(+), 13 deletions(-)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index b6fb84e..66aa69d 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -456,7 +456,6 @@ S: Maintained
>  F: hw/*/xilinx_*
>  F: hw/*/cadence_*
>  F: hw/misc/zynq_slcr.c
> -F: include/hw/xilinx.h
>  X: hw/ssi/xilinx_*
>  
>  Xilinx ZynqMP
> @@ -465,7 +464,7 @@ M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
>  L: qemu-arm@nongnu.org
>  S: Maintained
>  F: hw/*/xlnx*.c
> -F: include/hw/*/xlnx*.c
> +F: include/hw/*/xlnx*.h
>  
>  ARM ACPI Subsystem
>  M: Shannon Zhao <zhaoshenglong@huawei.com>
> @@ -695,7 +694,7 @@ F: hw/i2c/smbus_ich9.c
>  F: hw/acpi/piix4.c
>  F: hw/acpi/ich9.c
>  F: include/hw/acpi/ich9.h
> -F: include/hw/acpi/piix.h
> +F: include/hw/acpi/piix4.h
>  F: hw/misc/sga.c
>  
>  PC Chipset
> @@ -797,10 +796,8 @@ F: hw/mem/*
>  F: hw/acpi/*
>  F: hw/smbios/*
>  F: hw/i386/acpi-build.[hc]
> -F: hw/i386/*dsl
>  F: hw/arm/virt-acpi-build.c
>  F: include/hw/arm/virt-acpi-build.h
> -F: scripts/acpi*py
>  
>  ppc4xx
>  M: Alexander Graf <agraf@suse.de>
> @@ -902,7 +899,6 @@ L: qemu-block@nongnu.org
>  S: Supported
>  F: hw/block/virtio-blk.c
>  F: hw/block/dataplane/*
> -F: hw/virtio/dataplane/*
>  T: git git://github.com/stefanha/qemu.git block
>  
>  virtio-ccw
> @@ -1064,12 +1060,6 @@ S: Supported
>  F: qom/cpu.c
>  F: include/qom/cpu.h
>  
> -ICC Bus
> -M: Igor Mammedov <imammedo@redhat.com>
> -S: Supported
> -F: include/hw/cpu/icc_bus.h
> -F: hw/cpu/icc_bus.c
> -
>  Device Tree
>  M: Peter Crosthwaite <crosthwaite.peter@gmail.com>
>  M: Alexander Graf <agraf@suse.de>
> @@ -1580,7 +1570,7 @@ M: Kevin Wolf <kwolf@redhat.com>
>  L: qemu-block@nongnu.org
>  S: Supported
>  F: block/linux-aio.c
> -F: block/raw-aio.h
> +F: include/block/raw-aio.h
>  F: block/raw-posix.c
>  F: block/raw-win32.c
>  F: block/raw_bsd.c
> 

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

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

* Re: [Qemu-devel] [PATCH] MAINTAINERS: Fix up F: entry bit rot
  2016-09-05 12:28 [Qemu-devel] [PATCH] MAINTAINERS: Fix up F: entry bit rot Markus Armbruster
  2016-09-05 12:55 ` Thomas Huth
@ 2016-09-05 14:50 ` Stefan Hajnoczi
  2016-09-14  5:38 ` Michael Tokarev
  2 siblings, 0 replies; 4+ messages in thread
From: Stefan Hajnoczi @ 2016-09-05 14:50 UTC (permalink / raw)
  To: Markus Armbruster; +Cc: qemu-devel, thuth, qemu-trivial

[-- Attachment #1: Type: text/plain, Size: 1069 bytes --]

On Mon, Sep 05, 2016 at 02:28:52PM +0200, Markus Armbruster wrote:
> include/hw/xilinx.h is gone since commit d5001cf, drop.
> 
> include/hw/*/xlnx*.c is a typo, change .c to .h.
> 
> include/hw/acpi/piix.h is a typo, change piix.h to piix4.h.
> 
> hw/i386/*dsl and scripts/acpi*py are gone since since commit 9fc6502,
> drop.
> 
> hw/virtio/dataplane/* are gone since commit fee089e, drop.
> 
> ICC Bus is gone since commit dfeb867, drop.
> 
> block/raw-aio.h was moved to include/block/raw-aio.h in commit
> 0187f5c, update.
> 
> Tracked down with
> 
>     for i in `grep "^[FX]: " MAINTAINERS | sed "s/^.: //"`
>     do if [ ! -e "$i" ]; then echo "$i"; fi
>     done
> 
> Reported-by: Thomas Huth <thuth@redhat.com>
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
> ---
> Note: this supersedes Thomas's "[PATCH] virtio-blk: Remove
> hw/virtio/dataplane folder from MAINTAINERS file".
> 
>  MAINTAINERS | 16 +++-------------
>  1 file changed, 3 insertions(+), 13 deletions(-)

Acked-by: Stefan Hajnoczi <stefanha@redhat.com>

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]

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

* Re: [Qemu-devel] [PATCH] MAINTAINERS: Fix up F: entry bit rot
  2016-09-05 12:28 [Qemu-devel] [PATCH] MAINTAINERS: Fix up F: entry bit rot Markus Armbruster
  2016-09-05 12:55 ` Thomas Huth
  2016-09-05 14:50 ` Stefan Hajnoczi
@ 2016-09-14  5:38 ` Michael Tokarev
  2 siblings, 0 replies; 4+ messages in thread
From: Michael Tokarev @ 2016-09-14  5:38 UTC (permalink / raw)
  To: Markus Armbruster, qemu-devel; +Cc: qemu-trivial, thuth, stefanha

Applied to -trivial, thanks!

/mjt

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

end of thread, other threads:[~2016-09-14  5:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-05 12:28 [Qemu-devel] [PATCH] MAINTAINERS: Fix up F: entry bit rot Markus Armbruster
2016-09-05 12:55 ` Thomas Huth
2016-09-05 14:50 ` Stefan Hajnoczi
2016-09-14  5:38 ` Michael Tokarev

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.