[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 4/4] hw/s390x: Deprecate the QMP @dump-skeys command
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH 4/4] hw/s390x: Deprecate the QMP @dump-skeys command |
Date: |
Thu, 30 May 2024 09:45:44 +0200 |
Prefer @dump-s390-skeys which is target agnostic.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
docs/about/deprecated.rst | 5 +++++
qapi/misc-target.json | 5 +++++
2 files changed, 10 insertions(+)
diff --git a/docs/about/deprecated.rst b/docs/about/deprecated.rst
index 40585ca7d5..3cb43085ba 100644
--- a/docs/about/deprecated.rst
+++ b/docs/about/deprecated.rst
@@ -148,6 +148,11 @@ accepted incorrect commands will return an error. Users
should make sure that
all arguments passed to ``device_add`` are consistent with the documented
property types.
+``dump-skeys`` (since 9.1)
+''''''''''''''''''''''''''
+
+Use the more generic ``dump-s390-skeys`` command.
+
QEMU Machine Protocol (QMP) events
----------------------------------
diff --git a/qapi/misc-target.json b/qapi/misc-target.json
index 4e0a6492a9..e5109b1265 100644
--- a/qapi/misc-target.json
+++ b/qapi/misc-target.json
@@ -237,6 +237,10 @@
#
# @filename: the path to the file to dump to
#
+# Features:
+#
+# @deprecated: This command is deprecated. Use @dump-s390-skeys instead.
+#
# Since: 2.5
#
# Example:
@@ -247,6 +251,7 @@
##
{ 'command': 'dump-skeys',
'data': { 'filename': 'str' },
+ 'features': ['deprecated'],
'if': 'TARGET_S390X' }
##
--
2.41.0
- [PATCH 0/4] hw/s390x: Alias @dump-skeys -> @dump-s390-skey and deprecate, Philippe Mathieu-Daudé, 2024/05/30
- [PATCH 1/4] hw/s390x: Introduce the @dump-s390-skeys QMP command, Philippe Mathieu-Daudé, 2024/05/30
- [PATCH 2/4] hw/s390x: Introduce the 'dump_s390_skeys' HMP command, Philippe Mathieu-Daudé, 2024/05/30
- [PATCH 3/4] hw/s390x: Deprecate the HMP 'dump_skeys' command, Philippe Mathieu-Daudé, 2024/05/30
- [PATCH 4/4] hw/s390x: Deprecate the QMP @dump-skeys command,
Philippe Mathieu-Daudé <=
- Re: [PATCH 0/4] hw/s390x: Alias @dump-skeys -> @dump-s390-skey and deprecate, Anton Johansson, 2024/05/30
- Re: [PATCH 0/4] hw/s390x: Alias @dump-skeys -> @dump-s390-skey and deprecate, Thomas Huth, 2024/05/31