[PULL v3 00/11] Dump patches

marcandre.lureau@redhat.com posted 11 patches 1 year, 6 months ago
include/elf.h                |   2 +
include/hw/s390x/pv.h        |  19 +++
include/sysemu/dump-arch.h   |   3 +
include/sysemu/dump.h        |  26 +++-
target/s390x/kvm/kvm_s390x.h |   1 +
dump/dump.c                  | 288 +++++++++++++++++++++++++++--------
dump/win_dump.c              |   7 +
hw/s390x/pv.c                | 112 ++++++++++++++
hw/s390x/s390-virtio-ccw.c   |   6 +
target/s390x/arch_dump.c     | 262 +++++++++++++++++++++++++++----
target/s390x/kvm/kvm.c       |   7 +
target/s390x/kvm/stubs.c     |  12 ++
target/s390x/kvm/meson.build |   2 +
13 files changed, 649 insertions(+), 98 deletions(-)
create mode 100644 target/s390x/kvm/stubs.c
[PULL v3 00/11] Dump patches
Posted by marcandre.lureau@redhat.com 1 year, 6 months ago
From: Marc-André Lureau <marcandre.lureau@redhat.com>

The following changes since commit e750a7ace492f0b450653d4ad368a77d6f660fb8:

  Merge tag 'pull-9p-20221024' of https://github.com/cschoenebeck/qemu into staging (2022-10-24 14:27:12 -0400)

are available in the Git repository at:

  https://gitlab.com/marcandre.lureau/qemu.git tags/dump-pull-request

for you to fetch changes up to e38c24cb580735883769558801d9e2f2ba9f04c1:

  dump/win_dump: limit number of processed PRCBs (2022-10-26 12:55:00 +0400)

----------------------------------------------------------------
dump queue

Hi

The "dump" queue, with:
- [PATCH v3/v4 0/9] dump: Cleanup and consolidation
- [PATCH v4 0/4] dump: add 32-bit guest Windows support

----------------------------------------------------------------

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
  include/elf.h: add s390x note types
  s390x: Add KVM PV dump interface
  s390x: pv: Add dump support

Viktor Prutyanov (1):
  dump/win_dump: limit number of processed PRCBs

 include/elf.h                |   2 +
 include/hw/s390x/pv.h        |  19 +++
 include/sysemu/dump-arch.h   |   3 +
 include/sysemu/dump.h        |  26 +++-
 target/s390x/kvm/kvm_s390x.h |   1 +
 dump/dump.c                  | 288 +++++++++++++++++++++++++++--------
 dump/win_dump.c              |   7 +
 hw/s390x/pv.c                | 112 ++++++++++++++
 hw/s390x/s390-virtio-ccw.c   |   6 +
 target/s390x/arch_dump.c     | 262 +++++++++++++++++++++++++++----
 target/s390x/kvm/kvm.c       |   7 +
 target/s390x/kvm/stubs.c     |  12 ++
 target/s390x/kvm/meson.build |   2 +
 13 files changed, 649 insertions(+), 98 deletions(-)
 create mode 100644 target/s390x/kvm/stubs.c

-- 
2.37.3


Re: [PULL v3 00/11] Dump patches
Posted by Stefan Hajnoczi 1 year, 6 months ago
Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/7.2 for any user-visible changes.
Re: [PULL v3 00/11] Dump patches
Posted by Marc-André Lureau 1 year, 6 months ago
Hi

On Wed, Oct 26, 2022 at 12:55 PM <marcandre.lureau@redhat.com> wrote:

> From: Marc-André Lureau <marcandre.lureau@redhat.com>
>
> The following changes since commit
> e750a7ace492f0b450653d4ad368a77d6f660fb8:
>
>   Merge tag 'pull-9p-20221024' of https://github.com/cschoenebeck/qemu
> into staging (2022-10-24 14:27:12 -0400)
>
> are available in the Git repository at:
>
>   https://gitlab.com/marcandre.lureau/qemu.git tags/dump-pull-request
>
> for you to fetch changes up to e38c24cb580735883769558801d9e2f2ba9f04c1:
>
>   dump/win_dump: limit number of processed PRCBs (2022-10-26 12:55:00
> +0400)
>
> ----------------------------------------------------------------
> dump queue
>
> Hi
>
> The "dump" queue, with:
> - [PATCH v3/v4 0/9] dump: Cleanup and consolidation
> - [PATCH v4 0/4] dump: add 32-bit guest Windows support
>


Hmm git-publish, what have you done?

In v1, it was:

- [PATCH v6/v7 00/10] dump: Add arch section and s390x PV dump
- [PATCH] dump/win_dump: limit number of processed PRCBs


And then v2 for some reason picked the old "dump" branch message :( I'll
try to reproduce and file a bug.


> ----------------------------------------------------------------
>
> 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
>   include/elf.h: add s390x note types
>   s390x: Add KVM PV dump interface
>   s390x: pv: Add dump support
>
> Viktor Prutyanov (1):
>   dump/win_dump: limit number of processed PRCBs
>
>  include/elf.h                |   2 +
>  include/hw/s390x/pv.h        |  19 +++
>  include/sysemu/dump-arch.h   |   3 +
>  include/sysemu/dump.h        |  26 +++-
>  target/s390x/kvm/kvm_s390x.h |   1 +
>  dump/dump.c                  | 288 +++++++++++++++++++++++++++--------
>  dump/win_dump.c              |   7 +
>  hw/s390x/pv.c                | 112 ++++++++++++++
>  hw/s390x/s390-virtio-ccw.c   |   6 +
>  target/s390x/arch_dump.c     | 262 +++++++++++++++++++++++++++----
>  target/s390x/kvm/kvm.c       |   7 +
>  target/s390x/kvm/stubs.c     |  12 ++
>  target/s390x/kvm/meson.build |   2 +
>  13 files changed, 649 insertions(+), 98 deletions(-)
>  create mode 100644 target/s390x/kvm/stubs.c
>
> --
> 2.37.3
>
>