qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 00/17] s390x/kvm: pending patches
@ 2014-02-25 10:05 Christian Borntraeger
  2014-02-25 10:05 ` [Qemu-devel] [PATCH 01/17] update linux headers to kvm/queue Christian Borntraeger
                   ` (16 more replies)
  0 siblings, 17 replies; 18+ messages in thread
From: Christian Borntraeger @ 2014-02-25 10:05 UTC (permalink / raw)
  To: Anthony Liguori, Peter Maydell
  Cc: qemu-devel, Alexander Graf, Christian Borntraeger, Jens Freimann,
	Cornelia Huck, Paolo Bonzini, Richard Henderson

Anthony, Peter,

here is what I have queued for my next pull request. I will wait
until the linux header updates move from kvm/queue to kvm/next, which
should happen soon.

The patch queue is basically the combined queue of things already posted.

o https://lists.gnu.org/archive/html/qemu-devel/2014-02/msg01041.html
- two sigp patches removed which need some more work
+ some fixes for flic/pfault (use designated initializer)
+ fixed patch descriptions
+ add qemu-stable to s390x/virtio-hcall: Add range check for hypervisor call

o https://lists.gnu.org/archive/html/qemu-devel/2014-02/msg02200.html
+ style fixes
+ better patch description


Conny, maybe you can post your (on top) adapter interrupt/irqfd patch
set as well before the soft freeze? This has already seen many (internal)
test and performance cycles, so time for a last(?) round of review before
the soft freeze.

Christian


Christian Borntraeger (5):
  update linux headers to kvm/queue
  s390x/eventfacility: mask out commands
  s390-ccw.img: Fix sporadic reboot hangs: Initialize next_idx
  s390-ccw.img: Fix sporadic errors with ccw boot image - initialize css
  s390-ccw.img: new binary rom to match latest fixes

Dominik Dingel (1):
  s390x/async_pf: Check for apf extension and enable pfault

Heinz Graalfs (4):
  s390x/event-facility: some renaming
  s390x/event-facility: code restructure
  s390x/event-facility: add support for live migration
  s390x/event-facility: exploit realize/unrealize

Jens Freimann (1):
  s390x/kvm: implement floating-interrupt controller device

Thomas Huth (6):
  s390x/kvm: Fixed bad SIGP SET-ARCHITECTURE handler
  s390x/virtio-hcall: Add range check for hypervisor call
  s390x/virtio-hcall: Specification exception for illegal subcodes
  s390x/sclp: Fixed the size of sccb and code parameter
  s390x/sclp: Add missing checks to SCLP handler
  s390x/sclp: Fixed setting of condition code register

 default-configs/s390x-softmmu.mak |   1 +
 hw/intc/Makefile.objs             |   1 +
 hw/intc/s390_flic.c               | 322 ++++++++++++++++++++++++++++++++++++++
 hw/s390x/event-facility.c         |  93 ++++++-----
 hw/s390x/s390-virtio-ccw.c        |   8 +-
 hw/s390x/s390-virtio-hcall.c      |  14 +-
 hw/s390x/s390-virtio.c            |   2 +
 hw/s390x/sclp.c                   |  69 +++-----
 include/hw/s390x/event-facility.h |  19 +++
 include/hw/s390x/s390_flic.h      |  33 ++++
 include/hw/s390x/sclp.h           |  24 ---
 linux-headers/asm-arm/kvm.h       |  28 ++++
 linux-headers/asm-arm64/kvm.h     |  30 +++-
 linux-headers/asm-powerpc/kvm.h   |   3 +
 linux-headers/asm-s390/kvm.h      |  19 +++
 linux-headers/asm-x86/hyperv.h    |  16 +-
 linux-headers/linux/kvm.h         |  67 ++++++++
 pc-bios/s390-ccw.img              | Bin 9336 -> 9336 bytes
 pc-bios/s390-ccw/main.c           |   3 +-
 pc-bios/s390-ccw/virtio.c         |   1 +
 target-s390x/cpu.c                |   6 +
 target-s390x/cpu.h                |   6 +-
 target-s390x/kvm.c                |  76 +++++++--
 target-s390x/misc_helper.c        |   2 +-
 trace-events                      |   5 +
 25 files changed, 712 insertions(+), 136 deletions(-)
 create mode 100644 hw/intc/s390_flic.c
 create mode 100644 include/hw/s390x/s390_flic.h

-- 
1.8.4.2

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

end of thread, other threads:[~2014-02-25 10:05 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-25 10:05 [Qemu-devel] [PATCH 00/17] s390x/kvm: pending patches Christian Borntraeger
2014-02-25 10:05 ` [Qemu-devel] [PATCH 01/17] update linux headers to kvm/queue Christian Borntraeger
2014-02-25 10:05 ` [Qemu-devel] [PATCH 02/17] s390x/kvm: implement floating-interrupt controller device Christian Borntraeger
2014-02-25 10:05 ` [Qemu-devel] [PATCH 03/17] s390x/async_pf: Check for apf extension and enable pfault Christian Borntraeger
2014-02-25 10:05 ` [Qemu-devel] [PATCH 04/17] s390x/kvm: Fixed bad SIGP SET-ARCHITECTURE handler Christian Borntraeger
2014-02-25 10:05 ` [Qemu-devel] [PATCH 05/17] s390x/virtio-hcall: Add range check for hypervisor call Christian Borntraeger
2014-02-25 10:05 ` [Qemu-devel] [PATCH 06/17] s390x/virtio-hcall: Specification exception for illegal subcodes Christian Borntraeger
2014-02-25 10:05 ` [Qemu-devel] [PATCH 07/17] s390x/eventfacility: mask out commands Christian Borntraeger
2014-02-25 10:05 ` [Qemu-devel] [PATCH 08/17] s390x/sclp: Fixed the size of sccb and code parameter Christian Borntraeger
2014-02-25 10:05 ` [Qemu-devel] [PATCH 09/17] s390x/sclp: Add missing checks to SCLP handler Christian Borntraeger
2014-02-25 10:05 ` [Qemu-devel] [PATCH 10/17] s390x/sclp: Fixed setting of condition code register Christian Borntraeger
2014-02-25 10:05 ` [Qemu-devel] [PATCH 11/17] s390x/event-facility: some renaming Christian Borntraeger
2014-02-25 10:05 ` [Qemu-devel] [PATCH 12/17] s390x/event-facility: code restructure Christian Borntraeger
2014-02-25 10:05 ` [Qemu-devel] [PATCH 13/17] s390x/event-facility: add support for live migration Christian Borntraeger
2014-02-25 10:05 ` [Qemu-devel] [PATCH 14/17] s390x/event-facility: exploit realize/unrealize Christian Borntraeger
2014-02-25 10:05 ` [Qemu-devel] [PATCH 15/17] s390-ccw.img: Fix sporadic reboot hangs: Initialize next_idx Christian Borntraeger
2014-02-25 10:05 ` [Qemu-devel] [PATCH 16/17] s390-ccw.img: Fix sporadic errors with ccw boot image - initialize css Christian Borntraeger
2014-02-25 10:05 ` [Qemu-devel] [PATCH 17/17] s390-ccw.img: new binary rom to match latest fixes Christian Borntraeger

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).