[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 3/7] qga: Improve guest-exec-status error message
|
From: |
Markus Armbruster |
|
Subject: |
[PULL 3/7] qga: Improve guest-exec-status error message |
|
Date: |
Fri, 17 Nov 2023 10:53:30 +0100 |
When the PID passed to guest-exec-status does not exist, we report
"Invalid parameter 'pid'"
Improve this to
"PID 1234 does not exist"
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-ID: <20231031111059.3407803-4-armbru@redhat.com>
Reviewed-by: Konstantin Kostiuk <kkostiuk@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
qga/commands.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/qga/commands.c b/qga/commands.c
index ce172edd2d..88c1c99fe5 100644
--- a/qga/commands.c
+++ b/qga/commands.c
@@ -154,7 +154,7 @@ GuestExecStatus *qmp_guest_exec_status(int64_t pid, Error
**errp)
gei = guest_exec_info_find(pid);
if (gei == NULL) {
- error_setg(errp, QERR_INVALID_PARAMETER, "pid");
+ error_setg(errp, "PID " PRId64 " does not exist");
return NULL;
}
--
2.41.0
- [PULL 0/7] Error reporting patches for 2023-11-17, Markus Armbruster, 2023/11/17
- [PULL 6/7] balloon: Fix a misleading error message, Markus Armbruster, 2023/11/17
- [PULL 5/7] net: Fix a misleading error message, Markus Armbruster, 2023/11/17
- [PULL 2/7] hmp: Improve sync-profile error message, Markus Armbruster, 2023/11/17
- [PULL 1/7] spapr/pci: Correct "does not support hotplugging error messages, Markus Armbruster, 2023/11/17
- [PULL 3/7] qga: Improve guest-exec-status error message,
Markus Armbruster <=
- [PULL 4/7] ui/qmp-cmds: Improve two error messages, Markus Armbruster, 2023/11/17
- [PULL 7/7] target/i386/cpu: Improve error message for property "vendor", Markus Armbruster, 2023/11/17
- Re: [PULL 0/7] Error reporting patches for 2023-11-17, Stefan Hajnoczi, 2023/11/20