qapi: Fix dangling references to docs/devel/qapi-code-gen.txt
authorMarkus Armbruster <armbru@redhat.com>
Sat, 20 Jan 2024 09:53:23 +0000 (10:53 +0100)
committerMarkus Armbruster <armbru@redhat.com>
Fri, 26 Jan 2024 06:04:53 +0000 (07:04 +0100)
Conversion of docs/devel/qapi-code-gen.txt to ReST left several
dangling references behind.  Fix them to point to
docs/devel/qapi-code-gen.rst.

Fixes: f7aa076dbdfc (docs: convert qapi-code-gen.txt to ReST)
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-ID: <20240120095327.666239-4-armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
docs/devel/writing-monitor-commands.rst
include/qapi/visitor.h
include/qemu/yank.h
qapi/introspect.json
qapi/qapi-util.c
scripts/qapi/parser.py
util/yank.c

index 3b3d5517a28ba0652e47a5b2b93d7696fc015d86..b6ee4fa0638940cfa40abafa47eab64eddbe65dc 100644 (file)
@@ -8,7 +8,7 @@ This document doesn't discuss QMP protocol level details, nor does it dive
 into the QAPI framework implementation.
 
 For an in-depth introduction to the QAPI framework, please refer to
-docs/devel/qapi-code-gen.txt.  For the QMP protocol, see the
+:doc:`qapi-code-gen`.  For the QMP protocol, see the
 :doc:`/interop/qmp-spec`.
 
 New commands may be implemented in QMP only.  New HMP commands should be
index d53a84c9ba41d29733b2b73ce7787161b10ff1b0..27b85d4700f242f6b2d897a2dbda2692f12ac642 100644 (file)
@@ -39,7 +39,7 @@
  * limitations; see the documentation for each visitor for more
  * details on what it supports.  Also, see visitor-impl.h for the
  * callback contracts implemented by each visitor, and
- * docs/devel/qapi-code-gen.txt for more about the QAPI code
+ * docs/devel/qapi-code-gen.rst for more about the QAPI code
  * generator.
  *
  * All of the visitors are created via:
index 19071509336bfcc019b139bc0620b0bcc2e24d84..3d88af6996fce06cbe9f5b17448bcfc639947b3a 100644 (file)
@@ -45,7 +45,7 @@ void yank_unregister_instance(const YankInstance *instance);
  * yank_register_function: Register a yank function
  *
  * This registers a yank function. All limitations of qmp oob commands apply
- * to the yank function as well. See docs/devel/qapi-code-gen.txt under
+ * to the yank function as well. See docs/devel/qapi-code-gen.rst under
  * "An OOB-capable command handler must satisfy the following conditions".
  *
  * This function is thread-safe.
index 9173e60fdd0ddbe41f3b07c08e13d260f24e9f21..ebc4e199d27b531546d6ac9129d2c330156d4876 100644 (file)
 # Additional SchemaInfo members for meta-type 'alternate'.
 #
 # @members: the alternate type's members, in no particular order.  The
-#     members' wire encoding is distinct, see
-#     docs/devel/qapi-code-gen.txt section Alternate types.
+#     members' wire encoding is distinct, see :doc:`qapi-code-gen`
+#     section Alternate types.
 #
 # On the wire, this can be any of the members.
 #
index 63596e11c569285cd530ae6e57b61d02bab72157..65a7d184372f205fe1bea85c8996e5a36d04a76b 100644 (file)
@@ -112,7 +112,7 @@ bool qapi_bool_parse(const char *name, const char *value, bool *obj, Error **err
  * It may be prefixed by __RFQDN_ (downstream extension), where RFQDN
  * may contain only letters, digits, hyphen and period.
  * The special exception for enumeration names is not implemented.
- * See docs/devel/qapi-code-gen.txt for more on QAPI naming rules.
+ * See docs/devel/qapi-code-gen.rst for more on QAPI naming rules.
  * Keep this consistent with scripts/qapi-gen.py!
  * If @complete, the parse fails unless it consumes @str completely.
  * Return its length on success, -1 on failure.
index bf31018aef0ac43cf7995cda6362635e8c093c5b..48cd55a38cce6a11ed7d532c2522ed5bf1f295c7 100644 (file)
@@ -71,7 +71,7 @@ class QAPISchemaParser:
     Parse QAPI schema source.
 
     Parse a JSON-esque schema file and process directives.  See
-    qapi-code-gen.txt section "Schema Syntax" for the exact syntax.
+    qapi-code-gen.rst section "Schema Syntax" for the exact syntax.
     Grammatical validation is handled later by `expr.check_exprs()`.
 
     :param fname: Source file name.
index abf47c346d14a1225f93ae5b941db9abf05a9d22..eaac50539c55f46c148e8aa97512b52ca3d123af 100644 (file)
@@ -35,7 +35,7 @@ typedef struct YankInstanceEntry YankInstanceEntry;
 /*
  * This lock protects the yank_instance_list below. Because it's taken by
  * OOB-capable commands, it must be "fast", i.e. it may only be held for a
- * bounded, short time. See docs/devel/qapi-code-gen.txt for additional
+ * bounded, short time. See docs/devel/qapi-code-gen.rst for additional
  * information.
  */
 static QemuMutex yank_lock;