qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH for-2.5 00/15] s390x patches for 2.5
@ 2015-11-09 15:56 Cornelia Huck
  2015-11-09 15:56 ` [Qemu-devel] [PATCH for-2.5 01/15] s390x/css: sense data endianness Cornelia Huck
                   ` (15 more replies)
  0 siblings, 16 replies; 17+ messages in thread
From: Cornelia Huck @ 2015-11-09 15:56 UTC (permalink / raw)
  To: qemu-devel; +Cc: Cornelia Huck, borntraeger, jfrei, agraf

Hopefully last big batch of s390x patches, including:
- bugfixes for LE host and for pci translation
- MAINTAINERS update
- hugetlbfs enablement (kernel patches pending)
- boot from El Torito iso images on virtio-blk
  (boot from scsi pending)
- cleanup in the ipl device code

There's also a helper function for resetting busless devices in the
qdev core in there.

Christian Borntraeger (1):
  s390: deprecate the non-ccw machine in 2.5

Cornelia Huck (4):
  s390x/css: sense data endianness
  MAINTAINERS: update s390 file patterns
  MAINTAINERS: update virtio-ccw/s390 git tree
  pc-bios/s390-ccw: rebuild image

David Hildenbrand (3):
  qdev: provide qdev_reset_all_fn()
  s390x/ipl: clean up qom definitions and turn into TYPE_DEVICE
  s390x/ipl: switch error reporting to error_setg

Dominik Dingel (2):
  s390x: switch to memory_region_allocate_system_memory
  s390x/kvm: don't enable CMMA when hugetlbfs will be used

Maxim Samoylov (4):
  pc-bios/s390-ccw: Always adjust virtio sector count
  pc-bios/s390-ccw: ISO-9660 El Torito boot implementation
  pc-bios/s390-ccw: El Torito s390x boot entry check
  pc-bios/s390-ccw: El Torito 16-bit boot image size field workaround

Yi Min Zhao (1):
  s390x/pci : fix up s390 pci iommu translation function

 MAINTAINERS                |  20 +++--
 hw/core/qdev.c             |   5 ++
 hw/s390x/css.c             |   6 ++
 hw/s390x/ipl.c             |  68 ++++-----------
 hw/s390x/ipl.h             |  25 ++++++
 hw/s390x/s390-pci-bus.c    |   8 +-
 hw/s390x/s390-virtio-ccw.c |   3 +-
 hw/s390x/s390-virtio.c     |  16 ++--
 include/hw/qdev-core.h     |   1 +
 pc-bios/s390-ccw.img       | Bin 13856 -> 17760 bytes
 pc-bios/s390-ccw/bootmap.c | 206 +++++++++++++++++++++++++++++++++++++++++++++
 pc-bios/s390-ccw/bootmap.h | 206 +++++++++++++++++++++++++++++++++++++++++++++
 pc-bios/s390-ccw/virtio.c  |   7 ++
 pc-bios/s390-ccw/virtio.h  |   8 +-
 target-s390x/kvm.c         |   4 +-
 15 files changed, 506 insertions(+), 77 deletions(-)

-- 
2.6.3

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

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

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-09 15:56 [Qemu-devel] [PATCH for-2.5 00/15] s390x patches for 2.5 Cornelia Huck
2015-11-09 15:56 ` [Qemu-devel] [PATCH for-2.5 01/15] s390x/css: sense data endianness Cornelia Huck
2015-11-09 15:56 ` [Qemu-devel] [PATCH for-2.5 02/15] s390x/pci : fix up s390 pci iommu translation function Cornelia Huck
2015-11-09 15:56 ` [Qemu-devel] [PATCH for-2.5 03/15] MAINTAINERS: update s390 file patterns Cornelia Huck
2015-11-09 15:56 ` [Qemu-devel] [PATCH for-2.5 04/15] MAINTAINERS: update virtio-ccw/s390 git tree Cornelia Huck
2015-11-09 15:56 ` [Qemu-devel] [PATCH for-2.5 05/15] s390x: switch to memory_region_allocate_system_memory Cornelia Huck
2015-11-09 15:56 ` [Qemu-devel] [PATCH for-2.5 06/15] s390x/kvm: don't enable CMMA when hugetlbfs will be used Cornelia Huck
2015-11-09 15:56 ` [Qemu-devel] [PATCH for-2.5 07/15] pc-bios/s390-ccw: Always adjust virtio sector count Cornelia Huck
2015-11-09 15:56 ` [Qemu-devel] [PATCH for-2.5 08/15] pc-bios/s390-ccw: ISO-9660 El Torito boot implementation Cornelia Huck
2015-11-09 15:56 ` [Qemu-devel] [PATCH for-2.5 09/15] pc-bios/s390-ccw: El Torito s390x boot entry check Cornelia Huck
2015-11-09 15:56 ` [Qemu-devel] [PATCH for-2.5 10/15] pc-bios/s390-ccw: El Torito 16-bit boot image size field workaround Cornelia Huck
2015-11-09 15:56 ` [Qemu-devel] [PATCH for-2.5 11/15] pc-bios/s390-ccw: rebuild image Cornelia Huck
2015-11-09 15:56 ` [Qemu-devel] [PATCH for-2.5 12/15] qdev: provide qdev_reset_all_fn() Cornelia Huck
2015-11-09 15:56 ` [Qemu-devel] [PATCH for-2.5 13/15] s390x/ipl: clean up qom definitions and turn into TYPE_DEVICE Cornelia Huck
2015-11-09 15:56 ` [Qemu-devel] [PATCH for-2.5 14/15] s390x/ipl: switch error reporting to error_setg Cornelia Huck
2015-11-09 15:56 ` [Qemu-devel] [PATCH for-2.5 15/15] s390: deprecate the non-ccw machine in 2.5 Cornelia Huck
2015-11-11 11:52 ` [Qemu-devel] [PATCH for-2.5 00/15] s390x patches for 2.5 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).