[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 01/21] dump: Fix HMP dump-guest-memory -z without -R
From: |
Michael Tokarev |
Subject: |
[PULL 01/21] dump: Fix HMP dump-guest-memory -z without -R |
Date: |
Wed, 31 Jan 2024 14:55:29 +0300 |
From: Markus Armbruster <armbru@redhat.com>
-z without -R has no effect: the dump format remains @elf. Fix the
logic error so it becomes @kdump-zlib.
Fixes: e6549197f7ed (dump: Add command interface for kdump-raw formats)
Fixes: CID 1523841
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Stephen Brennan <stephen.s.brennan@oracle.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
---
dump/dump-hmp-cmds.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dump/dump-hmp-cmds.c b/dump/dump-hmp-cmds.c
index b428ec33df..d9340427c3 100644
--- a/dump/dump-hmp-cmds.c
+++ b/dump/dump-hmp-cmds.c
@@ -41,7 +41,7 @@ void hmp_dump_guest_memory(Monitor *mon, const QDict *qdict)
dump_format = DUMP_GUEST_MEMORY_FORMAT_WIN_DMP;
}
- if (zlib && raw) {
+ if (zlib) {
if (raw) {
dump_format = DUMP_GUEST_MEMORY_FORMAT_KDUMP_RAW_ZLIB;
} else {
--
2.39.2
- [PULL 00/21] Trivial patches for 2024-01-31, Michael Tokarev, 2024/01/31
- [PULL 01/21] dump: Fix HMP dump-guest-memory -z without -R,
Michael Tokarev <=
- [PULL 02/21] colo: examples: remove mentions of script= and (wrong) downscript=, Michael Tokarev, 2024/01/31
- [PULL 03/21] qapi/migration.json: Fix the member name for MigrationCapability, Michael Tokarev, 2024/01/31
- [PULL 04/21] qemu-docs: Update options for graphical frontends, Michael Tokarev, 2024/01/31
- [PULL 05/21] mailmap: Fix Stefan Weil email, Michael Tokarev, 2024/01/31
- [PULL 06/21] scripts/clean-includes: Update exclude list, Michael Tokarev, 2024/01/31
- [PULL 08/21] disas/riscv: Clean up includes, Michael Tokarev, 2024/01/31
- [PULL 09/21] aspeed: Clean up includes, Michael Tokarev, 2024/01/31
- [PULL 10/21] acpi: Clean up includes, Michael Tokarev, 2024/01/31
- [PULL 11/21] m68k: Clean up includes, Michael Tokarev, 2024/01/31
- [PULL 07/21] hyperv: Clean up includes, Michael Tokarev, 2024/01/31