qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/20] s390x/kvm: Features and fixes for 2.3
@ 2015-03-10  8:37 Christian Borntraeger
  2015-03-10  8:37 ` [Qemu-devel] [PULL 01/20] synchronize Linux headers to 4.0-rc3 Christian Borntraeger
                   ` (20 more replies)
  0 siblings, 21 replies; 28+ messages in thread
From: Christian Borntraeger @ 2015-03-10  8:37 UTC (permalink / raw)
  To: Peter Maydell
  Cc: qemu-devel, Alexander Graf, Christian Borntraeger, Jens Freimann,
	Cornelia Huck, Richard Henderson

Peter,

this pull reuqest contains a header sync to 4.0-rc3. This should cause
no merge conflicts with other header syncs against 4.0-rc2. So here
is the s390 pull request.

The following changes since commit 277263e1b320d759a760ba6c5ea75ec268f929e5:

  Merge remote-tracking branch 'remotes/agraf/tags/signed-ppc-for-upstream' into staging (2015-03-09 14:04:14 +0000)

are available in the git repository at:

  git://github.com/borntraeger/qemu.git tags/s390x-20150310

for you to fetch changes up to 6342cb1443b37d249a0e2005128ade07a80a97f5:

  s390-ccw: rebuild BIOS (2015-03-10 09:26:33 +0100)

----------------------------------------------------------------
s390x/kvm: Features and fixes for 2.3

- an extension to the elf loader to allow relocations
- make the ccw bios relocatable. This allows for bigger ramdisks
  or smaller guests
- Handle all slow SIGPs in QEMU (instead of kernel) for better
  compliance and correctness
- tell the KVM module the maximum guest size. This allows KVM
  to reduce the number or page table levels
- Several fixes/cleanups

----------------------------------------------------------------
Christian Borntraeger (4):
      synchronize Linux headers to 4.0-rc3
      s390-ccw.img: Allow bigger ramdisk sizes or offsets
      s390-ccw.img: Reinitialize guessing on reboot
      s390-ccw: rebuild BIOS

David Hildenbrand (10):
      s390x: introduce defines for SIGP condition codes
      s390x/kvm: more details for SIGP handler with one destination vcpu
      s390x/kvm: pass the SIGP instruction parameter to the SIGP handler
      s390x/kvm: helper to set the SIGP status in SigpInfo
      s390x/kvm: trace all SIGP orders
      s390x/kvm: implement handling of new SIGP orders
      s390x/kvm: SIGP START is only applicable when STOPPED
      s390x: add function to deliver restart irqs
      s390x/kvm: deliver SIGP RESTART directly if stopped
      s390x/kvm: enable the new SIGP handling in user space

Dominik Dingel (1):
      s390x/kvm: passing max memory size to accelerator

Markus Armbruster (3):
      virtio-s390: s390_virtio_device_init() can't fail, simplify
      virtio-s390: Convert to realize()
      virtio-ccw: Convert to realize()

Thomas Huth (2):
      elf-loader: Provide the possibility to relocate s390 ELF files
      s390/bios: Make the s390-ccw.img relocatable

 hw/core/loader.c                            |   2 +
 hw/s390x/ipl.c                              |  23 +-
 hw/s390x/s390-virtio-bus.c                  |  97 ++++---
 hw/s390x/s390-virtio-bus.h                  |   2 +-
 hw/s390x/s390-virtio-ccw.c                  |  10 +
 hw/s390x/virtio-ccw.c                       | 134 +++++----
 hw/s390x/virtio-ccw.h                       |   2 +-
 include/elf.h                               |   2 +
 include/hw/elf_ops.h                        |  78 ++++++
 include/standard-headers/linux/virtio_net.h |  54 ++--
 linux-headers/asm-arm/kvm.h                 |   2 +
 linux-headers/asm-arm64/kvm.h               |   9 +
 linux-headers/asm-s390/kvm.h                |  37 +++
 linux-headers/asm-x86/hyperv.h              |  11 +
 linux-headers/linux/kvm.h                   |  20 +-
 pc-bios/s390-ccw.img                        | Bin 17752 -> 13616 bytes
 pc-bios/s390-ccw/Makefile                   |  11 +-
 pc-bios/s390-ccw/main.c                     |   1 +
 pc-bios/s390-ccw/s390-ccw.h                 |   1 +
 pc-bios/s390-ccw/virtio.c                   |   5 +-
 target-s390x/cpu.c                          |   2 +
 target-s390x/cpu.h                          |  40 ++-
 target-s390x/helper.c                       |  35 ++-
 target-s390x/kvm.c                          | 416 ++++++++++++++++++++++++----
 target-s390x/machine.c                      |   5 +-
 target-s390x/misc_helper.c                  |   4 +-
 trace-events                                |   1 +
 27 files changed, 780 insertions(+), 224 deletions(-)

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

end of thread, other threads:[~2015-03-11 10:06 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-10  8:37 [Qemu-devel] [PULL 00/20] s390x/kvm: Features and fixes for 2.3 Christian Borntraeger
2015-03-10  8:37 ` [Qemu-devel] [PULL 01/20] synchronize Linux headers to 4.0-rc3 Christian Borntraeger
2015-03-10  8:37 ` [Qemu-devel] [PULL 02/20] s390x: introduce defines for SIGP condition codes Christian Borntraeger
2015-03-10  8:37 ` [Qemu-devel] [PULL 03/20] s390x/kvm: more details for SIGP handler with one destination vcpu Christian Borntraeger
2015-03-10  8:37 ` [Qemu-devel] [PULL 04/20] s390x/kvm: pass the SIGP instruction parameter to the SIGP handler Christian Borntraeger
2015-03-10  8:37 ` [Qemu-devel] [PULL 05/20] s390x/kvm: helper to set the SIGP status in SigpInfo Christian Borntraeger
2015-03-10  8:37 ` [Qemu-devel] [PULL 06/20] s390x/kvm: trace all SIGP orders Christian Borntraeger
2015-03-10  8:38 ` [Qemu-devel] [PULL 07/20] s390x/kvm: implement handling of new " Christian Borntraeger
2015-03-10  8:38 ` [Qemu-devel] [PULL 08/20] s390x/kvm: SIGP START is only applicable when STOPPED Christian Borntraeger
2015-03-10  8:38 ` [Qemu-devel] [PULL 09/20] s390x: add function to deliver restart irqs Christian Borntraeger
2015-03-10  8:38 ` [Qemu-devel] [PULL 10/20] s390x/kvm: deliver SIGP RESTART directly if stopped Christian Borntraeger
2015-03-10  8:38 ` [Qemu-devel] [PULL 11/20] s390x/kvm: enable the new SIGP handling in user space Christian Borntraeger
2015-03-10  8:38 ` [Qemu-devel] [PULL 12/20] virtio-s390: s390_virtio_device_init() can't fail, simplify Christian Borntraeger
2015-03-10  8:38 ` [Qemu-devel] [PULL 13/20] virtio-s390: Convert to realize() Christian Borntraeger
2015-03-10  8:38 ` [Qemu-devel] [PULL 14/20] virtio-ccw: " Christian Borntraeger
2015-03-10  8:38 ` [Qemu-devel] [PULL 15/20] s390x/kvm: passing max memory size to accelerator Christian Borntraeger
2015-03-10  8:38 ` [Qemu-devel] [PULL 16/20] s390-ccw.img: Allow bigger ramdisk sizes or offsets Christian Borntraeger
2015-03-10  8:38 ` [Qemu-devel] [PULL 17/20] s390-ccw.img: Reinitialize guessing on reboot Christian Borntraeger
2015-03-10  8:38 ` [Qemu-devel] [PULL 18/20] elf-loader: Provide the possibility to relocate s390 ELF files Christian Borntraeger
2015-03-10  8:38 ` [Qemu-devel] [PULL 19/20] s390/bios: Make the s390-ccw.img relocatable Christian Borntraeger
2015-03-10  8:38 ` [Qemu-devel] [PULL 20/20] s390-ccw: rebuild BIOS Christian Borntraeger
2015-03-10 18:01 ` [Qemu-devel] [PULL 00/20] s390x/kvm: Features and fixes for 2.3 Peter Maydell
2015-03-10 22:26   ` Christian Borntraeger
2015-03-11  7:57     ` Markus Armbruster
2015-03-11  8:08       ` Thomas Huth
2015-03-11  8:09       ` Christian Borntraeger
2015-03-11  9:00         ` Thomas Huth
2015-03-11 10:06           ` 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).