a32e67a8e7
- kvm-target-s390x-dump-Remove-unneeded-dump-info-function.patch [RHEL-16696] - kvm-dump-Add-arch-cleanup-function.patch [RHEL-16696] - kvm-target-s390x-arch_dump-Add-arch-cleanup-function-for.patch [RHEL-16696] - Resolves: RHEL-16696 (RHEL8 - KVM : Secure execution guest remains in "paused" state, post "virsh dump" failure (qemu-kvm))
57 lines
2.0 KiB
Diff
57 lines
2.0 KiB
Diff
From f647258696cbdce78316b2d9ae513f9ae6f4a0b5 Mon Sep 17 00:00:00 2001
|
|
From: Thomas Huth <thuth@redhat.com>
|
|
Date: Fri, 17 Nov 2023 11:32:37 +0100
|
|
Subject: [PATCH 1/3] target/s390x/dump: Remove unneeded dump info function
|
|
pointer init
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
RH-Author: Thomas Huth <thuth@redhat.com>
|
|
RH-MergeRequest: 323: Fix problem that secure execution guest might remain in "paused" state after failed dump
|
|
RH-Jira: RHEL-16696
|
|
RH-Acked-by: Marc-André Lureau <marcandre.lureau@redhat.com>
|
|
RH-Acked-by: Cédric Le Goater <clg@redhat.com>
|
|
RH-Commit: [1/3] e3b0697ec76274f778fc523efb72f0cbca25cd77
|
|
|
|
JIRA: https://issues.redhat.com/browse/RHEL-16696
|
|
|
|
commit 816644b1219900875f47d7adf9bfb283f1b29aa0
|
|
Author: Janosch Frank <frankja@linux.ibm.com>
|
|
Date: Thu Nov 9 12:04:41 2023 +0000
|
|
|
|
target/s390x/dump: Remove unneeded dump info function pointer init
|
|
|
|
dump_state_prepare() now sets the function pointers to NULL so we only
|
|
need to touch them if we're going to use them.
|
|
|
|
Signed-off-by: Janosch Frank <frankja@linux.ibm.com>
|
|
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
|
|
Reviewed-by: Thomas Huth <thuth@redhat.com>
|
|
Message-ID: <20231109120443.185979-2-frankja@linux.ibm.com>
|
|
Signed-off-by: Thomas Huth <thuth@redhat.com>
|
|
|
|
Signed-off-by: Thomas Huth <thuth@redhat.com>
|
|
---
|
|
target/s390x/arch_dump.c | 4 ----
|
|
1 file changed, 4 deletions(-)
|
|
|
|
diff --git a/target/s390x/arch_dump.c b/target/s390x/arch_dump.c
|
|
index a7c44ba49d..7cdd4b7167 100644
|
|
--- a/target/s390x/arch_dump.c
|
|
+++ b/target/s390x/arch_dump.c
|
|
@@ -454,10 +454,6 @@ int cpu_get_dump_info(ArchDumpInfo *info,
|
|
info->arch_sections_add_fn = *arch_sections_add;
|
|
info->arch_sections_write_hdr_fn = *arch_sections_write_hdr;
|
|
info->arch_sections_write_fn = *arch_sections_write;
|
|
- } else {
|
|
- info->arch_sections_add_fn = NULL;
|
|
- info->arch_sections_write_hdr_fn = NULL;
|
|
- info->arch_sections_write_fn = NULL;
|
|
}
|
|
return 0;
|
|
}
|
|
--
|
|
2.39.3
|
|
|