qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/26] s390x updates (and friends)
@ 2018-02-27 13:21 Cornelia Huck
  2018-02-27 13:21 ` [Qemu-devel] [PULL 01/26] s390-ccw: refactor boot map table code Cornelia Huck
                   ` (26 more replies)
  0 siblings, 27 replies; 31+ messages in thread
From: Cornelia Huck @ 2018-02-27 13:21 UTC (permalink / raw)
  To: peter.maydell
  Cc: qemu-s390x, qemu-devel, borntraeger, rth, agraf, david, thuth,
	Cornelia Huck

The following changes since commit 0a773d55ac76c5aa89ed9187a3bc5af8c5c2a6d0:

  maintainers: Add myself as a OpenBSD maintainer (2018-02-23 12:05:07 +0000)

are available in the git repository at:

  git://github.com/cohuck/qemu tags/s390x-20180227

for you to fetch changes up to eae9f29130f3ed40ad77f40a3bae4b9ebff28907:

  Merge tag 'tags/s390-ccw-bios-2018-02-26' into s390-next (2018-02-27 13:54:37 +0100)

----------------------------------------------------------------
- add query-cpus-fast and deprecate query-cpus, while adding s390 cpu
  information
- remove s390x memory hotplug implementation, which is not useable in
  this form
- add boot menu support in the s390-ccw bios
- expose s390x guest crash information
- fixes and cleaups

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

Christian Borntraeger (1):
  s390x/cpu: expose the guest crash information

Collin L. Walling (13):
  s390-ccw: refactor boot map table code
  s390-ccw: refactor eckd_block_num to use CHS
  s390-ccw: refactor IPL structs
  s390-ccw: update libc
  s390-ccw: move auxiliary IPL data to separate location
  s390-ccw: parse and set boot menu options
  s390-ccw: set up interactive boot menu parameters
  s390-ccw: read stage2 boot loader data to find menu
  s390-ccw: print zipl boot menu
  s390-ccw: read user input for boot index via the SCLP console
  s390-ccw: set cp_receive mask only when needed and consume pending
    service irqs
  s390-ccw: use zipl values when no boot menu options are present
  s390-ccw: interactive boot menu for scsi

Cornelia Huck (1):
  s390x: remove s390_get_memslot_count

David Hildenbrand (3):
  s390x/tcg: fix disabling/enabling DAT
  s390x/tcg: add various alignment checks
  s390x/sclp: remove memory hotplug support

Dr. David Alan Gilbert (1):
  s390/stattrib: Make SaveVMHandlers data static

Halil Pasic (1):
  s390x/cpumodel: document S390FeatDef.bit not applicable

Luiz Capitulino (1):
  qmp: add query-cpus-fast

Thomas Huth (1):
  pc-bios/s390: Rebuild the s390x firmware images with the boot menu
    changes

Viktor Mihajlovski (4):
  qmp: expose s390-specific CPU info
  qmp: add architecture specific cpu data for query-cpus-fast
  qemu-doc: deprecate query-cpus
  hmp: change hmp_info_cpus to use query-cpus-fast

 cpus.c                      |  54 ++++++++
 hmp.c                       |  41 +-----
 hw/intc/s390_flic.c         |   4 +-
 hw/s390x/s390-stattrib.c    |  26 ++--
 hw/s390x/s390-virtio-ccw.c  |   2 +-
 hw/s390x/sclp.c             | 310 +-------------------------------------------
 include/hw/s390x/sclp.h     |  26 ----
 monitor.c                   |  13 +-
 qapi-schema.json            | 115 +++++++++++++++-
 qapi/run-state.json         |  55 +++++++-
 qemu-doc.texi               |   4 +
 target/s390x/cpu.c          |  78 ++++++++---
 target/s390x/cpu.h          |  21 ++-
 target/s390x/cpu_features.c |   8 +-
 target/s390x/helper.c       |   5 +-
 target/s390x/insn-data.def  |  16 +--
 target/s390x/kvm-stub.c     |   5 -
 target/s390x/kvm.c          |  28 ++--
 target/s390x/kvm_s390x.h    |   1 -
 target/s390x/mem_helper.c   |  25 ++++
 target/s390x/mmu_helper.c   |   2 +-
 target/s390x/sigp.c         |  38 +++---
 target/s390x/translate.c    |  53 +++++++-
 vl.c                        |  11 +-
 24 files changed, 461 insertions(+), 480 deletions(-)

-- 
2.13.6

^ permalink raw reply	[flat|nested] 31+ messages in thread

end of thread, other threads:[~2018-03-01 12:22 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-27 13:21 [Qemu-devel] [PULL 00/26] s390x updates (and friends) Cornelia Huck
2018-02-27 13:21 ` [Qemu-devel] [PULL 01/26] s390-ccw: refactor boot map table code Cornelia Huck
2018-02-27 13:21 ` [Qemu-devel] [PULL 02/26] s390-ccw: refactor eckd_block_num to use CHS Cornelia Huck
2018-02-27 13:21 ` [Qemu-devel] [PULL 03/26] s390-ccw: refactor IPL structs Cornelia Huck
2018-02-27 13:21 ` [Qemu-devel] [PULL 04/26] s390-ccw: update libc Cornelia Huck
2018-02-27 13:21 ` [Qemu-devel] [PULL 05/26] s390-ccw: move auxiliary IPL data to separate location Cornelia Huck
2018-02-27 13:21 ` [Qemu-devel] [PULL 06/26] s390-ccw: parse and set boot menu options Cornelia Huck
2018-02-27 13:21 ` [Qemu-devel] [PULL 07/26] s390-ccw: set up interactive boot menu parameters Cornelia Huck
2018-02-27 13:21 ` [Qemu-devel] [PULL 08/26] s390-ccw: read stage2 boot loader data to find menu Cornelia Huck
2018-02-27 13:21 ` [Qemu-devel] [PULL 09/26] s390-ccw: print zipl boot menu Cornelia Huck
2018-02-27 13:21 ` [Qemu-devel] [PULL 10/26] s390-ccw: read user input for boot index via the SCLP console Cornelia Huck
2018-02-27 13:21 ` [Qemu-devel] [PULL 11/26] s390-ccw: set cp_receive mask only when needed and consume pending service irqs Cornelia Huck
2018-02-27 13:21 ` [Qemu-devel] [PULL 12/26] s390-ccw: use zipl values when no boot menu options are present Cornelia Huck
2018-02-27 13:21 ` [Qemu-devel] [PULL 13/26] s390-ccw: interactive boot menu for scsi Cornelia Huck
2018-02-27 13:21 ` [Qemu-devel] [PULL 14/26] pc-bios/s390: Rebuild the s390x firmware images with the boot menu changes Cornelia Huck
2018-02-27 13:21 ` [Qemu-devel] [PULL 15/26] s390x/cpu: expose the guest crash information Cornelia Huck
2018-02-27 13:21 ` [Qemu-devel] [PULL 16/26] s390/stattrib: Make SaveVMHandlers data static Cornelia Huck
2018-02-27 13:21 ` [Qemu-devel] [PULL 17/26] s390x/tcg: fix disabling/enabling DAT Cornelia Huck
2018-02-27 13:21 ` [Qemu-devel] [PULL 18/26] s390x/tcg: add various alignment checks Cornelia Huck
2018-02-27 13:21 ` [Qemu-devel] [PULL 19/26] qmp: expose s390-specific CPU info Cornelia Huck
2018-02-27 13:21 ` [Qemu-devel] [PULL 20/26] qmp: add query-cpus-fast Cornelia Huck
2018-02-27 13:21 ` [Qemu-devel] [PULL 21/26] qmp: add architecture specific cpu data for query-cpus-fast Cornelia Huck
2018-02-27 13:21 ` [Qemu-devel] [PULL 22/26] qemu-doc: deprecate query-cpus Cornelia Huck
2018-02-27 13:21 ` [Qemu-devel] [PULL 23/26] hmp: change hmp_info_cpus to use query-cpus-fast Cornelia Huck
2018-02-27 13:21 ` [Qemu-devel] [PULL 24/26] s390x/cpumodel: document S390FeatDef.bit not applicable Cornelia Huck
2018-02-27 13:21 ` [Qemu-devel] [PULL 25/26] s390x/sclp: remove memory hotplug support Cornelia Huck
2018-02-27 13:21 ` [Qemu-devel] [PULL 26/26] s390x: remove s390_get_memslot_count Cornelia Huck
2018-03-01 10:12 ` [Qemu-devel] [PULL 00/26] s390x updates (and friends) Peter Maydell
2018-03-01 10:27   ` Cornelia Huck
2018-03-01 11:17     ` Thomas Huth
2018-03-01 12:21       ` Cornelia Huck

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).