[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v6 00/10] dump: Add arch section and s390x PV dump
From: |
Janosch Frank |
Subject: |
[PATCH v6 00/10] dump: Add arch section and s390x PV dump |
Date: |
Mon, 17 Oct 2022 08:38:12 +0000 |
Previously this series was two separate series:
* Arch section support
Adds the possibility for arch code to add custom section data.
* s390 PV dump support
Adds PV dump data to the custom arch sections.
I've chosen to merge them so it's easier to understand why the arch
section support has been implement the way it is.
Additionally I've added cleanup patches beforehand which clean up the
GuestPhysBlock usage.
v6:
* Rebase after parts of the series have been pulled
* Put the section header move into its own patch
* Added freeing of s->elf_section_hdrs
* Added missing false fields in the note arrays in arch_dump.c
v5:
* Added a patch that moves the DumpState typedef and replaces
the opaque pointers with properly typed ones
* Removed the ELF header allocation since the codes has
changed in a way that it's not needed anymore
* Changed naming of dump_get_memblock_*() to dump_filter_memblock_*()
* Removed various inline functions
* Added a re-work of the filter variables
Janosch Frank (10):
dump: Use a buffer for ELF section data and headers
dump: Write ELF section headers right after ELF header
dump: Reorder struct DumpState
dump: Reintroduce memory_offset and section_offset
dump: Add architecture section and section string table support
s390x: Add protected dump cap
s390x: Introduce PV query interface
RFC: elf.h changes
s390x: Add KVM PV dump interface
s390x: pv: Add dump support
dump/dump.c | 290 +++++++++++++++++++++++++++--------
hw/s390x/pv.c | 112 ++++++++++++++
hw/s390x/s390-virtio-ccw.c | 6 +
include/elf.h | 2 +
include/hw/s390x/pv.h | 19 +++
include/sysemu/dump-arch.h | 3 +
include/sysemu/dump.h | 26 +++-
target/s390x/arch_dump.c | 262 +++++++++++++++++++++++++++----
target/s390x/kvm/kvm.c | 7 +
target/s390x/kvm/kvm_s390x.h | 1 +
10 files changed, 629 insertions(+), 99 deletions(-)
--
2.34.1
- [PATCH v6 00/10] dump: Add arch section and s390x PV dump,
Janosch Frank <=
- [PATCH v6 01/10] dump: Use a buffer for ELF section data and headers, Janosch Frank, 2022/10/17
- [PATCH v6 06/10] s390x: Add protected dump cap, Janosch Frank, 2022/10/17
- [PATCH v6 04/10] dump: Reintroduce memory_offset and section_offset, Janosch Frank, 2022/10/17
- [PATCH v6 05/10] dump: Add architecture section and section string table support, Janosch Frank, 2022/10/17
- [PATCH v6 07/10] s390x: Introduce PV query interface, Janosch Frank, 2022/10/17
- [PATCH v6 09/10] s390x: Add KVM PV dump interface, Janosch Frank, 2022/10/17