[Qemu-devel] [PULL 00/11] s390x patches for 2.10

Cornelia Huck posted 11 patches 6 years, 12 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20170421074038.774-1-cornelia.huck@de.ibm.com
Test checkpatch passed
Test docker passed
Test s390x passed
hw/intc/s390_flic.c        |  9 +++--
hw/s390x/ccw-device.c      | 40 ++++++++++++++++++++
hw/s390x/ccw-device.h      |  9 ++++-
hw/s390x/css-bridge.c      |  3 ++
hw/s390x/css.c             | 92 ++++++++++++++++++++++++++++++----------------
hw/s390x/s390-pci-bus.c    | 19 ++++++----
hw/s390x/s390-pci-bus.h    |  1 -
hw/s390x/s390-pci-inst.c   | 26 ++++++-------
hw/s390x/s390-virtio-ccw.c | 20 +++++++++-
hw/s390x/virtio-ccw.c      | 54 ++++++++++++++-------------
include/hw/compat.h        |  3 ++
include/hw/s390x/css.h     | 19 ++++++++--
target/s390x/cpu_models.c  |  4 +-
target/s390x/kvm.c         | 16 ++++----
14 files changed, 218 insertions(+), 97 deletions(-)
[Qemu-devel] [PULL 00/11] s390x patches for 2.10
Posted by Cornelia Huck 6 years, 12 months ago
The following changes since commit da92ada855036c55bd08b0b0c64c7551d56f3586:

  Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20170420' into staging (2017-04-20 17:41:34 +0100)

are available in the git repository at:

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

for you to fetch changes up to cb55c19a26d6928b445f1bd9394843c9eb60f8ab:

  s390x: Drop useless casts (2017-04-21 09:32:09 +0200)

----------------------------------------------------------------
The first batch of s390x changes for 2.10:
- the new compat machine
- several cleanups and optimizations
- introspection for css ids

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

Cornelia Huck (1):
  s390x: introduce 2.10 compat machine

Danil Antonov (2):
  s390x/kvm: make printf always compile in debug output
  s390x/pci: make printf always compile in debug output

Dong Jia Shi (3):
  s390x/css: introduce read-only property type for device ids
  s390x/css: provide introspection for virtual subchannel and device
    busid
  s390x/css: consolidate the devno property for ccw devices

Eric Blake (1):
  s390x: Drop useless casts

Fei Li (4):
  s390x: use enum for adapter type and standardize its naming
  s390x: initialize flic before I/O subsystems
  s390x/flic: cache flic in s390_get_flic
  s390x: register I/O adapters per ISC during init

 hw/intc/s390_flic.c        |  9 +++--
 hw/s390x/ccw-device.c      | 40 ++++++++++++++++++++
 hw/s390x/ccw-device.h      |  9 ++++-
 hw/s390x/css-bridge.c      |  3 ++
 hw/s390x/css.c             | 92 ++++++++++++++++++++++++++++++----------------
 hw/s390x/s390-pci-bus.c    | 19 ++++++----
 hw/s390x/s390-pci-bus.h    |  1 -
 hw/s390x/s390-pci-inst.c   | 26 ++++++-------
 hw/s390x/s390-virtio-ccw.c | 20 +++++++++-
 hw/s390x/virtio-ccw.c      | 54 ++++++++++++++-------------
 include/hw/compat.h        |  3 ++
 include/hw/s390x/css.h     | 19 ++++++++--
 target/s390x/cpu_models.c  |  4 +-
 target/s390x/kvm.c         | 16 ++++----
 14 files changed, 218 insertions(+), 97 deletions(-)

-- 
2.11.0


Re: [Qemu-devel] [PULL 00/11] s390x patches for 2.10
Posted by Peter Maydell 6 years, 12 months ago
On 21 April 2017 at 08:40, Cornelia Huck <cornelia.huck@de.ibm.com> wrote:
> The following changes since commit da92ada855036c55bd08b0b0c64c7551d56f3586:
>
>   Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20170420' into staging (2017-04-20 17:41:34 +0100)
>
> are available in the git repository at:
>
>   git://github.com/cohuck/qemu tags/s390x-20170421
>
> for you to fetch changes up to cb55c19a26d6928b445f1bd9394843c9eb60f8ab:
>
>   s390x: Drop useless casts (2017-04-21 09:32:09 +0200)
>
> ----------------------------------------------------------------
> The first batch of s390x changes for 2.10:
> - the new compat machine
> - several cleanups and optimizations
> - introspection for css ids
>

Applied, thanks.

-- PMM