[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 01/10] qerror: Drop unused QERR_ macros
From: |
Markus Armbruster |
Subject: |
[PATCH 01/10] qerror: Drop unused QERR_ macros |
Date: |
Fri, 13 Nov 2020 09:26:17 +0100 |
QERR_INVALID_BLOCK_FORMAT is dead since commit e6641719fe "block:
Always pass NULL as drv for bdrv_open()", 2015-09-14.
QERR_INVALID_PASSWORD is dead since commit c01c214b69 "block: remove
all encryption handling APIs", 2017-07-11.
Bury them.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
include/qapi/qmp/qerror.h | 6 ------
1 file changed, 6 deletions(-)
diff --git a/include/qapi/qmp/qerror.h b/include/qapi/qmp/qerror.h
index 7c76e24aa7..3eabd451d8 100644
--- a/include/qapi/qmp/qerror.h
+++ b/include/qapi/qmp/qerror.h
@@ -43,9 +43,6 @@
#define QERR_FEATURE_DISABLED \
"The feature '%s' is not enabled"
-#define QERR_INVALID_BLOCK_FORMAT \
- "Invalid block format '%s'"
-
#define QERR_INVALID_PARAMETER \
"Invalid parameter '%s'"
@@ -55,9 +52,6 @@
#define QERR_INVALID_PARAMETER_VALUE \
"Parameter '%s' expects %s"
-#define QERR_INVALID_PASSWORD \
- "Password incorrect"
-
#define QERR_IO_ERROR \
"An IO error has occurred"
--
2.26.2
- [PATCH 00/10] Chipping away at qerror.h, Markus Armbruster, 2020/11/13
- [PATCH 01/10] qerror: Drop unused QERR_ macros,
Markus Armbruster <=
- [PATCH 03/10] block: Improve some block-commit, block-stream error messages, Markus Armbruster, 2020/11/13
- [PATCH 02/10] qerror: Eliminate QERR_ macros used in just one place, Markus Armbruster, 2020/11/13
- [PATCH 09/10] qom: Improve {qom, device}-list-properties error messages, Markus Armbruster, 2020/11/13
- [PATCH 10/10] Tweak a few "Parameter 'NAME' expects THING" error message, Markus Armbruster, 2020/11/13
- [PATCH 08/10] qga: Tweak a guest-shutdown error message, Markus Armbruster, 2020/11/13
- [PATCH 05/10] ui: Improve a client_migrate_info error message, Markus Armbruster, 2020/11/13