qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] qapi: Doc & MAINTAINERS tweaks
@ 2020-11-02  8:15 Markus Armbruster
  2020-11-02  8:15 ` [PATCH 1/2] MAINTAINERS: Add QAPI schema modules to their subsystems Markus Armbruster
  2020-11-02  8:15 ` [PATCH 2/2] qapi: Fix missing headers in QMP Reference Manual Markus Armbruster
  0 siblings, 2 replies; 7+ messages in thread
From: Markus Armbruster @ 2020-11-02  8:15 UTC (permalink / raw)
  To: qemu-devel

Markus Armbruster (2):
  MAINTAINERS: Add QAPI schema modules to their subsystems
  qapi: Fix missing headers in QMP Reference Manual

 qapi/audio.json | 4 ++++
 qapi/authz.json | 6 ++++--
 MAINTAINERS     | 6 ++++++
 3 files changed, 14 insertions(+), 2 deletions(-)

-- 
2.26.2



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

* [PATCH 1/2] MAINTAINERS: Add QAPI schema modules to their subsystems
  2020-11-02  8:15 [PATCH 0/2] qapi: Doc & MAINTAINERS tweaks Markus Armbruster
@ 2020-11-02  8:15 ` Markus Armbruster
  2020-11-02  9:08   ` Philippe Mathieu-Daudé
                     ` (2 more replies)
  2020-11-02  8:15 ` [PATCH 2/2] qapi: Fix missing headers in QMP Reference Manual Markus Armbruster
  1 sibling, 3 replies; 7+ messages in thread
From: Markus Armbruster @ 2020-11-02  8:15 UTC (permalink / raw)
  To: qemu-devel; +Cc: Daniel P . Berrange, Gerd Hoffmann, Stefan Hajnoczi

Add the relevant QAPI schema modules to section Audio, QMP, Tracing,
Cryptography.

Cc: Gerd Hoffmann <kraxel@redhat.com>
Cc: Stefan Hajnoczi <stefanha@redhat.com>
Cc: Daniel P. Berrange <berrange@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
 MAINTAINERS | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 8c744a9bdf..b4b6b36542 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1907,6 +1907,7 @@ Rocker
 M: Jiri Pirko <jiri@resnulli.us>
 S: Maintained
 F: hw/net/rocker/
+F: qapi/rocker.json
 F: tests/rocker/
 F: docs/specs/rocker.txt
 
@@ -2109,6 +2110,7 @@ S: Maintained
 F: audio/
 F: hw/audio/
 F: include/hw/audio/
+F: qapi/audio.json
 F: tests/qtest/ac97-test.c
 F: tests/qtest/es1370-test.c
 F: tests/qtest/intel-hda-test.c
@@ -2488,7 +2490,9 @@ F: monitor/monitor-internal.h
 F: monitor/qmp*
 F: monitor/misc.c
 F: monitor/monitor.c
+F: qapi/control.json
 F: qapi/error.json
+F: qapi/introspect.json
 F: docs/devel/*qmp-*
 F: docs/interop/*qmp-*
 F: scripts/qmp/
@@ -2549,6 +2553,7 @@ S: Maintained
 F: trace/
 F: trace-events
 F: docs/qemu-option-trace.rst.inc
+F: qapi/trace.json
 F: scripts/tracetool.py
 F: scripts/tracetool/
 F: scripts/qemu-trace-stap*
@@ -2608,6 +2613,7 @@ M: Daniel P. Berrange <berrange@redhat.com>
 S: Maintained
 F: crypto/
 F: include/crypto/
+F: qapi/crypto.json
 F: tests/test-crypto-*
 F: tests/benchmark-crypto-*
 F: tests/crypto-tls-*
-- 
2.26.2



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

* [PATCH 2/2] qapi: Fix missing headers in QMP Reference Manual
  2020-11-02  8:15 [PATCH 0/2] qapi: Doc & MAINTAINERS tweaks Markus Armbruster
  2020-11-02  8:15 ` [PATCH 1/2] MAINTAINERS: Add QAPI schema modules to their subsystems Markus Armbruster
@ 2020-11-02  8:15 ` Markus Armbruster
  2020-11-02 16:51   ` Daniel P. Berrangé
  1 sibling, 1 reply; 7+ messages in thread
From: Markus Armbruster @ 2020-11-02  8:15 UTC (permalink / raw)
  To: qemu-devel; +Cc: Daniel P . Berrange, Gerd Hoffmann

Audio stuff is under "Miscellanea", and authorization stuff is under
"Input".  Add suitable header doc comments to correct that.

Cc: Gerd Hoffmann <kraxel@redhat.com>
Cc: Daniel P. Berrange <berrange@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
 qapi/audio.json | 4 ++++
 qapi/authz.json | 6 ++++--
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/qapi/audio.json b/qapi/audio.json
index 3b843878d2..072ed79def 100644
--- a/qapi/audio.json
+++ b/qapi/audio.json
@@ -5,6 +5,10 @@
 # This work is licensed under the terms of the GNU GPL, version 2 or later.
 # See the COPYING file in the top-level directory.
 
+##
+# = Audio
+##
+
 ##
 # @AudiodevPerDirectionOptions:
 #
diff --git a/qapi/authz.json b/qapi/authz.json
index f3e9745426..42afe752d1 100644
--- a/qapi/authz.json
+++ b/qapi/authz.json
@@ -1,7 +1,9 @@
 # -*- Mode: Python -*-
 # vim: filetype=python
-#
-# QAPI authz definitions
+
+##
+# = User authorization
+##
 
 ##
 # @QAuthZListPolicy:
-- 
2.26.2



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

* Re: [PATCH 1/2] MAINTAINERS: Add QAPI schema modules to their subsystems
  2020-11-02  8:15 ` [PATCH 1/2] MAINTAINERS: Add QAPI schema modules to their subsystems Markus Armbruster
@ 2020-11-02  9:08   ` Philippe Mathieu-Daudé
  2020-11-02 16:38   ` Stefan Hajnoczi
  2020-11-02 16:50   ` Daniel P. Berrangé
  2 siblings, 0 replies; 7+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-11-02  9:08 UTC (permalink / raw)
  To: Markus Armbruster, qemu-devel
  Cc: Daniel P . Berrange, Gerd Hoffmann, Stefan Hajnoczi

On 11/2/20 9:15 AM, Markus Armbruster wrote:
> Add the relevant QAPI schema modules to section Audio, QMP, Tracing,
> Cryptography.
> 
> Cc: Gerd Hoffmann <kraxel@redhat.com>
> Cc: Stefan Hajnoczi <stefanha@redhat.com>
> Cc: Daniel P. Berrange <berrange@redhat.com>
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
> ---
>  MAINTAINERS | 6 ++++++
>  1 file changed, 6 insertions(+)

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>



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

* Re: [PATCH 1/2] MAINTAINERS: Add QAPI schema modules to their subsystems
  2020-11-02  8:15 ` [PATCH 1/2] MAINTAINERS: Add QAPI schema modules to their subsystems Markus Armbruster
  2020-11-02  9:08   ` Philippe Mathieu-Daudé
@ 2020-11-02 16:38   ` Stefan Hajnoczi
  2020-11-02 16:50   ` Daniel P. Berrangé
  2 siblings, 0 replies; 7+ messages in thread
From: Stefan Hajnoczi @ 2020-11-02 16:38 UTC (permalink / raw)
  To: Markus Armbruster; +Cc: Daniel P . Berrange, qemu-devel, Gerd Hoffmann

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

On Mon, Nov 02, 2020 at 09:15:49AM +0100, Markus Armbruster wrote:
> Add the relevant QAPI schema modules to section Audio, QMP, Tracing,
> Cryptography.
> 
> Cc: Gerd Hoffmann <kraxel@redhat.com>
> Cc: Stefan Hajnoczi <stefanha@redhat.com>
> Cc: Daniel P. Berrange <berrange@redhat.com>
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
> ---
>  MAINTAINERS | 6 ++++++
>  1 file changed, 6 insertions(+)

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

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

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

* Re: [PATCH 1/2] MAINTAINERS: Add QAPI schema modules to their subsystems
  2020-11-02  8:15 ` [PATCH 1/2] MAINTAINERS: Add QAPI schema modules to their subsystems Markus Armbruster
  2020-11-02  9:08   ` Philippe Mathieu-Daudé
  2020-11-02 16:38   ` Stefan Hajnoczi
@ 2020-11-02 16:50   ` Daniel P. Berrangé
  2 siblings, 0 replies; 7+ messages in thread
From: Daniel P. Berrangé @ 2020-11-02 16:50 UTC (permalink / raw)
  To: Markus Armbruster; +Cc: qemu-devel, Stefan Hajnoczi, Gerd Hoffmann

On Mon, Nov 02, 2020 at 09:15:49AM +0100, Markus Armbruster wrote:
> Add the relevant QAPI schema modules to section Audio, QMP, Tracing,
> Cryptography.
> 
> Cc: Gerd Hoffmann <kraxel@redhat.com>
> Cc: Stefan Hajnoczi <stefanha@redhat.com>
> Cc: Daniel P. Berrange <berrange@redhat.com>
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
> ---
>  MAINTAINERS | 6 ++++++
>  1 file changed, 6 insertions(+)

Acked-by: Daniel P. Berrangé <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] 7+ messages in thread

* Re: [PATCH 2/2] qapi: Fix missing headers in QMP Reference Manual
  2020-11-02  8:15 ` [PATCH 2/2] qapi: Fix missing headers in QMP Reference Manual Markus Armbruster
@ 2020-11-02 16:51   ` Daniel P. Berrangé
  0 siblings, 0 replies; 7+ messages in thread
From: Daniel P. Berrangé @ 2020-11-02 16:51 UTC (permalink / raw)
  To: Markus Armbruster; +Cc: qemu-devel, Gerd Hoffmann

On Mon, Nov 02, 2020 at 09:15:50AM +0100, Markus Armbruster wrote:
> Audio stuff is under "Miscellanea", and authorization stuff is under
> "Input".  Add suitable header doc comments to correct that.
> 
> Cc: Gerd Hoffmann <kraxel@redhat.com>
> Cc: Daniel P. Berrange <berrange@redhat.com>
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
> ---
>  qapi/audio.json | 4 ++++
>  qapi/authz.json | 6 ++++--
>  2 files changed, 8 insertions(+), 2 deletions(-)

Acked-by: Daniel P. Berrangé <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] 7+ messages in thread

end of thread, other threads:[~2020-11-02 16:53 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-11-02  8:15 [PATCH 0/2] qapi: Doc & MAINTAINERS tweaks Markus Armbruster
2020-11-02  8:15 ` [PATCH 1/2] MAINTAINERS: Add QAPI schema modules to their subsystems Markus Armbruster
2020-11-02  9:08   ` Philippe Mathieu-Daudé
2020-11-02 16:38   ` Stefan Hajnoczi
2020-11-02 16:50   ` Daniel P. Berrangé
2020-11-02  8:15 ` [PATCH 2/2] qapi: Fix missing headers in QMP Reference Manual Markus Armbruster
2020-11-02 16:51   ` Daniel P. Berrangé

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).