qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 00/23] s390x: further patches
@ 2015-08-31 11:13 Cornelia Huck
  2015-08-31 11:13 ` [Qemu-devel] [PATCH 01/23] s390x/css: handle ccw-0 TIC correctly Cornelia Huck
                   ` (22 more replies)
  0 siblings, 23 replies; 24+ messages in thread
From: Cornelia Huck @ 2015-08-31 11:13 UTC (permalink / raw)
  To: qemu-devel; +Cc: Cornelia Huck, borntraeger, jfrei, agraf

Hi,

here's a further set of patches on top of the storage key migration
patches (v3) I just sent out.

Contained in there are:
- various bugfixes (css/event-facility)
- more efficient adapter interrupt routes setup
- gdb enhancement
- sclp got treated with a lot of remodelling/cleanup

Alexander Yarygin (1):
  pc-bios/s390-ccw: Device detection in higher subchannel sets

Cornelia Huck (5):
  s390x/css: ccw-0 enforces count > 0
  s390x/event-facility: fix receive mask check
  s390x/css: start with cleared cstat/dstat
  s390x/event-facility: fix location of receive mask
  pc-bios/s390-ccw: rebuild image

David Hildenbrand (15):
  s390x/gdb: support reading/writing of control registers
  sclp/s390: rework sclp cpu hotplug device notification
  s390/sclp: rework sclp event facility initialization + device
    realization
  s390/sclp: replace sclp event types with proper defines
  s390/sclp: temporarily fix unassignment/reassignment of memory
    subregions
  s390/sclp: introduce a root sclp device
  s390/sclp: move sclp_execute related functions into the SCLP class
  s390/sclp: move sclp_service_interrupt into the sclp device
  s390: no need to manually parse for slots and maxmem
  s390: disallow memory hotplug for the s390-virtio machine
  s390/sclp: ignore memory hotplug operations if it is disabled
  s390: move memory calculation into the sclp device
  s390: unify allocation of initial memory
  s390/sclp: store the increment_size in the sclp device
  s390/sclp: simplify calculation of rnmax

Jens Freimann (1):
  s390x/kvm: make setting of in-kernel irq routes more efficient

Pierre Morel (1):
  s390x/css: handle ccw-0 TIC correctly

 configure                         |   2 +-
 gdb-xml/s390-cr.xml               |  26 ++++
 hw/intc/s390_flic_kvm.c           |   2 +
 hw/s390x/css.c                    |   9 ++
 hw/s390x/event-facility.c         |  55 +++++---
 hw/s390x/s390-virtio-ccw.c        |  75 +++--------
 hw/s390x/s390-virtio.c            |  30 ++---
 hw/s390x/s390-virtio.h            |   1 +
 hw/s390x/sclp.c                   | 267 ++++++++++++++++++++++++++++----------
 hw/s390x/sclpcpu.c                |  28 +---
 hw/s390x/sclpquiesce.c            |   4 +-
 include/hw/s390x/event-facility.h |  12 +-
 include/hw/s390x/sclp.h           |  33 +++++
 kvm-all.c                         |   1 -
 pc-bios/s390-ccw.img              | Bin 13784 -> 13856 bytes
 pc-bios/s390-ccw/main.c           |  66 ++++++----
 target-s390x/gdbstub.c            |  39 ++++++
 17 files changed, 427 insertions(+), 223 deletions(-)
 create mode 100644 gdb-xml/s390-cr.xml

-- 
2.5.1

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

end of thread, other threads:[~2015-08-31 11:14 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-31 11:13 [Qemu-devel] [PATCH 00/23] s390x: further patches Cornelia Huck
2015-08-31 11:13 ` [Qemu-devel] [PATCH 01/23] s390x/css: handle ccw-0 TIC correctly Cornelia Huck
2015-08-31 11:13 ` [Qemu-devel] [PATCH 02/23] s390x/css: ccw-0 enforces count > 0 Cornelia Huck
2015-08-31 11:13 ` [Qemu-devel] [PATCH 03/23] s390x/event-facility: fix receive mask check Cornelia Huck
2015-08-31 11:13 ` [Qemu-devel] [PATCH 04/23] s390x/css: start with cleared cstat/dstat Cornelia Huck
2015-08-31 11:13 ` [Qemu-devel] [PATCH 05/23] s390x/event-facility: fix location of receive mask Cornelia Huck
2015-08-31 11:13 ` [Qemu-devel] [PATCH 06/23] pc-bios/s390-ccw: Device detection in higher subchannel sets Cornelia Huck
2015-08-31 11:13 ` [Qemu-devel] [PATCH 07/23] pc-bios/s390-ccw: rebuild image Cornelia Huck
2015-08-31 11:13 ` [Qemu-devel] [PATCH 08/23] s390x/kvm: make setting of in-kernel irq routes more efficient Cornelia Huck
2015-08-31 11:13 ` [Qemu-devel] [PATCH 09/23] s390x/gdb: support reading/writing of control registers Cornelia Huck
2015-08-31 11:13 ` [Qemu-devel] [PATCH 10/23] sclp/s390: rework sclp cpu hotplug device notification Cornelia Huck
2015-08-31 11:13 ` [Qemu-devel] [PATCH 11/23] s390/sclp: rework sclp event facility initialization + device realization Cornelia Huck
2015-08-31 11:13 ` [Qemu-devel] [PATCH 12/23] s390/sclp: replace sclp event types with proper defines Cornelia Huck
2015-08-31 11:13 ` [Qemu-devel] [PATCH 13/23] s390/sclp: temporarily fix unassignment/reassignment of memory subregions Cornelia Huck
2015-08-31 11:13 ` [Qemu-devel] [PATCH 14/23] s390/sclp: introduce a root sclp device Cornelia Huck
2015-08-31 11:13 ` [Qemu-devel] [PATCH 15/23] s390/sclp: move sclp_execute related functions into the SCLP class Cornelia Huck
2015-08-31 11:13 ` [Qemu-devel] [PATCH 16/23] s390/sclp: move sclp_service_interrupt into the sclp device Cornelia Huck
2015-08-31 11:13 ` [Qemu-devel] [PATCH 17/23] s390: no need to manually parse for slots and maxmem Cornelia Huck
2015-08-31 11:13 ` [Qemu-devel] [PATCH 18/23] s390: disallow memory hotplug for the s390-virtio machine Cornelia Huck
2015-08-31 11:13 ` [Qemu-devel] [PATCH 19/23] s390/sclp: ignore memory hotplug operations if it is disabled Cornelia Huck
2015-08-31 11:14 ` [Qemu-devel] [PATCH 20/23] s390: move memory calculation into the sclp device Cornelia Huck
2015-08-31 11:14 ` [Qemu-devel] [PATCH 21/23] s390: unify allocation of initial memory Cornelia Huck
2015-08-31 11:14 ` [Qemu-devel] [PATCH 22/23] s390/sclp: store the increment_size in the sclp device Cornelia Huck
2015-08-31 11:14 ` [Qemu-devel] [PATCH 23/23] s390/sclp: simplify calculation of rnmax 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).