[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [qemu-s390x] [PATCH v6 01/16] s390 vfio-ccw: Add bootindex property
From: |
Thomas Huth |
Subject: |
Re: [qemu-s390x] [PATCH v6 01/16] s390 vfio-ccw: Add bootindex property and IPLB data |
Date: |
Fri, 12 Apr 2019 12:38:25 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.6.1 |
On 04/04/2019 16.34, Jason J. Herne wrote:
> Add bootindex property and iplb data for vfio-ccw devices. This allows us to
> forward boot information into the bios for vfio-ccw devices.
>
> Refactor s390_get_ccw_device() to return device type. This prevents us from
> having to use messy casting logic in several places.
>
> Signed-off-by: Jason J. Herne <address@hidden>
> Acked-by: Halil Pasic <address@hidden>
> Reviewed-by: Cornelia Huck <address@hidden>
> Reviewed-by: Thomas Huth <address@hidden>
> ---
[...]
> diff --git a/hw/vfio/ccw.c b/hw/vfio/ccw.c
> index 9246729..507d513 100644
> --- a/hw/vfio/ccw.c
> +++ b/hw/vfio/ccw.c
> @@ -21,11 +21,11 @@
> #include "hw/vfio/vfio.h"
> #include "hw/vfio/vfio-common.h"
> #include "hw/s390x/s390-ccw.h"
> +#include "hw/s390x/vfio-ccw.h"
> #include "hw/s390x/ccw-device.h"
> #include "exec/address-spaces.h"
> #include "qemu/error-report.h"
>
> -#define TYPE_VFIO_CCW "vfio-ccw"
> typedef struct VFIOCCWDevice {
> S390CCWDevice cdev;
> VFIODevice vdev;
> diff --git a/include/hw/s390x/s390-ccw.h b/include/hw/s390x/s390-ccw.h
> index 7d15a1a..901d805 100644
> --- a/include/hw/s390x/s390-ccw.h
> +++ b/include/hw/s390x/s390-ccw.h
> @@ -27,6 +27,7 @@ typedef struct S390CCWDevice {
> CcwDevice parent_obj;
> CssDevId hostid;
> char *mdevid;
> + int32_t bootindex;
> } S390CCWDevice;
>
> typedef struct S390CCWDeviceClass {
> diff --git a/include/hw/s390x/vfio-ccw.h b/include/hw/s390x/vfio-ccw.h
> new file mode 100644
> index 0000000..ee5250d
> --- /dev/null
> +++ b/include/hw/s390x/vfio-ccw.h
> @@ -0,0 +1,28 @@
> +/*
> + * vfio based subchannel assignment support
> + *
> + * Copyright 2017, 2019 IBM Corp.
> + * Author(s): Dong Jia Shi <address@hidden>
> + * Xiao Feng Ren <address@hidden>
> + * Pierre Morel <address@hidden>
> + *
> + * This work is licensed under the terms of the GNU GPL, version 2 or (at
> + * your option) any later version. See the COPYING file in the top-level
> + * directory.
> + */
> +
> +#ifndef HW_VFIO_CCW_H
> +#define HW_VFIO_CCW_H
> +
> +#include "hw/vfio/vfio-common.h"
> +#include "hw/s390x/s390-ccw.h"
> +#include "hw/s390x/ccw-device.h"
> +
> +#define TYPE_VFIO_CCW "vfio-ccw"
> +#define VFIO_CCW(obj) \
> + OBJECT_CHECK(VFIOCCWDevice, (obj), TYPE_VFIO_CCW)
> +
> +#define TYPE_VFIO_CCW "vfio-ccw"
> +typedef struct VFIOCCWDevice VFIOCCWDevice;
> +
> +#endif
>
This causes a build failure with clang:
https://gitlab.com/huth/qemu/-/jobs/195530081
I'll squash the following patch to fix this issue:
diff --git a/hw/vfio/ccw.c b/hw/vfio/ccw.c
index e6ac21d006..31dd3a2a87 100644
--- a/hw/vfio/ccw.c
+++ b/hw/vfio/ccw.c
@@ -26,7 +26,7 @@
#include "exec/address-spaces.h"
#include "qemu/error-report.h"
-typedef struct VFIOCCWDevice {
+struct VFIOCCWDevice {
S390CCWDevice cdev;
VFIODevice vdev;
uint64_t io_region_size;
@@ -35,7 +35,7 @@ typedef struct VFIOCCWDevice {
EventNotifier io_notifier;
bool force_orb_pfch;
bool warned_orb_pfch;
-} VFIOCCWDevice;
+};
Thomas
- [qemu-s390x] [PATCH v6 00/16] s390: vfio-ccw dasd ipl support, Jason J. Herne, 2019/04/04
- [qemu-s390x] [PATCH v6 01/16] s390 vfio-ccw: Add bootindex property and IPLB data, Jason J. Herne, 2019/04/04
- Re: [qemu-s390x] [PATCH v6 01/16] s390 vfio-ccw: Add bootindex property and IPLB data,
Thomas Huth <=
- [qemu-s390x] [PATCH v6 02/16] s390-bios: decouple cio setup from virtio, Jason J. Herne, 2019/04/04
- [qemu-s390x] [PATCH v6 03/16] s390-bios: decouple common boot logic from virtio, Jason J. Herne, 2019/04/04
- [qemu-s390x] [PATCH v6 05/16] s390-bios: Decouple channel i/o logic from virtio, Jason J. Herne, 2019/04/04
- [qemu-s390x] [PATCH v6 04/16] s390-bios: Clean up cio.h, Jason J. Herne, 2019/04/04
- [qemu-s390x] [PATCH v6 06/16] s390-bios: Map low core memory, Jason J. Herne, 2019/04/04
- [qemu-s390x] [PATCH v6 07/16] s390-bios: ptr2u32 and u32toptr, Jason J. Herne, 2019/04/04
- [qemu-s390x] [PATCH v6 08/16] s390-bios: Support for running format-0/1 channel programs, Jason J. Herne, 2019/04/04
- [qemu-s390x] [PATCH v6 09/16] s390-bios: cio error handling, Jason J. Herne, 2019/04/04
- [qemu-s390x] [PATCH v6 11/16] s390-bios: Factor finding boot device out of virtio code path, Jason J. Herne, 2019/04/04
- [qemu-s390x] [PATCH v6 12/16] s390-bios: Refactor virtio to run channel programs via cio, Jason J. Herne, 2019/04/04