qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL for-2.6 00/14] s390-ccw bios patches
@ 2016-03-24  8:29 Cornelia Huck
  2016-03-24  8:29 ` [Qemu-devel] [PULL for-2.6 01/14] pc-bios/s390-ccw: add more disk layout checks Cornelia Huck
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: Cornelia Huck @ 2016-03-24  8:29 UTC (permalink / raw)
  To: peter.maydell; +Cc: Cornelia Huck, borntraeger, jfrei, qemu-devel, agraf

The following changes since commit 2538039f2c26d66053426fb547e4f25e669baf62:

  Merge remote-tracking branch 'remotes/armbru/tags/pull-ivshmem-2016-03-18' into staging (2016-03-23 12:57:44 +0000)

are available in the git repository at:

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

for you to fetch changes up to ce11b0622268dc8133bb4954c1e3fae0c23b6609:

  s390-ccw.img: rebuild image (2016-03-23 16:13:38 +0100)

----------------------------------------------------------------
Support for booting from virtio-scsi devices in the s390-ccw bios.

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

Cornelia Huck (1):
  s390-ccw.img: rebuild image

Eugene (jno) Dvurechenski (13):
  pc-bios/s390-ccw: add more disk layout checks
  pc-bios/s390-ccw: virtio_panic -> panic
  pc-bios/s390-ccw: add utility functions and "export" some others
  pc-bios/s390-ccw: qemuize types
  pc-bios/s390-ccw: update virtio implementation to allow up to 3 vrings
  pc-bios/s390-ccw: add vdev object to store all device details
  pc-bios/s390-ccw: make provisions for different backends
  pc-bios/s390-ccw: add simplified virtio call
  pc-bios/s390-ccw: add scsi definitions
  pc-bios/s390-ccw: add virtio-scsi implementation
  pc-bios/s390-ccw: enable virtio-scsi
  pc-bios/s390-ccw: enhance bootmap detection
  pc-bios/s390-ccw: disambiguation of "No zIPL magic" message

 pc-bios/s390-ccw.img           | Bin 17760 -> 26424 bytes
 pc-bios/s390-ccw/Makefile      |   2 +-
 pc-bios/s390-ccw/bootmap.c     | 129 +++++++----
 pc-bios/s390-ccw/bootmap.h     |   9 -
 pc-bios/s390-ccw/main.c        |  25 +--
 pc-bios/s390-ccw/s390-ccw.h    |  54 ++++-
 pc-bios/s390-ccw/scsi.h        | 184 ++++++++++++++++
 pc-bios/s390-ccw/virtio-scsi.c | 342 +++++++++++++++++++++++++++++
 pc-bios/s390-ccw/virtio-scsi.h |  72 +++++++
 pc-bios/s390-ccw/virtio.c      | 479 +++++++++++++++++++++++++++--------------
 pc-bios/s390-ccw/virtio.h      | 218 +++++++++++++------
 11 files changed, 1220 insertions(+), 294 deletions(-)
 create mode 100644 pc-bios/s390-ccw/scsi.h
 create mode 100644 pc-bios/s390-ccw/virtio-scsi.c
 create mode 100644 pc-bios/s390-ccw/virtio-scsi.h

-- 
2.7.4

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

end of thread, other threads:[~2016-03-24 16:56 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-24  8:29 [Qemu-devel] [PULL for-2.6 00/14] s390-ccw bios patches Cornelia Huck
2016-03-24  8:29 ` [Qemu-devel] [PULL for-2.6 01/14] pc-bios/s390-ccw: add more disk layout checks Cornelia Huck
2016-03-24  8:29 ` [Qemu-devel] [PULL for-2.6 02/14] pc-bios/s390-ccw: virtio_panic -> panic Cornelia Huck
2016-03-24  8:29 ` [Qemu-devel] [PULL for-2.6 03/14] pc-bios/s390-ccw: add utility functions and "export" some others Cornelia Huck
2016-03-24  8:29 ` [Qemu-devel] [PULL for-2.6 04/14] pc-bios/s390-ccw: qemuize types Cornelia Huck
2016-03-24  8:29 ` [Qemu-devel] [PULL for-2.6 05/14] pc-bios/s390-ccw: update virtio implementation to allow up to 3 vrings Cornelia Huck
2016-03-24  8:29 ` [Qemu-devel] [PULL for-2.6 06/14] pc-bios/s390-ccw: add vdev object to store all device details Cornelia Huck
2016-03-24  8:29 ` [Qemu-devel] [PULL for-2.6 07/14] pc-bios/s390-ccw: make provisions for different backends Cornelia Huck
2016-03-24  8:29 ` [Qemu-devel] [PULL for-2.6 08/14] pc-bios/s390-ccw: add simplified virtio call Cornelia Huck
2016-03-24  8:29 ` [Qemu-devel] [PULL for-2.6 09/14] pc-bios/s390-ccw: add scsi definitions Cornelia Huck
2016-03-24  8:29 ` [Qemu-devel] [PULL for-2.6 10/14] pc-bios/s390-ccw: add virtio-scsi implementation Cornelia Huck
2016-03-24  8:30 ` [Qemu-devel] [PULL for-2.6 11/14] pc-bios/s390-ccw: enable virtio-scsi Cornelia Huck
2016-03-24  8:30 ` [Qemu-devel] [PULL for-2.6 12/14] pc-bios/s390-ccw: enhance bootmap detection Cornelia Huck
2016-03-24  8:30 ` [Qemu-devel] [PULL for-2.6 13/14] pc-bios/s390-ccw: disambiguation of "No zIPL magic" message Cornelia Huck
2016-03-24  8:30 ` [Qemu-devel] [PULL for-2.6 14/14] s390-ccw.img: rebuild image Cornelia Huck
2016-03-24 16:56 ` [Qemu-devel] [PULL for-2.6 00/14] s390-ccw bios patches Peter Maydell

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