qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 0/3] MAINTAINERS docs: flatten docs/qmp/, specify include and test files
@ 2015-09-24 16:11 Markus Armbruster
  2015-09-24 16:11 ` [Qemu-devel] [PATCH 1/3] docs: Move files from docs/qmp/ to docs/ Markus Armbruster
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Markus Armbruster @ 2015-09-24 16:11 UTC (permalink / raw)
  To: qemu-devel; +Cc: mdroth, lcapitulino

Markus Armbruster (3):
  docs: Move files from docs/qmp/ to docs/
  MAINTAINERS: Specify QObject include and test files
  MAINTAINERS: Specify QAPI include and test files

 MAINTAINERS                        | 15 ++++++++++++++-
 docs/{qmp => }/qmp-events.txt      |  0
 docs/{qmp/README => qmp-intro.txt} |  0
 docs/{qmp => }/qmp-spec.txt        |  0
 4 files changed, 14 insertions(+), 1 deletion(-)
 rename docs/{qmp => }/qmp-events.txt (100%)
 rename docs/{qmp/README => qmp-intro.txt} (100%)
 rename docs/{qmp => }/qmp-spec.txt (100%)

-- 
2.4.3

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

* [Qemu-devel] [PATCH 1/3] docs: Move files from docs/qmp/ to docs/
  2015-09-24 16:11 [Qemu-devel] [PATCH 0/3] MAINTAINERS docs: flatten docs/qmp/, specify include and test files Markus Armbruster
@ 2015-09-24 16:11 ` Markus Armbruster
  2015-09-24 16:11 ` [Qemu-devel] [PATCH 2/3] MAINTAINERS: Specify QObject include and test files Markus Armbruster
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Markus Armbruster @ 2015-09-24 16:11 UTC (permalink / raw)
  To: qemu-devel; +Cc: mdroth, lcapitulino

Giving QMP its own subdirectory in docs/ is hardly worthwhile when we
have just four files, and one of them isn't even in the subdirectory.
Move the files from docs/qmp/ to docs/, renaming docs/qmp/README to
docs/qmp-intro.

Update MAINTAINERS.  The new pattern also captures the fourth file
docs/writing-qmp-commands.txt.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
 MAINTAINERS                        | 2 +-
 docs/{qmp => }/qmp-events.txt      | 0
 docs/{qmp/README => qmp-intro.txt} | 0
 docs/{qmp => }/qmp-spec.txt        | 0
 4 files changed, 1 insertion(+), 1 deletion(-)
 rename docs/{qmp => }/qmp-events.txt (100%)
 rename docs/{qmp/README => qmp-intro.txt} (100%)
 rename docs/{qmp => }/qmp-spec.txt (100%)

diff --git a/MAINTAINERS b/MAINTAINERS
index 71c652b..385febe 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1040,7 +1040,7 @@ S: Supported
 F: qmp.c
 F: monitor.c
 F: qmp-commands.hx
-F: docs/qmp/
+F: docs/*qmp-*
 F: scripts/qmp/
 T: git git://repo.or.cz/qemu/armbru.git qapi-next
 
diff --git a/docs/qmp/qmp-events.txt b/docs/qmp-events.txt
similarity index 100%
rename from docs/qmp/qmp-events.txt
rename to docs/qmp-events.txt
diff --git a/docs/qmp/README b/docs/qmp-intro.txt
similarity index 100%
rename from docs/qmp/README
rename to docs/qmp-intro.txt
diff --git a/docs/qmp/qmp-spec.txt b/docs/qmp-spec.txt
similarity index 100%
rename from docs/qmp/qmp-spec.txt
rename to docs/qmp-spec.txt
-- 
2.4.3

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

* [Qemu-devel] [PATCH 2/3] MAINTAINERS: Specify QObject include and test files
  2015-09-24 16:11 [Qemu-devel] [PATCH 0/3] MAINTAINERS docs: flatten docs/qmp/, specify include and test files Markus Armbruster
  2015-09-24 16:11 ` [Qemu-devel] [PATCH 1/3] docs: Move files from docs/qmp/ to docs/ Markus Armbruster
@ 2015-09-24 16:11 ` Markus Armbruster
  2015-09-24 16:11 ` [Qemu-devel] [PATCH 3/3] MAINTAINERS: Specify QAPI " Markus Armbruster
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Markus Armbruster @ 2015-09-24 16:11 UTC (permalink / raw)
  To: qemu-devel; +Cc: mdroth, lcapitulino

Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
 MAINTAINERS | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 385febe..68db1b8 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1016,6 +1016,14 @@ QObject
 M: Luiz Capitulino <lcapitulino@redhat.com>
 S: Maintained
 F: qobject/
+F: include/qapi/qmp/
+X: include/qapi/qmp/dispatch.h
+F: tests/check-qdict.c
+F: tests/check-qfloat.c
+F: tests/check-qint.c
+F: tests/check-qjson.c
+F: tests/check-qlist.c
+F: tests/check-qstring.c
 T: git git://repo.or.cz/qemu/qmp-unstable.git queue/qmp
 
 QEMU Guest Agent
-- 
2.4.3

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

* [Qemu-devel] [PATCH 3/3] MAINTAINERS: Specify QAPI include and test files
  2015-09-24 16:11 [Qemu-devel] [PATCH 0/3] MAINTAINERS docs: flatten docs/qmp/, specify include and test files Markus Armbruster
  2015-09-24 16:11 ` [Qemu-devel] [PATCH 1/3] docs: Move files from docs/qmp/ to docs/ Markus Armbruster
  2015-09-24 16:11 ` [Qemu-devel] [PATCH 2/3] MAINTAINERS: Specify QObject include and test files Markus Armbruster
@ 2015-09-24 16:11 ` Markus Armbruster
  2015-09-24 16:24 ` [Qemu-devel] [PATCH 0/3] MAINTAINERS docs: flatten docs/qmp/, specify " Eric Blake
  2015-09-24 17:18 ` Luiz Capitulino
  4 siblings, 0 replies; 6+ messages in thread
From: Markus Armbruster @ 2015-09-24 16:11 UTC (permalink / raw)
  To: qemu-devel; +Cc: mdroth, lcapitulino

Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
 MAINTAINERS | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 68db1b8..1ae207c 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -999,7 +999,12 @@ M: Michael Roth <mdroth@linux.vnet.ibm.com>
 S: Supported
 F: qapi/
 X: qapi/*.json
+F: include/qapi/
+X: include/qapi/qmp/
+F: include/qapi/qmp/dispatch.h
 F: tests/qapi-schema/
+F: tests/test-*-visitor.c
+F: tests/test-qmp-*.c
 F: scripts/qapi*
 F: docs/qapi*
 T: git git://repo.or.cz/qemu/armbru.git qapi-next
-- 
2.4.3

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

* Re: [Qemu-devel] [PATCH 0/3] MAINTAINERS docs: flatten docs/qmp/, specify include and test files
  2015-09-24 16:11 [Qemu-devel] [PATCH 0/3] MAINTAINERS docs: flatten docs/qmp/, specify include and test files Markus Armbruster
                   ` (2 preceding siblings ...)
  2015-09-24 16:11 ` [Qemu-devel] [PATCH 3/3] MAINTAINERS: Specify QAPI " Markus Armbruster
@ 2015-09-24 16:24 ` Eric Blake
  2015-09-24 17:18 ` Luiz Capitulino
  4 siblings, 0 replies; 6+ messages in thread
From: Eric Blake @ 2015-09-24 16:24 UTC (permalink / raw)
  To: Markus Armbruster, qemu-devel; +Cc: mdroth, lcapitulino

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

On 09/24/2015 10:11 AM, Markus Armbruster wrote:
> Markus Armbruster (3):
>   docs: Move files from docs/qmp/ to docs/
>   MAINTAINERS: Specify QObject include and test files
>   MAINTAINERS: Specify QAPI include and test files

Reviewed-by: Eric Blake <eblake@redhat.com>

> 
>  MAINTAINERS                        | 15 ++++++++++++++-
>  docs/{qmp => }/qmp-events.txt      |  0
>  docs/{qmp/README => qmp-intro.txt} |  0
>  docs/{qmp => }/qmp-spec.txt        |  0
>  4 files changed, 14 insertions(+), 1 deletion(-)
>  rename docs/{qmp => }/qmp-events.txt (100%)
>  rename docs/{qmp/README => qmp-intro.txt} (100%)
>  rename docs/{qmp => }/qmp-spec.txt (100%)
> 

-- 
Eric Blake   eblake redhat com    +1-919-301-3266
Libvirt virtualization library http://libvirt.org


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 604 bytes --]

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

* Re: [Qemu-devel] [PATCH 0/3] MAINTAINERS docs: flatten docs/qmp/, specify include and test files
  2015-09-24 16:11 [Qemu-devel] [PATCH 0/3] MAINTAINERS docs: flatten docs/qmp/, specify include and test files Markus Armbruster
                   ` (3 preceding siblings ...)
  2015-09-24 16:24 ` [Qemu-devel] [PATCH 0/3] MAINTAINERS docs: flatten docs/qmp/, specify " Eric Blake
@ 2015-09-24 17:18 ` Luiz Capitulino
  4 siblings, 0 replies; 6+ messages in thread
From: Luiz Capitulino @ 2015-09-24 17:18 UTC (permalink / raw)
  To: Markus Armbruster; +Cc: qemu-devel, mdroth

On Thu, 24 Sep 2015 18:11:54 +0200
Markus Armbruster <armbru@redhat.com> wrote:

> Markus Armbruster (3):
>   docs: Move files from docs/qmp/ to docs/
>   MAINTAINERS: Specify QObject include and test files
>   MAINTAINERS: Specify QAPI include and test files
> 
>  MAINTAINERS                        | 15 ++++++++++++++-
>  docs/{qmp => }/qmp-events.txt      |  0
>  docs/{qmp/README => qmp-intro.txt} |  0
>  docs/{qmp => }/qmp-spec.txt        |  0
>  4 files changed, 14 insertions(+), 1 deletion(-)
>  rename docs/{qmp => }/qmp-events.txt (100%)
>  rename docs/{qmp/README => qmp-intro.txt} (100%)
>  rename docs/{qmp => }/qmp-spec.txt (100%)
> 

Reviewed-by: Luiz Capitulino <lcapitulino@redhat.com>

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

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

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-24 16:11 [Qemu-devel] [PATCH 0/3] MAINTAINERS docs: flatten docs/qmp/, specify include and test files Markus Armbruster
2015-09-24 16:11 ` [Qemu-devel] [PATCH 1/3] docs: Move files from docs/qmp/ to docs/ Markus Armbruster
2015-09-24 16:11 ` [Qemu-devel] [PATCH 2/3] MAINTAINERS: Specify QObject include and test files Markus Armbruster
2015-09-24 16:11 ` [Qemu-devel] [PATCH 3/3] MAINTAINERS: Specify QAPI " Markus Armbruster
2015-09-24 16:24 ` [Qemu-devel] [PATCH 0/3] MAINTAINERS docs: flatten docs/qmp/, specify " Eric Blake
2015-09-24 17:18 ` Luiz Capitulino

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).